Knowledgebase

Apache 2.4 and SuPHP 0.7.2 in CWP [Installer]

cd /usr/local/src
wget -c http://dl-package.bullten.in/cwp/apache-upgrade.sh
chmod +x apache-upgrade.sh
sh apache-upgrade.sh | tee /var/log/apache_upgrade.log


After the install completes edit the file below:

nano /usr/local/apache/conf.d/vhosts.conf

Look for a lines below:

<Directory "/home/USER/public_html">
        AllowOverride All
</Directory>

Add Require all granted:

<Directory "/home/USER/public_html">
        AllowOverride All
	Require all granted
</Directory>





  • 3 Users Found This Useful
Was this answer helpful?