Techdefine

Techdefine

Chetan Sisodiya  //  I m Chetan Sisodiya.I believe in enjoying every moment of life. I am a very fun loving guy who always hang out with friend.I always prefer to do new thing & always remain in search of new thing to do.I have very much passion to to make friends and meet new peoples of different streams so that i can learn something from them. I have a great passion of computer, movies,music,wondering and biking specially at night.

Dec 20 / 1:01pm

Solution of Deprecated: Function ereg() is deprecated in lamp/www/drupal/includes/file.inc on line 902

Solution of Deprecated: Function ereg() is deprecated in lamp/www/drupal/includes/file.inc on line 902
error..
There are two solution for this..
1. Downgrade lamp to previous version
or
2. Edit php source file of drupal.
I prefer to choose second solution since I love to learn new thing :-)
I have tried a few php function like  preg_replace() and mb_ereg()
After test each function I think mb_ereg() is good solution.

Go to www/drupal/includes/file.inc
open file.inc
Search for elseif ($depth >= $min_depth && ereg($mask, $file)) 
Edit above line by  elseif ($depth >= $min_depth && mb_ereg($mask, $file))
  
Save the file...Open..install drupal..this time u will not face that error..