When I want to upload anything in any form I see the Warning: escapeshellarg() has been disabled for security reasons message on my site. What can I do to f
Another simple way to solve this issue is just move your application from development to production:
development
production
Open index.php in your application root and change
index.php
define('ENVIRONMENT', 'development');
to
define('ENVIRONMENT', 'production');