The php-safe-mode tag has no wiki summary.
0
votes
3answers
284 views
How to use shell_exec() function in a php domain?
I found the shell_exec() function is disabled in my remote server.
Is there is any other way or tips to execute the shell_exec() function?
3
votes
1answer
720 views
Can't write to /tmp with php, despite 777 permissions and no open_basedir value
I'm trying to write a file to my /tmp directory (on an apache server) with the php fopen function, but it fails:
<?php
$handle = fopen("/tmp/test.txt", "x");
if ($handle) echo "Success!";
else ...
0
votes
0answers
25 views
Open process in safe_mode() in PHP
I have a site on a hosting server and I want to compile and run .c source code, but for this I need to execute some file.
My question is not how to do this, but how to do this on a server with ...