Whats happen ?

Status
Not open for further replies.

lostso8

New Member
Messages
3
Reaction score
0
Points
0
my website is http://lsgaming.co.uk/index.php since i belive u updated php virsen ppl are gething this and so am i need help step by step on fixing this! thanks adam
PHP:
Strict Standards:  Non-static method identify::get_ip() should not be called statically in /home/lostso8/public_html/includes/nukesentinel.php on line 60

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method utf_normalizer::nfc() should not be called statically in /home/lostso8/public_html/includes/utf/utf_tools.php on line 1784

Strict Standards:  Non-static method identify::get_ip() should not be called statically in /home/lostso8/public_html/header.php on line 143

Strict Standards:  Non-static method identify::identify_agent() should not be called statically in /home/lostso8/public_html/header.php on line 147

Strict Standards:  Non-static method identify::detect_bot() should not be called statically in /home/lostso8/public_html/includes/classes/class.identify.php on line 186
 

henk717

New Member
Messages
13
Reaction score
0
Points
1
Seems like a new error reporting function in php 5.4 that x10 needs to disable in the php.ini
For now you can fix it by adding php_value error_reporting 30711 to your .htaccess file (Thats how i fixed my site).
 

lostso8

New Member
Messages
3
Reaction score
0
Points
0
ok thanks for the support so fair! iv done what everone said but i still geting 2 errors better then the 8 i had :)
iv google but still no fix x10 whats happend? this update broken manny users websites!!!

PHP:
Strict Standards:  Non-static method identify::identify_agent() should not be called statically in /home/lostso8/public_html/mainfile.php on line 182

Strict Standards:  Non-static method identify::detect_bot() should not be called statically in /home/lostso8/public_html/includes/classes/class.identify.php on line 186
 

kaoselem

New Member
Messages
7
Reaction score
0
Points
1
ok thanks for the support so fair! iv done what everone said but i still geting 2 errors better then the 8 i had :)
iv google but still no fix x10 whats happend? this update broken manny users websites!!!

PHP:
Strict Standards:  Non-static method identify::identify_agent() should not be called statically in /home/lostso8/public_html/mainfile.php on line 182

Strict Standards:  Non-static method identify::detect_bot() should not be called statically in /home/lostso8/public_html/includes/classes/class.identify.php on line 186

from PHPBB.COM

[h=3]Re: Can't install phpBB...[/h] by Oyabun1 » Thu May 10, 2012 12:09 pm
There have been changes to the error reporting in PHP since 5.4.0

Try this.

Open /includes/startup.php

FindCode: Select all error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
Replace withCode: Select all error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT);


I had the same issue, and it fixed it.
 
Last edited:
Status
Not open for further replies.
Top