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?

jtkiii
 
jtkiii replied on at Permalink Reply
jtkiii
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).
frz replied on at Permalink Reply
frz
shouldn't have to add it, you should just be able to go there. Glad its working for you though.
-frz
brianhayes replied on at Permalink Reply
I too cannot get a toolbar. So how do i add index.php/login?
Mnkras replied on at Permalink Reply
Mnkras
site.com/index.php/login
brianhayes replied on at Permalink Reply
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
brianhayes replied on at Permalink Reply
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

<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
      {


If anyone can tell me why this works it might be interesting but I doubt that I will understand the answer.
Mnkras replied on at Permalink Reply
Mnkras
don't load jquery twice, thats what caused it
starkjoe replied on at Permalink Reply
starkjoe
I had a similar issue and moving the toolbar loader code beneath the javascript links (but still in the <head>) worked for me. Thanks.