Just another WordPress weblog
19 Nov
Check if your server has GD support
http://www.tutorialadvisor.com/tutorials_view/Test_GD_support_on_your_server-1209.html
This script told me that I didn’t have GD support.
The following command worked for me.
apt-get install php5-gd
Installing Inocube
http://www.debiantutorials.net/installing-ioncube/
http://www.crucialp.com/resources/tutorials/server-administration/how-to-howto-ioncube-loader.php
Install Curl
apt-get install php5-curl
Install Zend Optimizer
http://www.howtoforge.com/linux_apache2_ssl_php5_zendoptimizer_ioncubeloader
Mod_rewrite
This was not enabled. I couldn’t find anything useful online about installing this but thankfully there was an option in Webmin to enable the module.
Next
Testing using the Installs folder it turns out that some of the folders did not have the correct permissions – chmod 777
Problem
Also, there’s no GD Library enabled apparently.
Ok, this post resolved the GD library issues
http://drupal.org/node/134331#comment-1120427
The final piece of the puzzel
PHP didn’t recognize the MySQL functions to connect to the database. I then figured out that the php mysql extensions were not enabled. Thankfully this was as easy as using this command:
apt-get install php5-mysql
It works!
Final, final step
I ran into another problem on a different install. The site displayed Invaild Licence.
IN the table _tbsettings
Make sure the is set correctly.
http://forum.tradingeye.com/showthread.php?t=832&highlight=Invalid+License
Leave a reply