Report this

What is the reason for this report?

why is php exec not working on digitalocean

Posted on February 24, 2020

I have script that create folder for any user that sign up, and the script working perfectly fine on local, after pushing to server it refuse to work.

$createDir =  "cd ../../merchants && mkdir ".$merchant->merchant_id" && cd ".$merchant->merchant_id;
exec($createDir);


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi there @uyoobong,

This is not really DigitalOcean specific, you probably have the shell_exec, exec and etc. functions disabled in your php.ini file.

What you could do is create a PHP info file and check if this is the case:

<?php

phpinfo();

?>

Then visit the file via your browser and look for disable_functions. If this is the case edit your php.ini file and remove the shell_exec functions from the disabled_functions list and then restart your Apache service.

Hope that this helps! Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.