ページにエラーを表示するには:
<?php
ini_set('display_errors', '1');
ini_set('error_reporting', E_ALL);
?>
最初に、500エラーを生成する代わりに、ページ自体にエラー表示を有効にします。
次に、すべてのエラーが報告されていることを確認します。これには通知が含まれます。
アドバイス:1つの通知も発生しないコードを記述します。
PHPエラーログファイルを見つけるには:
grep error_log /etc/php.ini
grep ^error_log /etc/php.ini
RedHatファミリーサーバーにMySQLをインストールするには:
yum install mysql.x86_64
yum install mysql mysql-server
chkconfig --level 2345 mysqld on
service mysqld start
mysqladmin -u root password somepassword
最新のPHPバージョンにアクセスしたい場合は、次のリポジトリを使用することをお勧めします。
wget http://mirrors.coreix.net/fedora-epel/6/x86_64/epel-release-6-7.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
インストールするには:
rpm -Uvh remi-release-*.rpm epel-release-*.rpm
/bin/rm epel-release-*.noarch.rpm remi-release-*.rpm
perl -pi -e 's/enabled=0/enabled=1/g' /etc/yum.repos.d/remi.repo
yum update (optional - not recommended unless you know what you are doing)
yum install yum-plugin-priorities
リポジトリをインストールした後、それらを編集し、有効を0に設定して、必要な場合にのみ選択的に使用できるようにしてください。
yum --enablerepo=remi,epel install whatever