Skip to content
Snippets Groups Projects
Commit e4ac8e3f authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: bad path

parent e6af47e3
No related branches found
No related tags found
No related merge requests found
......@@ -119,12 +119,12 @@ function dol_buildpath($path,$mode=0)
// works only for some web server and some setup. This is bugged when
// using proxy, rewriting, virtual path, etc...
preg_match('/^([^.]+\.php)/i',$path,$regs);
if (! empty($regs[1])) $path = $regs[1];
if (! empty($regs[1])) $filepath = $regs[1];
// An alternative for proxy but extremely slow
//$url = 'http://'.$_SERVER["SERVER_NAME"].DOL_URL_ROOT.$path;
//if (! @file_get_contents($url)) $res = DOL_URL_ROOT_ALT.$path;
//if (! @fopen($url, 'r')) $res = DOL_URL_ROOT_ALT.$path;
if (! file_exists(DOL_DOCUMENT_ROOT.$path)) $res = DOL_URL_ROOT_ALT.$path;
if (! file_exists(DOL_DOCUMENT_ROOT.$filepath)) $res = DOL_URL_ROOT_ALT.$path;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment