Posted: Thu Nov 29, 2007 8:42 pm
Old thread, I know...but is this add-on 'current' for ZM 1.22.x ?
Code: Select all
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/e-smith/files/ibays/Primary/html/calendar/config/dvos.inc.php:3183) in /home/e-smith/files/ibays/Primary/html/calendar/login.php on line 61
Warning: Cannot modify header information - headers already sent by (output started at /home/e-smith/files/ibays/Primary/html/calendar/config/dvos.inc.php:3183) in /home/e-smith/files/ibays/Primary/html/calendar/login.php on line 89
Warning: Cannot modify header information - headers already sent by (output started at /home/e-smith/files/ibays/Primary/html/calendar/config/dvos.inc.php:3183) in /home/e-smith/files/ibays/Primary/html/calendar/login.php on line 90
Warning: Cannot modify header information - headers already sent by (output started at /home/e-smith/files/ibays/Primary/html/calendar/config/dvos.inc.php:3183) in /home/e-smith/files/ibays/Primary/html/calendar/login.php on line 91
Warning: Cannot modify header information - headers already sent by (output started at /home/e-smith/files/ibays/Primary/html/calendar/config/dvos.inc.php:3183) in /home/e-smith/files/ibays/Primary/html/calendar/login.php on line 92
Warning: Cannot modify header information - headers already sent by (output started at /home/e-smith/files/ibays/Primary/html/calendar/config/dvos.inc.php:3183) in /home/e-smith/files/ibays/Primary/html/calendar/login.php on line 93
Warning: Cannot modify header information - headers already sent by (output started at /home/e-smith/files/ibays/Primary/html/calendar/config/dvos.inc.php:3183) in /home/e-smith/files/ibays/Primary/html/calendar/login.php on line 95
Code: Select all
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/localhost/htdocs/calendar/config/dvos.inc.php:3183) in /var/www/localhost/htdocs/calendar/login.php on line 61
Sorry, we don't support this language.
Code: Select all
session_start();
Code: Select all
//session_start();
Code: Select all
+cgi
+cli
+crypt
+curl
+ftp
+gdbm
+iconv
+ipv6
+kerberos
+ldap
+mysql
+ncurses
+nls
+pcre
+readline
+reflection
+session
+snmp
+sockets
+spl
+ssl
+truetype
+xml
+zlib
Code: Select all
Sorry, we don't support this language.
Code: Select all
/*
* LICENSE:
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* This is the main config file for all of the dvos frontend.
*
* DVOS-FrontEnd :: Frontend for a ZoneMinder Surveillance server
*
* @author Tom Stage <tom>
* @version $Revision: 2.0 $
* @access public
* @copyright Tom Stage
* @package DVOS-FrontEnd
* @license http://www.opensource.org/licenses/gpl-license.php GPL
*/
if (!defined('IN_DVOS_FRONTEND')) {
die("No Hacking");
}
$VERSION = "2.0";
$base = "dvos"; // This is the Database where the calendar table is located
$basezm = "zm"; // This is the default zm database so if you have changed that remember to change it here as well.
$user = "zm"; // Remember to change this to your database user
$password = MyPWD"; // Remember to change the password for your database user
$host = "localhost"; // Remember to change the host to where you have your databases
$default_lng = 'en'; // Set Default Language
$default_template ='dvos';// Set Default Template
$browser_resize = false; // Wether or not we should resize browser window, this is used in the ZM template for now
$cron_file = '/etc/cron.d/dvos.cron';// Path to the cron job file in your cron.d directory
// $cron_file = './dvos.cron';// This line is used for programming purpuses only edit the above instead
$cmd_zmpkg = "perl -T /usr/bin/zmpkg.pl '"; // Remember to change this to the path for your zmpkg.pl file on your system
$viewlogs = false; // If log viewing is active or not
$systemlogs = false; // This is used to tell if you want to be able to view the messages / access_log / error_log
$webuser = 'apache'; // The user that apache runs under, on Fedora Core the default is apache
$logroot = '/var/log/'; // Path to the main log directory
$zmlogfiles = '/var/log/zm/'; // Path to the ZoneMinder Logfiles
$httpdlogfiles = '/var/log/apache2/'; // Path to the Apache Logfiles
# Debug Vars
$debugcronadmin = true; // Debug in calendar.php
$debuguseradmin = true; // Debug in useradmin.php
$debugcronrunjob = true; // Debug in cron.php
?>
Code: Select all
CentOS 5.2 x86_64
Apache 2.2.3
PHP 5.1.6
MySql 5.0.22
Code: Select all
Try this first:
chown -R WEBUSER.WEBGROUP /var/www/localhost/htdocs/calendar/
Where WEBUSER.WEBGROUP is the user and group that your apache runs under.
If it stills fails try this:
chmod -R 755 /var/www/localhost/htdocs/calendar/*
If it still fails try this:
chmod -R 777 /var/www/localhost/htdocs/calendar/*