CMS for the late garbage.fm
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

boot: constants should be strings before being defined

+5 -5
+5 -5
config/boot.php
··· 5 5 should do per-environment setup like logging, tweaking php settings, etc. 6 6 */ 7 7 8 - define(ADMIN_ROOT_DOMAIN, "garbage.fm"); 9 - define(ADMIN_ROOT_PATH, "/adm1n/"); 10 - define(ADMIN_ROOT_URL, "https://" . ADMIN_ROOT_DOMAIN . ADMIN_ROOT_PATH); 8 + define("ADMIN_ROOT_DOMAIN", "garbage.fm"); 9 + define("ADMIN_ROOT_PATH", "/adm1n/"); 10 + define("ADMIN_ROOT_URL", "https://" . ADMIN_ROOT_DOMAIN . ADMIN_ROOT_PATH); 11 11 12 - define(TWITTER_CONSUMER_KEY, $_ENV["TWITTER_CONSUMER_KEY"]); 13 - define(TWITTER_CONSUMER_SECRET, $_ENV["TWITTER_CONSUMER_SECRET"]); 12 + define("TWITTER_CONSUMER_KEY", $_ENV["TWITTER_CONSUMER_KEY"]); 13 + define("TWITTER_CONSUMER_SECRET", $_ENV["TWITTER_CONSUMER_SECRET"]); 14 14 15 15 /* session settings, change according to your application requirements */ 16 16 session_name("_garbagefm_session");