On suphp servers you should remove the lines from .htaccess file that begin with “php_value” and “php_flag”. You will need to add the settings that you want to use to a file named php.ini and upload php.ini into your public_html directory.
You will need to remove php_value and php_flag from ALL .htaccess files you may have
In .htaccess under public_html, add the following:
suPHP_ConfigPath /home/AccountUserName/public_html
<Files php.ini>
order allow,deny
deny from all
</Files>
In php.ini under public_html add the settings that you want to use:
register_globals = On
post_max_size 6M
upload_max_filesize 6M
max_execution_time 90
max_input_time 90
....
Is it possible to get Awstats to send a monthly report with some basic stats to Email?
Script to send last months AwStats report to an email address: www.sitepoint.com/forums/showthread.php?t=275042
This scipt will run on a web server with CPanel. It uses the CPanel system to log in and get the report page from AwStats for the previous month.
To use this script:
- change the strings located in the first block of code to match information for your domain and CPanel account.
- Install the two script files into a location on your web server outside of the public html area (you don’t want someone accidently seeing the account details).
- Then set up a cron job to run the php program sometime after the first of the month. The command for the cron job might look like:php -q /home/userid/scripts/stats.php
Based on a script from Ronan Magee (ronanmagee on the SitePoint.com forum)
Modified by David K. Goodwin (dkg2000 on the SitePoint.com forum)
I was recently surprised to see that my wordpress install folders have swelled up in size like anything. I have 3 installs of WP and I noticed that in the root of each install there were dump files with a name pattern “core.*” and with sizes to the tune of 12MB each.
core files come from a core dump. A core dump can happen for lots of reasons, but in shared hosting it generally occurs if:
1. Your site software is not compatible with the latest server software versions.
2. The server software itself was/is having issues.