escapeshellarg() has been disabled for security reasons

后端 未结 4 955
谎友^
谎友^ 2020-11-30 13:58

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

4条回答
  •  抹茶落季
    2020-11-30 14:39

    Another simple way to solve this issue is just move your application from development to production:

    Open index.php in your application root and change

    define('ENVIRONMENT', 'development');
    

    to

    define('ENVIRONMENT', 'production');
    

提交回复
热议问题