Sean S Active member Licensed customer Dec 13, 2010 #1 Good afternoon, was wondering if you could tell me where and how I can replace the location of the 1px by 1px cron.php image that shows up at the very bottom of the page. What template or file does this image gets called from? thank you, Sean
Good afternoon, was wondering if you could tell me where and how I can replace the location of the 1px by 1px cron.php image that shows up at the very bottom of the page. What template or file does this image gets called from? thank you, Sean
Jake Bunce Well-known member Licensed customer Dec 13, 2010 #2 Admin CP -> Appearance -> Templates -> PAGE_CONTAINER Code: <xen:if is="{$cronLink}"><img src="{$cronLink}" width="1" height="1" alt="" /></xen:if> Upvote 0 Downvote
Admin CP -> Appearance -> Templates -> PAGE_CONTAINER Code: <xen:if is="{$cronLink}"><img src="{$cronLink}" width="1" height="1" alt="" /></xen:if>
P Paul B XenForo moderator Staff member Licensed customer Dec 13, 2010 #3 It's called in PAGE_CONTAINER. Edit: Beaten to it by my nemesis Upvote 0 Downvote
Jake Bunce Well-known member Licensed customer Dec 13, 2010 #4 Oh, and the image itself is actually encoded in the PHP code: library/XenForo/Cron.php Code: /** * Outputs the blank image needed for cron page embedding. */ public function outputImage() { header('Content-Type: image/gif'); echo base64_decode('R0lGODlhAQABAIAAAP///wAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=='); // transparent gif } Upvote 0 Downvote
Oh, and the image itself is actually encoded in the PHP code: library/XenForo/Cron.php Code: /** * Outputs the blank image needed for cron page embedding. */ public function outputImage() { header('Content-Type: image/gif'); echo base64_decode('R0lGODlhAQABAIAAAP///wAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=='); // transparent gif }
Sean S Active member Licensed customer Dec 13, 2010 #5 Great, thanks for the help Jake and Brogan Upvote 0 Downvote