Greetings...
ZM is a great program ... I'm a NOOB ... (brain washed by gorrilla M$ ... )
Set up ZM LIVE CD 1.22 ... works great within my LAN ... on PORT 80 ...
( LOVE the way it runs ! )
I'm not having great success in changing PORT 80 to some other port so I can view it remotely! ... Help ...
When I go to ROOT, edit "http.conf" file to "LISTEN 0.0.0.0:8080" (or some other port) ... How do I run ZM when "ROOT"? (ie. When a "USER", one simply opens FIREFOX and their is button for ZM CONSOLE ... )....
Help for NON PORT 80 users ....
-
- Posts: 6
- Joined: Tue Oct 03, 2006 3:15 pm
- Location: Earth
Help for NON PORT 80 users ....
Be seeing you ... I am not a number, I am a free man!
-
- Posts: 5111
- Joined: Wed Jun 08, 2005 8:07 pm
- Location: Midlands UK
once you have modified apache to listen on whatever port you will also need to update any shortcuts to point to that port
James Wilson
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
I sound like you might have configured the zoneminder web directory to run on port 8100 but not the cgi-bin directory.
I assume you have an apache site configuration file like:
In between the opening and closing 'VirtualHost' tags, you'll want something like:
I assume you have an apache site configuration file like:
Code: Select all
<VirtualHost>
.
. (other stuff)
.
<Directory>
Options Indexes FollowSymLinks MultiViews
AllowOverride AuthConfig
Order allow,deny
allow from all
</Directory>
.
. (other stuff)
.
</VirtualHost>
Code: Select all
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory>
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>