Closed (works as designed)
Project:
DataBase File Manager
Version:
5.x-4.3
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
23 Jun 2008 at 16:21 UTC
Updated:
28 Apr 2010 at 18:40 UTC
Comments
Comment #1
rooey commentedYou need PHP5.
Comment #2
dhw1179 commentedThanks, just realized that my server defaults to PHP4 on all sites thought PHP 5 is available.
Comment #3
breitner commentedFor PHP4:
Search in dbfm.module and dbfmgreybox.module for the line with the function stripos().
Insert following code (in the line befor stripos):
if (!function_exists('stripos')) {
function stripos($string,$word){
$retval = false;
for($i=0;$i<=strlen($string);$i++) {
if (strtolower(substr($string,$i,strlen($word))) == strtolower($word)) {
$retval = true;
}
}
return $retval;
}
}
Comment #4
rooey commented