0

How to install laravel php framework on hostgator shared hosting? - PHP Version 5.2 - AddType application/x-httpd-php53 .php in .htaccess file

My Problem: Cannot install composer using SSH : $ curl -sS https://getcomposer.org/installer | php Getting error : The phar extension is missing Install it or recompile php without --disable-phar

Your Php(5.2.17) is too old, you must upgrade to PHP 5.3.2 or higher.

4

2 に答える 2

4

Hostgator は PHP 5.4 以降をサポートしています。それを使ってみてください。

参照: http://support.hostgator.com/articles/hosting-guide/hardware-software/php-5-4

PHP 5.4 は、次のコードを .htaccess ファイルに追加することにより、2013 年 5 月 1 日以降にプロビジョニングされた共有ホスティング アカウントで利用できます。

AddType application/x-httpd-php54 .php

于 2013-07-08T16:43:24.037 に答える
2

Laravel 4 のサーバー要件は次のとおりです。

  • PHP >= 5.3.7
  • MCrypt PHP 拡張機能

ホストには PHP 5.2 があるため、Laravel 4 は使用できません。ホストを変更するか、Laravel 3 を使用することを検討してください。

于 2013-07-08T11:59:26.217 に答える