Tuesday 31 January 2006 1:08:57 pm
____________________________________________________
Issues
1. Insufficient directory permissions
eZ publish cannot write to some important directories, without this the setup cannot finish and parts of eZ publish will fail. The affected directories are: settings settings/override var var/storage var/cache settings/siteaccess settings/siteaccess/admin design
Shell commands These shell commands will give proper permission to the webserver.
cd /home/ezcomad/domains/ez.com/public_html/1/ezpublish-3.7.3
chmod -R ug+rwx settings settings/override var var/storage var/cache settings/siteaccess settings/siteaccess/admin design
chown -R apache:apache settings settings/override var var/storage var/cache settings/siteaccess settings/siteaccess/admin designAlternative shell commands If you don't have permissions to change the ownership you can try these commands.
cd /home/ezcomad/domains/ez.com/public_html/1/ezpublish-3.7.3
chmod -R a+rwx settings settings/override var var/storage var/cache settings/siteaccess settings/siteaccess/admin design
Ignore this test
2. File uploading is not possible The PHP upload directory /home/temp does not exists or is not accessible, without this you will not be able to upload files or images to eZ publish. Create the directory /home/temp on your system. If you do not have the possibility to create this yourself ask the administrator to create it for you.
Shell commands This shell command will create the upload directory.
mkdir -p /home /home/temp ________________________________________________________
|