EasyApache Error

/scripts/preeasyapache: line 116: /var/asl/data/templates/template-cPanel-posteasyapache-hook: No such file or directory This file is missing, I only have these 4 in that folder. template-cpanel-apache-hook template-cpanel-posteasyapache template-cpanel-preeasyapache template-cpanel-preeasyapache-hook Fix: Just remove the reference to that, it doesnt exist. Its an artifact of the way cpanel mangled perl in their environment.      

See More

MySQL-python : Installation

wget http://downloads.sourceforge.net/mysql-python/MySQL-python-1.2.2.tar.gz gzip -d MySQL-python-1.2.2.tar.gz tar -xvf MySQL-python-1.2.2.tar.gz cd MySQL-python-1.2.0 python setup.py build python setup.py install Thats all.  

See More

mySQL Result Source Errors

Warning: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in… You need to take a look at the $result variable used to define the loop. More than likely there is a syntax error on the reported line before the $result field, or the value of $result does not exist. Supplied argument is […]

See More