My code:
function log_this($to_log, $prepend = null){
ob_start();
$fn = '../info.log';
$fp = fopen($fn, 'a');
fputs($fp, "\r\rnew log -------- \r\r");
if(isset($prepend)) fputs($fp, $prepend . ":\r\r");
var_dump($to_log);
$content = ob_get_contents();
fputs($fp, $content);
fclose($fp);
ob_end_clean();
}
It's a function I always use in my local environment (MAMP) to log things from wordpress. it always worked. Now it doesn't work anymore. I tried to understand why for a couple of days but can't find any solution. I'm not a really advanced php programmer, so maybe there's something I don't know and should.. Can anyone help me please?
By the way, function_exists and also file_exists, from where I call it.
var_dump()written to the file, or are you getting nothing written (i.e. not evennew log --------)? – lanzz Sep 2 '12 at 9:46log_thisfunction is called? Can you log something likeerror_log(__METHOD__);in your function and check whether you got value in apache error log? – Kalpesh Mehta Sep 2 '12 at 9:46