Topic was suppose to be in "Non-ZoneMinder Chat" .. however.
Make and model number?
Just to let you know that hardware failure due power outage and or inconsistency is a very common problem, think about getting an UPS.
Search found 46 matches
- Thu Apr 15, 2010 10:22 am
- Forum: ZoneMinder 1.24.x
- Topic: Apache NOT responding
- Replies: 63
- Views: 56794
Easy zoneminder-wide solution compatible with PHP 4 >= index.php change ini_set( "session.name", "ZMSESSID" ); session_name("ZMSESSID"); to function zm_shutdown() { session_write_close(); } register_shutdown_function('zm_shutdown'); ini_set( "session.name", "ZMSESSID" ); session_name("ZMSESSID"); Ho...
- Thu Apr 15, 2010 9:11 am
- Forum: ZoneMinder 1.24.x
- Topic: Apache NOT responding
- Replies: 63
- Views: 56794
I'm trying to look into it my self because I'm having the same issue. With Firefox, since it uses more server connections then other browsers, its easy to duplicate the problem. However the following code should be required by default even if not strictly related to this issue if (ini_get('session.a...
- Thu Apr 15, 2010 8:45 am
- Forum: User Contributions
- Topic: skin xss
- Replies: 3
- Views: 2291
I'm not missing anything ;) in index.php line 63, for additional security, change if ( isset($_GET['skin']) ) $skin = $_GET['skin']; elseif ( isset($_COOKIE['zmSkin']) ) $skin = $_COOKIE['zmSkin']; else $skin = "classic"; to if ( isset($_GET['skin']) && preg_match('#^[a-z]+$#', $_GET['skin'])) $skin...
- Thu Apr 15, 2010 5:47 am
- Forum: ZoneMinder 1.24.x
- Topic: zmaudit.pl problem
- Replies: 15
- Views: 6837
- Wed Apr 14, 2010 7:28 am
- Forum: User Contributions
- Topic: Replay Modes aka gapless - all - single Real Fix
- Replies: 2
- Views: 3748
I've also updated http://www.zoneminder.com/wiki/index.ph ... face_fixes.
- Wed Apr 14, 2010 7:27 am
- Forum: User Contributions
- Topic: strftime() and strtotime() PHP warnings
- Replies: 1
- Views: 2227
I've also updated http://www.zoneminder.com/wiki/index.ph ... face_fixes.
- Tue Apr 13, 2010 11:26 am
- Forum: ZoneMinder 1.24.x
- Topic: CREATE_ANALYSIS_IMAGES outline the entire image
- Replies: 3
- Views: 1881
Thanks a lot but I still get the entire image highlighted. Monitor 14 set to None Created Monitor 17 ZM stop Manually changed Zones's MonitorId, directly into mysql, from 14 to 17. ZM start Double checked via web interface and zones where correctly shifted to the new monitor. Stats are working but i...
- Tue Apr 13, 2010 5:24 am
- Forum: ZoneMinder Previous Versions
- Topic: change zoneminder web access port from 80 to XX ZM 1.23.3
- Replies: 6
- Views: 6556
- Tue Apr 13, 2010 5:19 am
- Forum: ZoneMinder Previous Versions
- Topic: dynamic ip only static not available in my area
- Replies: 5
- Views: 2725
First of all I'll suggest you to check if your router (if you got one) support dynamic dns, if so will show a list of supported services (dyndns is very common). Create an account with the service you choose and setup your router. Setting up the router have many pros but the most important one is th...
- Tue Apr 13, 2010 5:07 am
- Forum: User Contributions
- Topic: strftime() and strtotime() PHP warnings
- Replies: 1
- Views: 2227
strftime() and strtotime() PHP warnings
Since PHP 5.1.0 (when the date/time functions were rewritten), every call to a date/time function will generate a E_NOTICE if the timezone isn't valid, and/or a E_WARNING message if using the system settings or the TZ environment variable. In index.php im using: error_reporting( E_ALL ); $debug = f...
- Tue Apr 13, 2010 3:53 am
- Forum: User Contributions
- Topic: outputImageStream() iframe issue
- Replies: 0
- Views: 993
outputImageStream() iframe issue
XTML 1.0 require iframe closing tag
XHTML also require "px" when specifying sizes.
No attachments and since bbcode is stripping php and html from the patch I cannot post ether a partial or complete patch, sorry.
XHTML also require "px" when specifying sizes.
No attachments and since bbcode is stripping php and html from the patch I cannot post ether a partial or complete patch, sorry.
- Tue Apr 13, 2010 1:45 am
- Forum: User Contributions
- Topic: getBrowser PHP 5.3 compatible (include Opera fix)
- Replies: 0
- Views: 1521
getBrowser PHP 5.3 compatible (include Opera fix)
function getBrowser( &$browser, &$version ) { if ( version_compare( phpversion(), "4.1.0", "<") ) { global $_SERVER; } if (preg_match( '#MSIE ([0-9]\.[0-9]{1,2})#',$_SERVER['HTTP_USER_AGENT'],$logVersion)) { $version = $logVersion[1]; $browser = 'ie'; } elseif (preg_match( '#Safari/([0-9\.]+)#',$_S...
- Tue Apr 13, 2010 1:02 am
- Forum: ZoneMinder 1.24.x
- Topic: CREATE_ANALYSIS_IMAGES outline the entire image
- Replies: 3
- Views: 1881
- Sun Apr 11, 2010 8:43 am
- Forum: ZoneMinder 1.24.x
- Topic: CREATE_ANALYSIS_IMAGES outline the entire image
- Replies: 3
- Views: 1881
CREATE_ANALYSIS_IMAGES outline the entire image
When I first installed ZM, CREATE_ANALYSIS_IMAGES was working and at the time I had only one camera installed. Then I've disable it, installed 3 more cameras, played around with settings and general config. Today I'm creating zones with different sensitivity for each monitor and re-enabled CREATE_AN...