Copyright (c) ProjectSkyline 2006. pCal beta version 2.0 release. http://www.projectskyline.com UpdCopyright (c) ProjectSkyline 2006-2007. pCal beta version 2.0 release. http://www.projectskyline.com Updated: 03-Jan-07. ---------------------------------- pCal Setup ---------------------------------- Requirements: ------------- 1) SSL: Currently pCal forces HTTPS://. If you are not running https, only http, you need to comment out the call to procedure HTML_ForceSSL( ) in index.php 2) MySQL: pCal will only work with mySQL. It has been tested on version 5.0.22 Fedora Core 5 2.6. Installation: ------------- Create a directory where apache serves its files from, such as /var/httpd/www/pcal/ and make the owner apache. As root: # mkdir /var/www/html/pcal/ # chown apache:apache /var/www/html/pcal Unzip the files into this new directory, pcal. mySQL Setup: ------------ Next create a new database 'pcal' with password 'pcal'. This account is only used with this application. > CREATE DATABASE pcal; > GRANT ALL PRIVILEGES ON pcal.* TO 'pcal'@'localhost' IDENTIFIED BY 'pcal'; In a browser navigate to http://localhost/pcal/createdb.php. This will create the necessary database tables. Setup .htaccess: ---------------- AuthUserFile /home/sk/.htpasswd AuthName "pCal Login" AuthType Basic require valid-user You will need to edit 'AuthUserFile' to point to your home directory. You will also need to create a .htpasswd file. Copy the username:hash provided at http://www.kxs.net/support/htaccess_pw.html into your .htpasswd file. Use: ---- Give it a try, its very straight forward.