Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting this error in Joomla:

Illegal variable `_files` or `_env` or `_get` or `_post` or `_cookie`
or `_server` or `_session` or `globals` passed to script.

I didn't get much help googling.

share|improve this question
2  
You know all of those variables are uppercase, e.g. $_POST, right? – nickb Dec 2 '11 at 13:02
4  
Some code and more details would be nice ... – Jan Hančič Dec 2 '11 at 13:02
2  
Could you provide more info about what you are trying to do? What script did you run? – Iljaas Dec 2 '11 at 13:03
Wow. A new error message. Here I was thinking PHP held no more secrets :) – Berry Langerak Dec 2 '11 at 13:10
1  
@halfer whats unclear in this question my friend. This is the actual error message. The code is just a form submitting some input fields. I am also not sure what should i post here. The form with fields? That would be of no interest to anybody. I thought someone who have already seen this before could post some hint. – sushil bharwani Dec 2 '11 at 13:15
show 5 more comments

2 Answers

up vote 7 down vote accepted

You'll see this error if you try to specify a URL parameter whose name consists solely of digits, e.g.

http://www.example.com/?1234567=test

or if you try to use a joomla-reserved variable, e.g.

http://www.example.com/?_files=test

It's not a great error message. If you have access to a unix terminal, you can debug these kind of problems with some command-line tools, e.g.

$ find /var/www/html -exec grep -l 'Illegal variable' {} \;
/var/www/html/libraries/joomla/environment/request.php

This is a fictional joomla installation, assuming a fairly standard DocumentRoot. The result immediately confirms this is a Joomla error, and reports which file caused it. Extract from that file:

static $banned = array( '_files', '_env', '_get', '_post', '_cookie', '_server', '_session', 'globals' );

foreach ($array as $key => $value)
{   
    // PHP GLOBALS injection bug 
    $failed = in_array( strtolower( $key ), $banned );

    // PHP Zend_Hash_Del_Key_Or_Index bug 
    $failed |= is_numeric( $key );

    if ($failed) {
        jexit( 'Illegal variable <b>' . implode( '</b> or <b>', $banned ) . '</b> passed to script.' );
    }
    ...
}

Note that the error message is particularly misleading because, not only is in thrown in the case of a reserved variable name, but also if the parameter name is numeric.

share|improve this answer
+1. A lot more insightful than my answer :) – Berry Langerak Dec 2 '11 at 16:00
Great Explanation! – Hanny Dec 2 '11 at 16:45
@Hanny Thanks - I'll gladly take signups to the Joomla Answers! proposal in payment ;-) – Bobby Jack Dec 5 '11 at 14:19
Bobby Jack - consider it done! – Hanny Dec 6 '11 at 18:34

It's not an error PHP generates, it's an error that seems to belong to Joomla!. I found this page after 20 seconds of Googling for "Illegal variable".

share|improve this answer
+1, I've retagged. – halfer Dec 2 '11 at 13:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.