How do i disable error log and enable only when needed?
Results 1 to 8 of 8
Thread: Error log disabling?
-
26-04-2012, 08:17 PM #1Senior Member
- Join Date
- Sep 2010
- Posts
- 235
-
26-04-2012, 08:50 PM #2
Hi skyhigh,
in includes/common.inc.php
right at the top
session_start();
//$error_reporting = E_ALL^E_NOTICE;//enable to remove Undifined errors
$error_reporting = E_ALL; // use this for debugging
Enable which one you want and disable the other.
If you want to log no messages at all: $error_reporting = 0;
-
26-04-2012, 11:18 PM #3
-
27-04-2012, 12:51 AM #4
just disable both so
$error_reporting = E_ALL^E_NOTICE;//enable to remove Undifined errors
$error_reporting = E_ALL; // use this for debugging
beocomes
//$error_reporting = E_ALL^E_NOTICE;//enable to remove Undifined errors
//$error_reporting = E_ALL; // use this for debugging100%Webid Ready Hosting | Fleamart.co.uk the UK's 10p Auction Site
-
27-04-2012, 11:16 PM #5
-
28-04-2012, 09:33 AM #6
Not ghot a clue then how webid fills it's error log as far as I know disabling those lines should stop it.
Try what I said above then delete the error.log from the logs folderLast edited by nay27uk; 28-04-2012 at 09:39 AM.
100%Webid Ready Hosting | Fleamart.co.uk the UK's 10p Auction Site
-
28-04-2012, 10:57 AM #7
Disable error log ??
who want´s running buggy system ?
except something caused by my own coding of template.
resulting in couple of error messages
my log is = Error log is currently empty
Like my (Dahllsvarehus) work. [Donate here please. ]Donations reached $1,783 Thank you!
-
28-04-2012, 02:10 PM #8



Reply With Quote
Bookmarks