ISPConfig 3.0.4.2 is available for download. This release is a bugfix release for ISPConfig 3.0.4. For a detailed list of changes, please see the changelog section below. ===================================================== *** New! The ISPConfig 3 manual is now available! *** Version 1.3 for ISPConfig >= 3.0.4 (Date: 10/25/2011) Author: Falko Timme <[email protected]> 333 pages The manual can be downloaded from these two links: http://www.ispconfig.org/ispconfig-3/ispconfig-3-manual/ http://www.howtoforge.com/download-the-ispconfig-3-manual ===================================================== ----------------------------------------------------- - Download ----------------------------------------------------- The software can be downloaded here: http://prdownloads.sourceforge.net/ispconfig/ISPConfig-3.0.4.2.tar.gz ------------------------------------ - Changelog ------------------------------------ http://bugtracker.ispconfig.org/index.php?do=index&tasks=&project=3&due=57&status[]= -------------------------------------- - Known Issues: -------------------------------------- Please take a look at the bugtracker: http://bugtracker.ispconfig.org -------------------------------------- - BUG Reporting -------------------------------------- Please report bugs to the ISPConfig bugtracking system: http://bugtracker.ispconfig.org ---------------------------------------- - Supported Linux Distributions ---------------------------------------- - Debian Etch (4.0) - Squeeze (6.0) - Ubuntu 7.10 - 11.10 - OpenSuSE 11 - 12.1 - CentOS 5.2 - 6.2 - Fedora 9 - 15 ----------------------------------------- - Installation ----------------------------------------- The installation instructions for ISPConfig can be found here: http://www.ispconfig.org/ispconfig-3/documentation/ or in the text files (named INSTALL_*.txt) which are inside the docs folder of the .tar.gz file. ------------------------------------------ - Update ------------------------------------------ To update existing ISPConfig 3 installations, run this command on the shell: ispconfig_update.sh Select "stable" as the update resource. The script will check if an updated version of ISPConfig 3 is available and then download the tar.gz and start the setup script. Detailed instructions for making a backup before you update can be found here: http://www.faqforge.com/linux/controlpanels/ispconfig3/how-to-update-ispconfig-3/ If the ISPConfig version on your server does not have this script yet, follow the manual update instructions below. ------------------------------------------- - Manual update instructions ------------------------------------------- Code: cd /tmp wget http://www.ispconfig.org/downloads/ISPConfig-3-stable.tar.gz tar xvfz ISPConfig-3-stable.tar.gz cd ispconfig3_install/install php -q update.php
Update to 3.0.4.2 ok, but Billing did not generate PDF Files Hello Till, the update over the "ispconfig_update.sh" works without any error, but after the update from 3.0.4.1 to 3.0.4.2 the Billing add on did not generate PDF-Files. The database entry's locks okay, and no error in the log files. What can it be / what can I do? Thanks - Meik
Hello Till, Using ISPConfig 3.0.4.2 with Billing Addon 1.2 on Debian 6.0.3 The group and owner is (like before) ispconfig. Meik
Please try this: chmod 770 /usr/local/ispconfig/interface/invoices chown ispconfig:ispconfig /usr/local/ispconfig/interface/invoices and then click on "Save and Finalize" for the affected invoice again.
The monitor Data is not updated in realtime, wait some time and then check again. If you ere logged in during update, then logout and login again. If thats a multiserver system, then be aware that every slave has to be updated too. Updating only the master server is not enough.
Update went fine on my ISConfig3 homeserver. I will update my production servers in the dc soon. Thanks for this new release!
Problem with cron after update After updating to 3.0.4.2, daily (0:30) cron is failing cron job is executed (for example, today): :/var/log/ispconfig# ls -la cron.log -rw-rw-rw- 1 root root 2332740 ene 16 00:37 cron.log As you can see cron.log has been written today at 0:37, but webalizer stats are not updated, web logs are not rotated... If I launch command by hand, it runs and finish ok. I've already restarted cron, I've even restarted entire machine. This is driving me crazy. Any idea on what might be happening? Code: # crontab -l # m h dom mon dow command * * * * * /usr/local/ispconfig/server/server.sh > /dev/null 2>> /var/log/ispconfig/cron.log 30 00 * * * /usr/local/ispconfig/server/cron_daily.sh > /dev/null 2>> /var/log/ispconfig/cron.log
Maybe the cronjob has not been written correctly. Run: crontab -e to edit the crontab and comment out the cron_daily.sh cronjob by adding a # in front of the line, then save the changes. Afterwards run crontab -e again and enable the crinjob.
Time in Backend Hello, first of all thank you for the update. I was able to install it without any problem, but: Since the update, my system time in the ispconfig 3 backend is one hour behind the regular time. My server time is all right. Before the update everything was fine. Looking forward to you answer. André
Check the timezone setting in the files /usr/local/ispconfig/interface/lib/config.inc.php and /usr/local/ispconfig/server/lib/config.inc.php
They look fine: //** Default Language and Timezone $conf['language'] = 'de'; $conf['debug_language'] = false; $conf['timezone'] = 'UTC';
Try to use the detailed timezone like: "Europe/Berlin" if you are from germany. See here for more timezones: http://www.php.net/manual/en/timezones.europe.php you might also want to check the time and timezone of your server with the "date" command on the shell.
It seems it was correctly written in /var/spool/cron/crontabs/root Nevertheless, I've commented in and out as suggested. We'll see this night...