Deprecated: Function ereg() is deprecated错误解决办法!
[ 2011-07-22 16:24:29 | 作者: admin ]
Function ereg() is deprecated in drupal-6.15\includes\file.inc on line 904
open the file.inc in a good text editor other than notepad, go to the line number 904 to see the following line. Then comment the line and in the next line type the replaced code. this will solve the instalation issues and also most of other issues related to the same issue.
Change
elseif ($depth >= $min_depth && ereg($mask, $file)) {
...
阅读全文…
open the file.inc in a good text editor other than notepad, go to the line number 904 to see the following line. Then comment the line and in the next line type the replaced code. this will solve the instalation issues and also most of other issues related to the same issue.
Change
elseif ($depth >= $min_depth && ereg($mask, $file)) {
...
阅读全文…
1