Move Site

Permalink
Hello,

i moved my site from my old webspace to my new webspace. Everything works fine, but the photos would not be shown ( See here:http://www.irish-wolfhounds.at). Thanks and

best regards
Othmar

garma
 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
update your site to concrete5.5.2.1 (the update has just been released today)
garma replied on at Permalink Reply
garma
Hello Weyboat,

thank you for your answer. I installed the update. Now I lost my logo and the dashboard line after login. The photos are still not shown on the site. Maybe its better to install c5 new?

Thanks
Othmar
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Lots of things going on here, this the logo code on line 78 which is incomplete
<div id="logo">
            <a href="/" title="Irish Wolfhounds vom Chateau garma">

The photos are being referenced from a cached copy which does not exist although the original photos are in their file folders as you can see from this link,
http://www.irish-wolfhounds.at/files/7113/3184/6930/DSC_7128_-_Kopi...

I can only think that you forgot to clear your cache before you moved the site,
Do your photos still appear in file manager, if they do, you could try to just delete and reinstall the fancybox gallery,
Can you post your header.php code?

EDIT I see your slideshow is also not working, try deleting that and reinstalling also..

How did you update the site?
garma replied on at Permalink Reply
garma
Yes, i forgot to clear the cache, before i moved the files. I have the files from the old server on my pc, but i have no more access to the old server.
Yes I can see the photos in the file manger.
I run the update with the update option in dashboard.

Here is the code

[<?php defined('C5_EXECUTE') or die(_("Access Denied.")); ?>
<!doctype html>
<!--[if lt IE 7 ]> <html lang="<?php echo LANGUAGE?>" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="<?php echo LANGUAGE?>" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="<?php echo LANGUAGE?>" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="<?php echo LANGUAGE?>" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="<?php echo LANGUAGE?>" class="no-js"> <!--<![endif]-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />

<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic|Lato:400,700" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/columnal.css" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('typography.css')?>" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('main.css')?>" />

<!-- Skins -->
<!--<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/skins/minimal/minimal.css" />-->
<!--<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/skins/minimal-dark/minimal-dark.css" />-->
<!--<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/skins/minimal-grunge/minimal-grunge.css" />-->

<!-- Fixes for IE -->
<!--[if lt IE 9]>
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/ie.css" />
<![endif]-->
<!-- use "fixed-984px-ie.css" or "fixed-960px-ie.css for a 984px or 960px fixed width for IE6 and 7 -->
<!--[if lte IE 7]>
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/fixed-984px-ie.css" />
<![endif]-->

<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/mobile.css" />

<?php Loader::element('header_required'); ?>

<script type="text/javascript" src="<?php echo $this->getThemePath(); ?>/js/superfish.js"></script>

<!-- FancyBox -->
<script type="text/javascript" src="<?php echo $this->getThemePath(); ?>/js/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="<?php echo $this->getThemePath(); ?>/js/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/js/fancybox/jquery.fancybox-1.3.4.css" />

<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<script type="text/javascript" src="<?php echo $this->getThemePath(); ?>/js/functions.js"></script>

</head>

<body id="<?php echo $c->getCollectionTypeHandle() ?>" class="page<?php echo $c->getCollectionID() ?>" <?php
global $cp;
if (is_object($cp) && ($cp->canWrite() || $cp->canAddSubContent() || $cp->canAdminPage())) {
echo ' style="margin:70px 2% 2% !important;"';
}
?>>

<div id="container">

<header>
<div id="logo">
<a href="<?php echo DIR_REL?>/" title="<?php echo SITE?>">
<?php
$a = new GlobalArea('Site Name');
$a->display();
?>
</a>
</div><!-- #logo ends -->
<div id="header-area">
<?php
$a = new Area('Header Top');
$a->display($c);
?>
</div><!-- #header-area ends -->
</header><!-- header ends -->

<nav>
<?php
$bt = BlockType::getByHandle('autonav');
$bt->controller->displayPages = 'top';
$bt->controller->orderBy = 'display_asc';
$bt->controller->displaySubPages = 'all';
$bt->controller->displaySubPageLevels = 'all';
$bt->render('templates/slate_main_nav');
?>
<div class="clearboth"> </div>
</nav><!-- nav ends -->

<div id="feature">
<?php
$a = new Area('Header');
$a->display($c);
?>
<?php if ($a->getTotalBlocksInArea('Header') > 0) { ?><div class="has-content"></div><?php } ?>
</div><!-- #feature ends -->]

Thanks
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Okay, I have cleaned up the header.php code, here it is
<?php  defined('C5_EXECUTE') or die(_("Access Denied.")); ?>
<!doctype html>  
<!--[if lt IE 7 ]><html lang="<?php  echo LANGUAGE?>" class="no-js ie6"><![endif]-->
<!--[if IE 7 ]><html lang="<?php  echo LANGUAGE?>" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]><html lang="<?php  echo LANGUAGE?>" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]><html lang="<?php  echo LANGUAGE?>" class="no-js ie9"> <![endif]-->   
<!--[if (gt IE 9)|!(IE)]><![endif]-->
<html lang="<?php  echo LANGUAGE?>" class="no-js">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic|Lato:400,700" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php  echo $this->getThemePath(); ?>/columnal.css" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php  echo $this->getStyleSheet('typography.css')?>" />
<link rel="stylesheet" media="screen" type="text/css" href="<?php  echo $this->getStyleSheet('main.css')?>" />

Replace your header code with this and we will take it from there..
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Okay I see that you have changed that,
just have a look at dashboard/system & settings/basics/site name/ to see that you have a name in there.
garma replied on at Permalink Reply 1 Attachment
garma
At first, thankyou for help.
I have also a problem with my dashboard. Please have a look at the attached PDf File.
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
I could really use ftp access to the filing system, can you PM me with some details, If you are not happy with that I fully understand.
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
When you updated to 5.5.2.1, did you remove any folders or files from your system, the updates folder or its contents for instance?
garma replied on at Permalink Reply
garma
I only removed the cache folder. In the evening I send you the access information for ftp.

Regards
Othmar
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Okay I will take a look this evening.