concrete5 toolbar missing?
Permalink
i just installed concrete 5, 5.3.3.1, and created a test site. i went through three versions, and then closed my browser. now, when i go to the site, i do not get my concrete5 toolbar, nor any login screen. i can't edit it anymore. any suggestions?
silly me. so, just in case anyone else had this same issue -- you have to add /index.php/login to the website where you installed concrete5 in order to login for editing... (was right there in black and white in the welcome email).
shouldn't have to add it, you should just be able to go there. Glad its working for you though.
-frz
-frz
I too cannot get a toolbar. So how do i add index.php/login?
site.com/index.php/login
OK. I go towww.www.mysite.com/index.php/login... ,enter username and password and my theme appears but no toolbar. Where do I look for what is wrong?
Regards,
Brian
Regards,
Brian
I have found where the problem lies. I have a number of javascripts that use jquery and I found that if these are called using "<?=$this->getThemePath()?>" after inserting
"<? Loader::element('header_required'); ?>"
the toolbar does not work. At the same time I have a javascript using jquery.fancibox and this has to be called after
"<? Loader::element('header_required'); ?>" or it does not work.
The content of my head now looks like this
If anyone can tell me why this works it might be interesting but I doubt that I will understand the answer.
"<? Loader::element('header_required'); ?>"
the toolbar does not work. At the same time I have a javascript using jquery.fancibox and this has to be called after
"<? Loader::element('header_required'); ?>" or it does not work.
The content of my head now looks like this
<head> <script src="<?=$this->getThemePath()?>/javascripts/jquery.js" type="text/javascript"></script> <script src="<?=$this->getThemePath()?>/javascripts/dropdown_menu.js" type="text/javascript"></script> <script src="<?=$this->getThemePath()?>/javascripts/jquery_coda_tooltip.js" type="text/javascript"></script> <script src="<?=$this->getThemePath()?>/javascripts/jquery_getfile.js" type="text/javascript"></script> <script src="<?=$this->getThemePath()?>/javascripts/jquery_random_text.js" type="text/javascript"></script> <script src="<?=$this->getThemePath()?>/javascripts/jquery_random_content.js" type="text/javascript"></script> <script type='text/javascript'> //<![CDATA[ function selectCountry(rid) { if (rid != "EU_") window.location = "search/" + rid else {
Viewing 15 lines of 55 lines. View entire code block.
If anyone can tell me why this works it might be interesting but I doubt that I will understand the answer.
don't load jquery twice, thats what caused it
I had a similar issue and moving the toolbar loader code beneath the javascript links (but still in the <head>) worked for me. Thanks.