P Paul B XenForo moderator Staff member Jan 10, 2021 #2 Debug mode will show that, but it's not recommended to have it active for a production site. If you must do it on your live site, restrict it your own IP address. Add this to the config.php file and change the 0.0.0.0 to your IP. Code: if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] == '0.0.0.0') { $config['debug'] = true; } Upvote 0 Downvote
Debug mode will show that, but it's not recommended to have it active for a production site. If you must do it on your live site, restrict it your own IP address. Add this to the config.php file and change the 0.0.0.0 to your IP. Code: if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] == '0.0.0.0') { $config['debug'] = true; }
P Paul B XenForo moderator Staff member Jan 10, 2021 #3 If you just want to see how fast pages generate as seen by the user/browser, use the browser inspection tools (F12). Upvote 0 Downvote
If you just want to see how fast pages generate as seen by the user/browser, use the browser inspection tools (F12).