diff --git a/Changelog b/Changelog index aaad89130..9104d109c 100755 --- a/Changelog +++ b/Changelog @@ -1,3 +1,5 @@ +2020-03-29 DariusIII + * Chg: Start replacing constants with laravel equivalents 2020-03-01 DariusIII * Chg: Move all third party api keys from database to .env file 2020-02-27 DariusIII diff --git a/misc/update/tmux/monitor.php b/misc/update/tmux/monitor.php index 9dded8ab7..96cd54445 100644 --- a/misc/update/tmux/monitor.php +++ b/misc/update/tmux/monitor.php @@ -26,9 +26,9 @@ try { echo $e; } -$runVar['paths']['misc'] = NN_MISC; -$runVar['paths']['cli'] = NN_ROOT.'cli/'; -$runVar['paths']['scraper'] = NN_MISC.'IRCScraper'.DS.'scrape.php'; +$runVar['paths']['misc'] = base_path().'/misc/'; +$runVar['paths']['cli'] = base_path().'/cli/'; +$runVar['paths']['scraper'] = base_path().'/misc/IRCScraper/scrape.php'; $db_name = config('nntmux.db_name');