1

我一直在本地开发环境中测试 laravel。当我尝试将示例项目上传到我的测试服务器时,我意识到我需要从 php 5.2.17 升级到 5.3.15(并安装 composer)。我开始遇到问题。

我使用 http 安装,因为作曲家抱怨 ssl(即使我extension=php_openssl.dll启用了

我有以下行为:

$ curl -sS http://getcomposer.org/installer | php -d detect_unicode=Off -d allow_url_fopen=On
#!/usr/bin/env php
Some settings on your machine may cause stability issues with Composer.
If you encounter issues, try to change the following:

The openssl extension is missing, which will reduce the security and stability of Composer.
If possible you should enable it or recompile php with --with-openssl

Downloading...

Composer successfully installed to: /xxx/composer.phar
Use it: php composer.phar

$ php composer.phar
??????????$

因此,我尝试通过 composer 使用的每个命令(关于信息的帮助)都会返回???消息。发生了什么?

感谢您的回答,我看不到有同样错误的人

4

1 回答 1

1

最后,我更改了 php.ini 代码(CLI 版本)以满足作曲家的需求,这有助于我处理每个 CLI 命令中的额外文本。然后apache重新启动,终于让它工作了。感谢你的帮助

于 2013-09-03T21:03:28.547 回答