Problem installing drupal on wamp server 2.o php 5.3.o
Function ereg() is deprecated in ….. drupal\includes\file.inc on line …
Solution:
open file
includes/file.inc
Goto line no xxx
where you can see something like this
elseif ($depth >= $min_depth && ereg($mask, $file))
Now add @ sign before ereg($mask, $file)
copy below line past this line
elseif ($depth >= $min_depth && @ereg($mask, $file))