Here are my notes on how to install phpESP
download phpESP-1.8.2.tar.gz
I use /tmp/downloads
cd /tmp/downloads
use wget or copy to your downloads dir
wget
http://downloads.sourceforge.net/phpesp/phpESP-1.8.2.tar.gz?modtime=1148554135&big_mirror=0tar xzvf phpESP-1.8.2.tar.gz
mv /tmp/downloads/phpESP /opt
chown -R
www.www /opt/phpESP
chmod 750 /opt/phpESP
mkdir /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/
cd /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/
pico 92phpESP
# phpESP
Alias /phpESP /opt/phpESP
<Directory /opt/phpESP>
Options -Indexes
AllowOverride all
order deny,allow
deny from all
allow from all
Satisfy all
AddType application/x-httpd-php .php .php3
php_admin_value open_basedir /opt/phpESP/:/tmp
php_flag magic_quotes_gpc on
php_flag track_vars on
</Directory>
Save by pressing Ctrl x, press y to save changes and press enter
expand-template /etc/httpd/conf/httpd.conf
/etc/rc.d/init.d/httpd-e-smith restart
cd /opt/phpESP/scripts/db
mysql -uroot mysql < mysql_create.sql
mysql -e "grant all privileges on phpesp.* to phpesp@localhost identified by 'phpesp'"
mysql -e "flush privileges"
mysql -uphpesp -pphpesp phpesp < mysql_populate.sql
http://your-server/phpESP/The default user name is "root" and has a password of "esp". You
should login and change this password immediately after you configure
phpESP. This user name and password are for logging into phpESP, do
not confuse them with the database user name and password below.
Russell