Sujet : Message (notice) au debut de l'instal de joomla

159  */
160
161 if (strlen($_SERVER['QUERY_STRING']) && strpos($_SERVER['REQUEST_URI'], $_SERVER['QUERY_STRING']) === false) {
162 $theURI .= '?'.$_SERVER['QUERY_STRING'];
163 }

Dernière modification par nenex (2011-03-16 20:17:57)

Thumbs up Thumbs down

2

Re : Message (notice) au debut de l'instal de joomla

J'ai laisse un message sur le forum de Joomla, si jamais ca venait du fichier. Si j'ai la solution avant je viendrais la mettre ici.

Thumbs up Thumbs down

3

Re : Message (notice) au debut de l'instal de joomla

   /*
                 * Since we do not have REQUEST_URI to work with, we will assume we are
                 * running on IIS and will therefore need to work some magic with the SCRIPT_NAME and
                 * QUERY_STRING environment variables.
                 */
                    if ( isset( $_SERVER['QUERY_STRING'] ) ) {
                         if (strlen($_SERVER['QUERY_STRING']) && strpos($_SERVER['REQUEST_URI'], $_SERVER['QUERY_STRING']) === false) {
                            $theURI .= '?'.$_SERVER['QUERY_STRING'];
                        }
                    }  

Dernière modification par nenex (2011-03-19 12:06:19)

Thumbs up Thumbs down