Hello : How Can enable mb_eregi() function in Cpanel server ? Regards
M mahdy_sharifi Well-Known Member Feb 26, 2012 220 1 68 cPanel Access Level Root Administrator Apr 11, 2013 #1 Hello : How Can enable mb_eregi() function in Cpanel server ? Regards
Q quietFinn Well-Known Member Feb 4, 2006 1,834 422 438 Finland cPanel Access Level Root Administrator Apr 11, 2013 #2 I guess you are using PHP5.3, right? This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged. Click to expand... and eregi() is deprecated as of PHP 5.3.0. preg_match() with the i (PCRE_CASELESS) modifier is the suggested alternative. Click to expand... PHP: eregi - Manual
I guess you are using PHP5.3, right? This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged. Click to expand... and eregi() is deprecated as of PHP 5.3.0. preg_match() with the i (PCRE_CASELESS) modifier is the suggested alternative. Click to expand... PHP: eregi - Manual
M mahdy_sharifi Well-Known Member Feb 26, 2012 220 1 68 cPanel Access Level Root Administrator Apr 11, 2013 #3 Thank you dear quietFinn