The Blog

Month: April 2010

Upgrading Concrete

Posted on

To upgrade your Concrete5 installation from a previous version, do the following (note, this will only work when upgrading from versions LATER than Concrete 5.0.0a4).

  • Archive your database and your web root…just in case something should go awry.
  • When ready, replace your “concrete” directory with the “concrete” directory contained in the latest version downloaded from SourceForge.
  • Go to http://www.yoursite.com/index.php/tools/required/upgrade (Note: if this does not work, try http://www.yoursite.com/index.php/tools/required/upgrade.php)
  • Make sure to follow any pre-upgrade instructions (for example, Concrete5.0.0a4 requires a jobs/ directory be created in your webroot.)
  • Finally, when ready, click the Upgrade button.
Posted in Concrete 5 CMS Leave a comment

.htaccess for PHP errors

Posted on

DirectoryIndex index.html index.htm index.php

# PHP error handling for development servers
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag log_errors on
php_flag ignore_repeated_errors off
php_flag ignore_repeated_source off
php_flag report_memleaks on
php_flag track_errors on
php_value docref_root 0
php_value docref_ext 0
php_value error_log /var/www/vhosts/twang.com/httpdocs/PHP_errors.log
php_value error_reporting 999999999
php_value log_errors_max_len 0

<Files /var/www/vhosts/twang.com/httpdocs/PHP_errors.log>
 Order allow,deny
 Deny from all
 Satisfy All
</Files>

Posted in Uncategorized Leave a comment