View Single Post
  #43  
Old 11th October 2011, 16:49
cooly's Avatar
cooly cooly is offline
Senior Member
 
Join Date: Jun 2011
United Kingdom
Posts: 26
Default
Quote:
Originally Posted by BEST View Post
Deprecated: Function eregi() is deprecated in /data/multiserv/users/692703/projects/1685865/www/backend/mysql.php on line 10

Warning: Cannot modify header information - headers already sent by (output started at /data/multiserv/users/692703/projects/1685865/www/backend/mysql.php:10) in /data/multiserv/users/692703/projects/1685865/www/backend/functions.php on line 32

Warning: Cannot modify header information - headers already sent by (output started at /data/multiserv/users/692703/projects/1685865/www/backend/mysql.php:10) in


and the captcha is not displayed

replace
Code:
if (eregi('mysql.php',$_SERVER['PHP_SELF'])) {
    die;
}
with

Code:
if (preg_match('/mysql.php/i',$_SERVER['PHP_SELF'])) {
    die;
}
Reply With Quote