No Dashboard?

Permalink 1 user found helpful
I followed the instructions, though my page only shows my content, without the sign-in or dashboard, and only partial functionality on some blocks (such as tabs).

Not sure where to go except try it again.

 
johnpaulb replied on at Permalink Reply
johnpaulb
Hello kmrk30,

It sounds like you are connecting to your database successfully since it is showing your content. Have you tried logging into the dashboard by navigating to it directly?

Example:http://yourdomain.com/index.php/login...

Here is a link to a full article I did on how to accomplish this:
http://www.webhostinghub.com/support/edu/concrete5/get-started/dash...

I would try that first, and if you can get into the dashboard try and change your theme, then republish your site.

-John-Paul
kmrk30 replied on at Permalink Reply
I tried that- it logged me in, however the only result I noticed was the addition of a gray bar at the top, where the dashboard would have been, but wasn't.

Thanks for the response.

Kurosh

(im on a mac, MAMP - trying to get a local copy going of a site I had on a web server)
adajad replied on at Permalink Reply
adajad
This sounds like a js clash somewhere. Do you include jQuery in your theme? Because if you do, then don't, because c5 does that for your automatically. If your theme based on bootstrap, then you should also know that c5 has it's own implementation of bootstrap and some issues may happen.
JohntheFish replied on at Permalink Reply
JohntheFish
Have a look at the developer console of your browser. If it is a JavaScript issue there will be error reports that will give more detail.
kmrk30 replied on at Permalink Reply
Thanks...

Uncaught TypeError: Object [object Object] has no method 'popover'

Any thoughts?
JohntheFish replied on at Permalink Reply
JohntheFish
Popover is a bootstrap addon to jquery. So the error message suggests that bootstrap.js is not being loaded.
Other possibilities are:
- jquery.js is not being loaded
- they are being loaded, but there is a sequence/timing issue
- they are being loaded, but somehow broken (such as a double load as @adajad suggested)

c5.6.0.2 loads bootstrap.js by itself. But c5.6 loaded it combined with ccm.app.js. So there is a possibility that a theme or addon designed to use popover in 5.6 needs to be updated to a 5.6.0.2 version.

If you look at the network tab of the developer console and set it to record while you refresh the page, you will be able to see what is being loaded and if anything is double loaded or missing.

It could also be a theme problem. If you can get into the dashboard directly at
yoursite.com/index.php/dashboard/
You could try going to the themes page and changing the site to a default theme.

This is unlikely to cure it, but at least you will have eliminated a one source of such problems.