Joomla.it Forum

Joomla! 1.5.x (versione con supporto terminato) => Joomla! 1.5 => : impegnosociale 01 Oct 2008, 19:58:25

: Problema accesso utenti
: impegnosociale 01 Oct 2008, 19:58:25
Buongiorno, da oggi quando si prova ad accedere utilizzando il modulo utenti invece di effettuare il login appare:

Fatal error: Call to undefined function: stripos() in /web/htdocs/www.impegnosociale.eu/home/libraries/joomla/environment/uri.php on line 675

da che può dipendere?
: Re: Problema accesso utenti
: ste 01 Oct 2008, 20:03:57
Nel wiki trovi la risposta
http://wiki.joomla.it/index.php?title=FAQ_Joomla_1.5.7
: Re: Problema accesso utenti
: impegnosociale 02 Oct 2008, 08:16:46
grazie mille. quindi se non ho capito male dipende dalla compatibilità fra la versione 1.5.7 e php 4.

penso che per risolvere il problema dovrò avvisare il mio ISP e passare alla versione php 5
: Re: Problema accesso utenti
: ste 02 Oct 2008, 09:38:07
Sì, oppure fare la modifica al file indicato nella FAQ
: Re: Problema accesso utenti
: impegnosociale 02 Oct 2008, 19:05:45
ho fatto così ed è andata benissimo credo.

ho aggiunto

if (!function_exists( 'stripos' )) {
    function stripos( $haystack, $needle, $offset = 0 ) {
        return strpos( strtolower( $haystack ), strtolower( $needle ), $offset );
    }
}
: Re: Problema accesso utenti
: ste 02 Oct 2008, 19:35:34
bene