I need to check if my shared host has suexec or suphp. I found this documentation: http://www.alain.knaff.lu/howto/PhpSuexec/

At the very end of this document there is a test. When I run the test, it says:

Warning: system() has been disabled for security reasons in /home.......... on line 3

Is there any other method to check it? (I have SSH access)

link|improve this question

2  
You should ask your hoster. – hakre Oct 15 '11 at 10:13
feedback

1 Answer

up vote 0 down vote accepted

the best and simplest way I have found to test it is to have a PHP script executing the "id" command:

put the following in a .php file, and uplaod via ft. then, visit the file location in your browser.

<?php
system('id');
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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