Deprecated: Function ereg() is deprecated in file.inc
May 20, 2010
Leave a comment
While installing drupal 6.16, you have a deprecated ereg() method. In fact, in PHP 5.3, this method has been renamed into mb_ereg(). To fix this find :
elseif ($depth >= $min_depth && ereg($mask, $file)) {
and replace it like this :
elseif ($depth >= $min_depth && mb_ereg($mask, $file)) {
That’s it ! You can now access the install.php.
Categories: Informatic
drupal, php 5.3