Confermo l'errore e la risoluzione,
lo trascrivo x comodita:
Why do I get a "Fatal error: Call to undefined function: stripos()" when editing Joomla! 1.5.7 Articles from the frontend when using PHP 4?
Problem: MarkCII reported that for PHP 4 environments, Joomla! gives this error message when Articles are submitted from the frontend:
"Fatal error: Call to undefined function: stripos() in /libraries/joomla/environment/uri.php on line 675"
Articles are still successfully posted.
Possible resolutions:
* Change line 675 in /libraries/joomla/environment/uri.php from:
if(stripos($base, JURI::base()) !== 0 && !empty($host)) {
to:
if(strpos($base,stristr($base,JURI::base())) !== 0 && !empty($host)) {
Buon lavoro,
Gp