Deprecated: Function ereg() is deprecated when install Drupal

At previous post about install drupal in localhost using wamp I got this message :

Deprecated: Function ereg() is deprecated in C:\wamp\www\drupal\includes\file.inc on line 902

That message appear because I use latest wamp software that utilize php 5.3.0 where ereg() function is deprecated.

Quick solution for this case are :

1. Downgrade wamp 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.

Back to the problem I open file :

file.inc

C:\wamp\www\drupal\includes\file.inc


scroll to line 902

~drupal ereg Deprecated: Function ereg() is deprecated when install Drupal~

change ereg in line to mb_ereg to make the line transform into :

elseif ($depth >= $min_depth && mb_ereg($mask, $file)) {

Save the file and retry open http://batikweb.com

This time I got this :

~install drupal Deprecated: Function ereg() is deprecated when install Drupal~

Nice, I can continue to installation steps :-)

Stay health!

~468x60521 Deprecated: Function ereg() is deprecated when install Drupal~

Related posts:

  1. [UNKNOWN: 8192] Function ereg() is deprecated when Install Joomla Hello, in previous post I try to describe installation...
  2. Step by Step Install Drupal on Wamp : Add Domain After reading my post about howto install drupalĀ  in...
  3. Step by Step Install Drupal on WampServer : Vhost and Clean URL In previous post I have talk about fix ereg()...
  4. Install drupal in localhost with xampp Recommended Drupal Book : Using Drupal Pro Drupal Development,...
  5. Step by step move drupal from localhost to drupal hosting : From Localhost to Online Sorry for late post, I have to attend a...

Related posts brought to you by Yet Another Related Posts Plugin.

Step By Step

If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.

Comments

15 Responses to “Deprecated: Function ereg() is deprecated when install Drupal”

Leave Comment

(required)

(required)