5.5.1 challenges with editheader

Permalink
Hi

I use concrete5 for a long time and just installed a few new installs on a bluehost server like many times before.

Themes that worked flawless before now create a challenge with the editor bar on top of the page... Is this a known issue?

There seem to be a lot of changes in the newest version - I also do not understand the new site.php as the directory information now seems to be gone or somewhere else?

Where do I change directories?

Thanks in advance

Alexander Schottky
(shotrox)

shotrox
 
adamjohnson replied on at Permalink Best Answer Reply
adamjohnson
Sounds like you are missing footer_required. See:

http://www.concrete5.org/community/forums/customizing_c5/no-toolbar...

Not sure what you are saying about site.php. Please give more details.
shotrox replied on at Permalink Reply
shotrox
That worked like a charm - I never even saw the footer_required element and have at least 60 pages running without it... I guess I will have some work to do to upgrade those :-)

Thank you

The new site.php looks like this:

<?php 
define('DB_SERVER', 'localhost');
define('DB_USERNAME', 'databasename');
define('DB_PASSWORD', 'database-password');
define('DB_DATABASE', 'database');
define('PASSWORD_SALT', 'saltysalty');


in the old one you had 2 lines in addition taht determined the location of the install:

define('BASE_URL', 'http://www.yourwebsite.com');
define('DIR_REL', '/locationfolder');


Where does this information go now?

Thanks a million!
adamjohnson replied on at Permalink Reply
adamjohnson
It stays in site.php. If those are your real password and user names you should edit that post (even if it's just local development).

Happy upgrading.
jbx replied on at Permalink Reply
jbx
Yep - it should be in site.php. In 5.5.0 and 5.5.1, the new install doesn't seem to be adding these lines into the site.php. I've raised a bug, but haven't had a response yet. They need to be there for many things to work though, so you should add them in yourself...

Jon
shotrox replied on at Permalink Reply
shotrox
thank you Jon, thank you riotaj
I changed my details in the form - that was a little too much trust on my part...
I will add these from now on to 5.5. versions, thank you!