Admeral SeMo
Admeral SeMo

Reputation: 43

problem with install Composer in php_info()

Hello I have problem with download Composer on windows, it's look nice at leas to I click on install! it show me this message:

The Composer installer script did not run correctly. Script Output: PHP Warning: phpinfo() has been disabled for security reasons in C:\Users\R_H\AppData\Local\Temp\is-FM602.tmp\installer.php on line 371

I click to retry so many times and it's useless!

Upvotes: 1

Views: 854

Answers (1)

Gary Thomas
Gary Thomas

Reputation: 2331

Check the disable_functions line in your php.ini file.

Ensure the php_info function isn't listed in there.

If it is, remove it:


Before:

disable_functions=phpinfo

After:

disable_functions=

Upvotes: 3

Related Questions