Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
996 views
in Technique[技术] by (71.8m points)

wordpress - PHP __DIR__ working locally but not on production

I have a script in a Wordpress plugin and I am trying to incorporate logging using fwrite().

My code is like this:

 $log_url =  __DIR__ . '/logs/update-email-publish-tasks/' . date("n.j.Y") . '.txt';
    $logfile = fopen($log_url, "w"); 
    fwrite($logfile, 'Starting tasks at ' . date("H.i.s") . "
");

//A bunch of code that logs stuff;

    fwrite($logfile, "
" . 'Finished at !' . date("H.i.s") . "
");
    fclose($logfile);

This is working fine locally but does not work on production. I am wondering if I need to use something besides __DIR__? I also tried WP_CONTENT_DIR which did not work.

FWIW I am hosting production on Pantheon.

question from:https://stackoverflow.com/questions/65834497/php-dir-working-locally-but-not-on-production

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...