Hello, First of all, thank you for your purchase.
It seems that your server’s settings needs to be changed to allow execution of ffmpeg on your server, please check below:
If you are not the root on the machine, and exec()
function is disabled, then you can’t enable it by yourself.
See http://php.net/manual/en/ini.core.php#ini.disable-functions
disable_functions string
This directive allows you to disable certain functions for security reasons. It takes on a comma-delimited list of function names. disable_functions is not affected by Safe Mode.
Only internal functions can be disabled using this directive. User-defined functions are unaffected.
This directive must be set in php.ini For example, you cannot set this in httpd.conf.
To enable exec() function, you have to modify php settings using a php.ini file.
- Open php.ini file and search for disable_functions exec and shell_exec
- Delete “exec” and “shell_exec” from disable_functions
disable_functions = "show_source,system, shell_exec,exec"
- Save the changes and reboot server.
That’s it!
I hope this helped.
Regards, Szabi – CodeRevolution.