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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.