Cant log into dashboard - NEED HELP
Permalinkhttp://www.YOURSITE.com/index.php/dashboard/
This will bypass the home page loading,
It could be as Korvin has said a faulty page load, or, it could be an faulty or incomplete upgrade package,
download the latest package from this website (currently 5.5.2.1),
unzip the package and ftp it into the root/updates/ folder,
then run this file from your browser,
http://www.yoursite.com/index.php/tools/required/upgrade...
make sure you backup your database before updating just in case..
If not ....
Open your ftp or your file manager in hosts cpanel. Go to your theme files usually located in packages. Find the folder labelled elements, and find footer.php. If loader element is not there than copy the line from Korvins response to the bottom of what's already in the footer.php. Refresh browser, and clear cache on site by going to dashboard - cache and speed settings - clear cache, just to be sure it loads up right.
See if its better now. If you need a better explanation on how to do this than I will put together a better set of instructions.
To copy it press edit on the footer.php file, and than copy and paste the code from Korvins response at the bottom underneath what's already there with either notepad or cpanels built in editor. Than press save changes.
Thats it :)
Here's some example code of what the end should somewhat look like
</div>
<script type="text/javascript">
$('.sub_menu').each(function(num,el){ $(el).children().last().hover(
function (){
$(this).children("a").addClass("submenu_last_child_hover");
},
function (){
$(this).children("a").removeClass('submenu_last_child_hover');
});
});
</script>
<script type="text/javascript"> Cufon.now(); </script>
<?php Loader::element('footer_required'); ?>
</body>
</html>
Note the loader element at bottom, but within the body.
<?php Loader::element('footer_required'); ?>
Loader::element('footer_required'); at the end
This is the path I’m doing
File manager --> Public_html --> Packages --> Themes --> (under themes there are the categories of "default", "homepage", "subpage", "unbound", all of which contain a folder named elements, and under elements have the title of footer.php
That would be an example of one of my sites paths to footer.php
Jb_night_city is the name of my sites theme,the next themes folder is a secondary folder, the theme folder appears again than elements and under that would be footer.php
I checked the footer.php file and I have that line in the file. It has some additional information at the end of it see below - does this matter?
Also I appreciate the direct link to the dashboard - that works fine.
I just can't see the main upper bar buttons for EDIT, DASHBOARD when I first sign in.
How do I get to the EDIT button directly? Is that accessible from the dashboard?
THANKS! JASON
<?php
if ($_GET['_ccm_dashboard_external']) {
return;
}
?>
</div>
</div>
</div>
<?php Loader::element('footer_required', array('disableTrackingCode' => true)); ?>
</body>
</html>
Best Wishes,
Korvin