CLE-Steve Posted February 11 Author Share Posted February 11 Thanks again. I am fully upgraded, and full-functional. One last thing, I have a pesky piece of code that is somehow being displayed on the first line of the screen. It is there on any admin screen, as well as any customer-viewed screen. The code is shown in the pic $glob['install_source'] = 'softaculous'; Can I safely remove it? Promise:Last Question Quote Link to comment Share on other sites More sharing options...
bsmither Posted February 11 Share Posted February 11 Please look in the file /includes/global.inc.php. It may be the last line of the file. If so, the problem could be that there is a closing PHP tag, followed by that line. Like as follows: $glob['safe_mode'] = false; // Set to true to disable hooks and code snippets, 'hooks' to disable code hooks and 'snippets' to disable code snippets ?> $glob['install_source'] = 'softaculous'; ?> This is not correct. There must be only one closing PHP tag (which is the two characters ?>) and it must be the very last thing in this file. Also, this file may be 'read-only', so in order to fix it, you will need to unset the 'read only' flag, remove the ?> that is not at the end of the file, and save it. Quote Link to comment Share on other sites More sharing options...
CLE-Steve Posted February 11 Author Share Posted February 11 Yep That surely fixed it. Quick.Fast.Easy. Thanks again! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.