Re: Help installing a mediawiki
Alex, when I was looking for info about your problem, I found out shell_exec() is connected to the operator ` (as in ò, ì, à).
The code
PHP Code:
$string = shell_exec("command");
is the same as saying
PHP Code:
$string = `command`;
And as I said before, maybe it does work with the advanced version. (once more, hinting to some kind mod)
and it's always worth trying to get it ;-)
Marshian
Real programmers don't document their code - if it was hard to write, it should be hard to understand.