Difference between revisions of "Ubuntu 13.10 - Apache 2.4 with Zoneminder configuration changes"

From ZoneMinder Wiki
Jump to navigationJump to search
(Created page with "This is an initial "fix" for those of you wanting to use Ubuntu 13.10. These fixes apply to both the ZM 1.25.0 from the Ubuntu distribution and the 1.26.4 from the Launchpad p...")
 
Line 3: Line 3:
For Ubuntu 13.10 the symbolic link creation should be:
For Ubuntu 13.10 the symbolic link creation should be:


ln -s /etc/zm/apache.conf /etc/apache2/conf-enabled/zoneminder.conf
ln -s /etc/zm/apache.conf /etc/apache2/conf-enabled/zoneminder.conf


When you try to access the ZM web page you get a blank screen.
When you try to access the ZM web page you get a blank screen.
Line 9: Line 9:
The issue is in the php.ini file and is a value called:
The issue is in the php.ini file and is a value called:


short_open_tag = Off
short_open_tag = Off


This value needs to be set to On
This value needs to be set to On


sudo nano /etc/php5/php.ini
sudo nano /etc/php5/php.ini


find the short_open_tag = Off and change it to On
find the short_open_tag = Off and change it to On
Line 20: Line 20:
Ctrl +x to exit
Ctrl +x to exit


/etc/init.d/apache2 force-reload
/etc/init.d/apache2 force-reload


and now you should see the ZM page!
and now you should see the ZM page!

Revision as of 15:36, 23 October 2013

This is an initial "fix" for those of you wanting to use Ubuntu 13.10. These fixes apply to both the ZM 1.25.0 from the Ubuntu distribution and the 1.26.4 from the Launchpad ppa area.

For Ubuntu 13.10 the symbolic link creation should be:

ln -s /etc/zm/apache.conf /etc/apache2/conf-enabled/zoneminder.conf

When you try to access the ZM web page you get a blank screen.

The issue is in the php.ini file and is a value called:

short_open_tag = Off

This value needs to be set to On

sudo nano /etc/php5/php.ini

find the short_open_tag = Off and change it to On

Ctrl +o to save the file Ctrl +x to exit

/etc/init.d/apache2 force-reload

and now you should see the ZM page!