|
Setup
Setup
Featured Setup as system administrator aka root userInstall PHP5, Apache2, MySQL5Ubuntu Intrepid Ibex: aptitude install libapache2-mod-php5
aptitude install mysql-server-5.0
aptitude install php5 php5-{curl,gd,mysql,mcrypt,mhash} phpmyadminAdd Apache virtual hostExample for Ubuntu:
/etc/apache2/sites-available/zfce.vhost contents: <VirtualHost *> DocumentRoot /home/zfce/public_html ServerName comic.example.com Options +All </VirtualHost> Add MySQL DatabaseExample: Database = zfce Username = zfce Password = zfcepass mysql -u root -p SQL: CREATE DATABASE zfce; GRANT USAGE ON *.* to zfce@localhost IDENTIFIED BY 'zfcepass'; GRANT ALL PRIVILEGES ON zfce.* TO zfce@localhost; FLUSH PRIVILEGES; To quit write quit or \q Select versionReleasedDownload latest version SVNExample: svn --force export http://zfcomicengine.googlecode.com/svn/trunk/ /home/zfce Or if you want SVN metadata, use checkout. Configure zfce
Initialize databaseExample: mysql zfce -u zfce -p < db.sql You can also use PHPMyAdmin or MySQL Administrator or similar software to load the initial .sql file Ready to goGo to comic page with your browser and you should be redirected to admin page. Give your email address and password. zfce generates first user and logs you in. Add comics, posts and pages. |
► Sign in to add a comment