2012-12-10

Bonjour à tous,
Je suis chargé de transferer 2 sites tournant sous Joomla 1.5 vers OVH en mutu..
Et ça ce passe pas tres bien :mad:
pour l'instant je suis bloqué avec des avertissements "Strict Standards: ..." de php.
Apres quelques heures de lecture et de recherches:
dans le htaccess j'ai testé les versions 5.2, 5.3 et 5.4 de php (rien n'y fait meme en 5.2 :confused:) , mis

Code :
---------
SetEnv REGISTER_GLOBALS 0
SetEnv MAGIC_QUOTES 0
---------
dans le config php de joomla mis

Code :
---------
var $error_reporting = '6135';
---------
dans le index php

Code :
---------
ini_set('display_errors', 0);
ou
error_reporting(0);
---------
et ça ne change strictement rien !
j'ai un peu plus de 800 messages d'avertissement

Code :
---------
Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method plgSystemFlexisystem::getCategoriesTree() should not be called statically in /xxx/www/dromepro/libraries/joomla/cache/handler/callback.php on line 100

Strict Standards: Non-static method JFactory::getDBO() should not be called statically in /xxx/www/dromepro/plugins/system/flexisystem.php on line 176

Strict Standards: Non-static method JFactory::getConfig() should not be called statically, assuming $this from incompatible context in /xxx/www/dromepro/plugins/system/jfdatabase/intercept.jdatabasemysqli.php on line 105

Strict Standards: Non-static method JFactory::getConfig() should not be called statically, assuming $this from incompatible context in /xxx/www/dromepro/plugins/system/jfdatabase/jfdatabase_inherit.php on line 676

Strict Standards: Non-static method JFactory::getLanguage() should not be called statically, assuming $this from incompatible context in xxx/www/dromepro/plugins/system/jfdatabase/jfdatabase_inherit.php on line 683

Strict Standards: Non-static method JoomFish::translateList() should not be called statically, assuming $this from incompatible context in /xxx/www/dromepro/plugins/system/jfdatabase/jfdatabase_inherit.php on line 377

Strict Standards: Non-static method JFactory::getConfig() should not be called statically, assuming $this from incompatible context in /xxx/www/dromepro/components/com_joomfish/helpers/joomfish.class.php on line 120
etc...
---------
Quelqu'un peut il m'aider a faire disparaitre ces ?sxxxxs? de messages ?
note: l'hebergement originel est en php 5.3.3
Code :
---------
PHP Version 5.3.3-7+squeeze14
---
error_reporting E_ALL & ~E_WARNING 22519
---------
et le var $error_reporting était à "-1"

Merci d'avance

Show more