Changeset 683
- Timestamp:
- 07/02/07 01:23:15 (17 months ago)
- Location:
- trunk
- Files:
-
- 1 removed
- 12 modified
- 14 copied
- 1 moved
-
CHANGELOG (modified) (1 diff)
-
configs/dists/suse10 (moved) (moved from trunk/configs/dists/suse100)
-
configs/dists/suse10/Makefile (copied) (copied from trunk/configs/dists/suse100/Makefile)
-
configs/dists/suse10/apache (copied) (copied from trunk/configs/dists/suse100/apache)
-
configs/dists/suse10/awstats (copied) (copied from trunk/configs/dists/suse100/awstats)
-
configs/dists/suse10/bind (copied) (copied from trunk/configs/dists/suse100/bind)
-
configs/dists/suse10/courier (copied) (copied from trunk/configs/dists/suse100/courier)
-
configs/dists/suse10/cron.d (copied) (copied from trunk/configs/dists/suse100/cron.d)
-
configs/dists/suse10/crontab (copied) (copied from trunk/configs/dists/suse100/crontab)
-
configs/dists/suse10/database (copied) (copied from trunk/configs/dists/suse100/database)
-
configs/dists/suse10/fcgi (copied) (copied from trunk/configs/dists/suse100/fcgi)
-
configs/dists/suse10/init.d (copied) (copied from trunk/configs/dists/suse100/init.d)
-
configs/dists/suse10/ispcp.conf (copied) (copied from trunk/configs/dists/suse100/ispcp.conf)
-
configs/dists/suse10/logrotate (copied) (copied from trunk/configs/dists/suse100/logrotate)
-
configs/dists/suse10/postfix (copied) (copied from trunk/configs/dists/suse100/postfix)
-
configs/dists/suse10/proftpd (copied) (copied from trunk/configs/dists/suse100/proftpd)
-
configs/dists/suse93 (deleted)
-
configs/logrotate/ispcp (modified) (1 diff)
-
docs/Fedora/INSTALL (modified) (1 diff)
-
docs/Gentoo/INSTALL (modified) (1 diff)
-
docs/RedHat/INSTALL (modified) (1 diff)
-
docs/SuSE/INSTALL (modified) (1 diff)
-
docs/Ubuntu/INSTALL (modified) (1 diff)
-
gui/imagecode.php (modified) (2 diffs)
-
gui/reseller/ahp.php (modified) (2 diffs)
-
gui/reseller/ehp.php (modified) (3 diffs)
-
gui/reseller/rau2.php (modified) (3 diffs)
-
gui/reseller/rau3.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r682 r683 10 10 | * gui: disable stats-alias in client menu | 11 11 \_________________________________________________________________/ 12 13 2007-07-01 Benedikt Heintel 14 - CONFIGS: 15 * Fixed #451: reload of apache after logrotate 16 - DISTS: 17 * Dropped support for SuSE 9.3 18 * Changed SuSE 10.0 to SuSE 10 to support all SuSE versions above 10 12 19 13 20 2007-07-01 Raphael Geissert -
trunk/configs/logrotate/ispcp
r644 r683 12 12 endscript 13 13 postrotate 14 if [ -f /var/run/apache2.pid ]; then 15 /etc/init.d/apache2 reload > /dev/null 16 fi 14 for i in `seq 1 10`; 15 if [ -f /var/run/apache2.pid ]; then 16 /etc/init.d/apache2 stop > /dev/null 17 sleep 5 18 /etc/init.d/apache2 start > /dev/null 19 fi 20 done 17 21 endscript 18 22 } -
trunk/docs/Fedora/INSTALL
r524 r683 92 92 These are the Variables you have to look at: 93 93 94 AWSTATS_DIR = no # Either no or path to the awstats configs dir95 94 SECONDARY_DNS = 96 95 MYSQL_PREFIX_TYPE = # '' for MYSQL_PREFIX = yes, -
trunk/docs/Gentoo/INSTALL
r524 r683 85 85 These are the Variables you have to look at: 86 86 87 AWSTATS_DIR = no # Either no or path to the awstats configs dir88 87 SECONDARY_DNS = 89 88 MYSQL_PREFIX_TYPE = # '' for MYSQL_PREFIX = yes, -
trunk/docs/RedHat/INSTALL
r524 r683 89 89 These are the Variables you have to look at: 90 90 91 AWSTATS_DIR = no # Either no or path to the awstats configs dir92 91 SECONDARY_DNS = 93 92 MYSQL_PREFIX_TYPE = # '' for MYSQL_PREFIX = yes, -
trunk/docs/SuSE/INSTALL
r524 r683 87 87 These are the Variables you have to look at: 88 88 89 AWSTATS_DIR = no # Either no or path to the awstats configs dir90 89 SECONDARY_DNS = 91 90 MYSQL_PREFIX_TYPE = # '' for MYSQL_PREFIX = yes, -
trunk/docs/Ubuntu/INSTALL
r653 r683 95 95 These are the Variables you have to look at: 96 96 97 AWSTATS_DIR = no # Either no or path to the awstats configs dir98 97 SECONDARY_DNS = 99 98 MYSQL_PREFIX_TYPE = # '' for MYSQL_PREFIX = yes, -
trunk/gui/imagecode.php
r682 r683 1 1 <?php 2 2 /** 3 * ispCP (OMEGA) - Virtual Hosting Control System | Omega Version3 * ispCP (OMEGA) a Virtual Hosting Control System 4 4 * 5 * @copyright 2001-2006 by moleSoftware GmbH6 5 * @copyright 2006-2007 by ispCP | http://isp-control.net 7 6 * @link http://isp-control.net … … 9 8 * 10 9 * @license 11 * This program is free software; you can redistribute it and/or modify it under 12 * the terms of the MPL General Public License as published by the Free Software 13 * Foundation; either version 1.1 of the License, or (at your option) any later 14 * version. 15 * You should have received a copy of the MPL Mozilla Public License along with 16 * this program; if not, write to the Open Source Initiative (OSI) 17 * http://opensource.org | osi@opensource.org 10 * This program is free software; you can redistribute it and/or 11 * modify it under the terms of the GPL General Public License 12 * as published by the Free Software Foundation; either version 2.0 13 * of the License, or (at your option) any later version. 14 * 15 * This program is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GPL General Public License for more details. 19 * 20 * You may have received a copy of the GPL General Public License 21 * along with this program. 22 * 23 * An on-line copy of the GPL General Public License can be found 24 * http://www.fsf.org/licensing/licenses/gpl.txt 18 25 **/ 19 20 26 21 27 require 'include/ispcp-lib.php'; -
trunk/gui/reseller/ahp.php
r682 r683 1 1 <?php 2 2 /** 3 * ispCP (OMEGA) - Virtual Hosting Control System | Omega Version3 * ispCP (OMEGA) a Virtual Hosting Control System 4 4 * 5 5 * @copyright 2001-2006 by moleSoftware GmbH … … 17 17 * http://opensource.org | osi@opensource.org 18 18 **/ 19 20 19 21 20 require '../include/ispcp-lib.php'; -
trunk/gui/reseller/ehp.php
r682 r683 1 1 <?php 2 2 /** 3 * ispCP (OMEGA) - Virtual Hosting Control System | Omega Version3 * ispCP (OMEGA) a Virtual Hosting Control System 4 4 * 5 5 * @copyright 2001-2006 by moleSoftware GmbH … … 17 17 * http://opensource.org | osi@opensource.org 18 18 **/ 19 20 21 19 22 20 require '../include/ispcp-lib.php'; … … 289 287 } else if (!ispcp_limit_check($hp_mail, 99999)) { 290 288 $ahp_error = tr('Incorrect mail account length or syntax!'); 291 } else if (!ispcp_limit_check($hp_ftp, 99999) ) {289 } else if (!ispcp_limit_check($hp_ftp, 99999) || $hp_ftp == -1) { 292 290 $ahp_error = tr('Incorrect FTP account length or syntax!'); 293 291 } else if (!ispcp_limit_check($hp_sql_user, 99999)) { -
trunk/gui/reseller/rau2.php
r682 r683 1 1 <?php 2 2 /** 3 * ispCP (OMEGA) - Virtual Hosting Control System | Omega Version3 * ispCP (OMEGA) a Virtual Hosting Control System 4 4 * 5 5 * @copyright 2001-2006 by moleSoftware GmbH … … 17 17 * http://opensource.org | osi@opensource.org 18 18 **/ 19 20 21 19 22 20 require '../include/ispcp-lib.php'; … … 254 252 $hp_mail = clean_input($_POST['nreseller_max_mail_cnt']); 255 253 256 if(isset($_POST['nreseller_max_ftp_cnt']) )254 if(isset($_POST['nreseller_max_ftp_cnt']) || $hp_ftp == -1) 257 255 $hp_ftp = clean_input($_POST['nreseller_max_ftp_cnt']); 258 256 -
trunk/gui/reseller/rau3.php
r679 r683 1 1 <?php 2 2 /** 3 * ispCP (OMEGA) - Virtual Hosting Control System | Omega Version3 * ispCP (OMEGA) a Virtual Hosting Control System 4 4 * 5 5 * @copyright 2001-2006 by moleSoftware GmbH
