Deoctor Posted December 4, 2009 Share Posted December 4, 2009 Hai i have recently formatted my machine and have installed the xampp 1.7.2, after this when ever time i run the sphider to index a site i am getting a lot of these warnings. can somebody help me out on this... Deprecated: Function ereg() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 118 Deprecated: Function ereg() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 132 Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 139 Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 143 Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 150 Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 205 Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 213 Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 205 Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 213 Deprecated: Function eregi_replace() is deprecated in C:\xampp\htdocs\chaitu\sphider_new\admin\spiderfuncs.php on line 214 before i never used to get this error when i am using the xampp 1.5.5,, it is very irritating to get this error.. Quote Link to comment Share on other sites More sharing options...
rajivgonsalves Posted December 4, 2009 Share Posted December 4, 2009 nothing much you can do about that except turn off the message, ereg is depreciated so I would suggest error_reporting(E_ALL ^ E_DEPRECATED) ; Quote Link to comment Share on other sites More sharing options...
premiso Posted December 4, 2009 Share Posted December 4, 2009 Change ereg to preg as that is the preferred method. Or just turn off the errors, in my opinion, I would fix those to work with the preg methods. Quote Link to comment Share on other sites More sharing options...
kliopa10 Posted December 29, 2009 Share Posted December 29, 2009 ereg() replace with mb_ereg() eregi() replace with mb_eregi() or use preg_match for php PHP 5.3 and higher. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.