2009/2/13,In my ubutun server in VMware, I test install Ez publish 4.0.2 CMS system.
Download Ez Publish from http://ez.no, copy file to share directory, so my vmware ubutun can see the file.
config mysql database
mysql -u root -pmypassword //replace real passwd to mypassword, no space after'-p'.
Create new database:
CREATE DATABASE ezpublish CHARACTER SET utf8;
GRANT ALL ON ezpublish.* TO ezpublish@localhost IDENTIFIED BY 'ezpublishsqlpassword';
FLUSH PRIVILEGES;
Then I uncompress eZ Publish:
cd ~/share
tar zxvf ezpublish-4.0.0-gpl.tar.gz -C /var/www
This creates the directory ezpublish-4.0.0 in /var/www which I rename to ezpublish:
mv /var/www/ezpublish-4.0.0 /var/www/ezpublish
Then we should change 'Php.ini' , change 'mem_limits=16M' to 'mem_limits=64M', because Ez publish need 64M memory in PHP:
cd /etc/php5/apache2/
sudo vi php.ini
Then we need restart apache server:
/etc/init.d/apache2 restart
Next we need to install "imageMagick":
sudo apt-get install imagemagick
Next we set proper access permision:
cd /var/www/
sudo chmode -R a+rwx ezpublish
Now, we can visit "http://192.xxx.xxx.xxx/ezpublish/index.php" to continue install ezpublish. It really work.
Dr. Vivek Murthy
4 years ago
2 comments:
Hi!
I'm working at eZ Systems, the creator of eZ Publish, and just came across your blog.
Would you be interested in having a conversation with me to talk about your plan with eZ Publish? Or is there anything I could help with as the software vendor?
Feel free to contact me via info at ez.no
Best Regards,
Vinna
Post a Comment