Hm, irgendetwas stimmt da noch nicht. Mach bei e-s-l mal bitte eine Raute (#) vor "Options +FollowSymLinks", und deaktiviere das Caching. Wie ein Update funktioniert, steht in der in meiner Signatur verlinkten FAQ.
Hm, irgendetwas stimmt da noch nicht. Mach bei e-s-l mal bitte eine Raute (#) vor "Options +FollowSymLinks", und deaktiviere das Caching. Wie ein Update funktioniert, steht in der in meiner Signatur verlinkten FAQ.
Joomla kaputt? Gehackt? Migration mißlungen? Datensalat?
www.joomla-notdienst.de - Soforthilfe & Webentwicklung
Einsteiger- FAQ - bitte lesen!
Hallo Christian,
ich habe die raute# vorn hingeschrieben und es scheint zu funktionieren.
Habe beim Safari und Mozilla alles gelöscht (cookies, cache etc) und die seite hat sich in beiden browsern ohne probleme geöffnet. Vorher hat die Seite immer zuerst einen 500er Fehler gezeigt, aber wenn man dann die Seite noch einmal neue geladen hatte, war alles ok.
Funktioniert die Seite bei Dir jetzt auch einwandfrei oder ist da immer noch ein problem?
LG Daniela
Vorhin habe ich auch einen 500er bei e-s-l bekommen, nun scheint es okay zu sein. Bitte schalte noch das Caching im Joomla ab, oder kontrolliere, ob es in der index.php des Templates mehrfache Einbindungen einer php-Datei gibt, der Quelltext verrät, daß dort etwas nicht stimmt.
Andi?
Joomla kaputt? Gehackt? Migration mißlungen? Datensalat?
www.joomla-notdienst.de - Soforthilfe & Webentwicklung
Einsteiger- FAQ - bitte lesen!
Hallo Christian,
Caching ist die ganze Zeit schon abgeschaltet gewesen -- wenn du das Häkchen in der Configuration im Backend von Joomla meintest.
Hier ist die Index.php des Templates. Ich muss dazu sagen, dass ich es gekauft habe, bzw. eine licence erworben habe.
<?php
/**
* @package yoo_neo Template
* @file index.php
* @version 5.5.6 August 2010
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) 2007 - 2010 YOOtheme GmbH
* @license YOOtheme Proprietary Use License (http://www.yootheme.com/license)
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// include config
include_once(dirname(__FILE__).'/config.php');
// load main template file, located in /layouts/template.php
echo $warp->template->render('template');
Die ganze Template datei aus dem Folder /layouts/template.php ist diese hier, falls das was nützt:
<?php
/**
* @package yoo_neo Template
* @file template.php
* @version 5.5.6 August 2010
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) 2007 - 2010 YOOtheme GmbH
* @license YOOtheme Proprietary Use License (http://www.yootheme.com/license)
*/
// get template configuration
include(dirname(__FILE__).'/template.config.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->warp->config->get('language'); ?>" lang="<?php echo $this->warp->config->get('language'); ?>" dir="<?php echo $this->warp->config->get('direction'); ?>" >
<head>
<?php echo $this->warp->template->render('head'); ?>
<link rel="apple-touch-icon" href="<?php echo $this->warp->path->url('template:apple_touch_icon.png'); ?>" />
</head>
<body id="page" class="yoopage <?php echo $this->warp->config->get('columns'); ?> <?php echo $this->warp->config->get('itemcolor'); ?> <?php echo $this->warp->config->get('toolscolor'); ?> <?php echo $this->warp->config->get('frontpage'); ?> <?php echo $this->warp->config->get('webfonts'); ?>">
<?php if ($this->warp->modules->count('absolute')) : ?>
<div id="absolute">
<?php echo $this->warp->modules->render('absolute'); ?>
</div>
<?php endif; ?>
<div id="page-body">
<div class="wrapper">
<div id="header">
<div class="header-t1">
<div class="header-t2">
<div class="header-t3">
</div>
</div>
</div>
<div class="header-1">
<div id="toolbar">
<?php if ($this->warp->modules->count('toolbarleft')) : ?>
<div class="left">
<?php echo $this->warp->modules->render('toolbarleft'); ?>
</div>
<?php endif; ?>
<?php if ($this->warp->modules->count('toolbarright')) : ?>
<div class="right">
<?php echo $this->warp->modules->render('toolbarright'); ?>
</div>
<?php endif; ?>
<?php if($this->warp->config->get('date')) : ?>
<div id="date">
<?php echo $this->warp->config->get('actual_date'); ?>
</div>
<?php endif; ?>
</div>
<div id="headerbar">
<?php if($this->warp->modules->count('headerleft')) : ?>
<div class="left">
<?php echo $this->warp->modules->render('headerleft'); ?>
</div>
<?php endif; ?>
<?php if($this->warp->modules->count('headerright')) : ?>
<div class="right">
<?php echo $this->warp->modules->render('headerright'); ?>
</div>
<?php endif; ?>
</div>
</div>
<div id="menubar"></div>
<?php if ($this->warp->modules->count('logo')) : ?>
<div id="logo">
<?php echo $this->warp->modules->render('logo'); ?>
</div>
<?php endif; ?>
<?php if ($this->warp->modules->count('search')) : ?>
<div id="search">
<?php echo $this->warp->modules->render('search'); ?>
</div>
<?php endif; ?>
<?php if ($this->warp->modules->count('menu')) : ?>
<div id="menu">
<?php echo $this->warp->modules->render('menu'); ?>
</div>
<?php endif; ?>
<?php if ($this->warp->modules->count('banner')) : ?>
<div id="banner">
<?php echo $this->warp->modules->render('banner'); ?>
</div>
<?php endif; ?>
</div>
<!-- header end -->
<?php if ($this->warp->modules->count('top + topblock')) : ?>
<div id="top" class="<?php if(!$this->warp->modules->count('topblock')) echo "no-topblock"; ?> <?php if(!$this->warp->modules->count('top')) echo "no-topbox"; ?>">
<?php if($this->warp->modules->count('topblock')) : ?>
<div class="topblock width100 float-left">
<?php echo $this->warp->modules->render('topblock'); ?>
</div>
<?php endif; ?>
<?php if ($this->warp->modules->count('top')) : ?>
<?php echo $this->warp->modules->render('top', array('wrapper'=>"topbox float-left", 'layout'=>$this->warp->config->get('top'))); ?>
<?php endif; ?>
</div>
<!-- top end -->
<?php endif; ?>
<?php if ($this->warp->modules->count('breadcrumbs')) : ?>
<div id="breadcrumbs">
<?php echo $this->warp->modules->render('breadcrumbs'); ?>
</div>
<?php endif; ?>
<div class="middle-wrapper">
<div id="middle">
<div id="middle-expand">
<div id="main">
<div id="main-shift">
<?php if ($this->warp->modules->count('maintop')) : ?>
<div id="maintop">
<?php echo $this->warp->modules->render('maintop', array('wrapper'=>"maintopbox float-left", 'layout'=>$this->warp->config->get('maintop'))); ?>
</div>
<!-- maintop end -->
<?php endif; ?>
<div id="mainmiddle">
<div id="mainmiddle-expand">
<div id="content">
<div id="content-shift">
<?php if ($this->warp->modules->count('contenttop')) : ?>
<div id="contenttop">
<?php echo $this->warp->modules->render('contenttop', array('wrapper'=>"contenttopbox float-left", 'layout'=>$this->warp->config->get('contenttop'))); ?>
</div>
<!-- contenttop end -->
<?php endif; ?>
<div id="component" class="floatbox">
<?php echo $this->warp->template->render('content'); ?>
</div>
<?php if ($this->warp->modules->count('contentbottom')) : ?>
<div id="contentbottom">
<?php echo $this->warp->modules->render('contentbottom', array('wrapper'=>"contentbottombox float-left", 'layout'=>$this->warp->config->get('contentbottom'))); ?>
</div>
<!-- mainbottom end -->
<?php endif; ?>
</div>
</div>
<!-- content end -->
<?php if($this->warp->modules->count('contentleft')) : ?>
<div id="contentleft">
<?php echo $this->warp->modules->render('contentleft'); ?>
</div>
<?php endif; ?>
<?php if($this->warp->modules->count('contentright')) : ?>
<div id="contentright">
<?php echo $this->warp->modules->render('contentright'); ?>
</div>
<?php endif; ?>
</div>
</div>
<!-- mainmiddle end -->
<?php if ($this->warp->modules->count('mainbottom')) : ?>
<div id="mainbottom">
<?php echo $this->warp->modules->render('mainbottom', array('wrapper'=>"mainbottombox float-left", 'layout'=>$this->warp->config->get('mainbottom'))); ?>
</div>
<!-- mainbottom end -->
<?php endif; ?>
</div>
</div>
<?php if($this->warp->modules->count('left')) : ?>
<div id="left">
<?php echo $this->warp->modules->render('left'); ?>
</div>
<?php endif; ?>
<?php if($this->warp->modules->count('right')) : ?>
<div id="right">
<?php echo $this->warp->modules->render('right'); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
<?php if ($this->warp->modules->count('bottom + bottomblock')) : ?>
<div id="bottom" class="<?php if(!$this->warp->modules->count('bottom')) echo "no-bottombox"; ?>">
<?php if ($this->warp->modules->count('bottom')) : ?>
<?php echo $this->warp->modules->render('bottom', array('wrapper'=>"bottombox float-left", 'layout'=>$this->warp->config->get('bottom'))); ?>
<?php endif; ?>
<?php if($this->warp->modules->count('bottomblock')) : ?>
<div class="bottomblock width100 float-left">
<?php echo $this->warp->modules->render('bottomblock'); ?>
</div>
<?php endif; ?>
</div>
<!-- bottom end -->
<?php endif; ?>
<div id="footer">
<?php if ($this->warp->modules->count('footer + debug')) : ?>
<div class="footer-1">
<a class="anchor" href="#page"></a>
<?php echo $this->warp->modules->render('footer'); ?>
<?php echo $this->warp->modules->render('debug'); ?>
</div>
<?php endif; ?>
<div class="footer-b1">
<div class="footer-b2">
<div class="footer-b3">
</div>
</div>
</div>
</div>
<!-- footer end -->
</div>
</div>
</body>
</html>
Hoffe das es nicht zu viele codes hier im Betrag sind, entschuldige mich an dieser Stelle mal dafür![]()
Hatte die 500er Fehlermeldung eben im Mozilla leider wieder bekommen bei esl.de
LG Daniela
Hallo nochmal,
Ich habe leider ein zweites Problem beim Installieren des Plugins JCE_advlink_k2100.zip auf beiden Seiten.
Dies ist der Fehlertext der dann erscheint:
Warning: require_once(/kunden/279192_10969/Berlin-Studis.de/libraries/joomla/installer/adapters/extension.php) [function.require-once]: failed to open stream: No such file or directory in /kunden/279192_10969/Berlin-Studis.de/libraries/joomla/installer/installer.php on line 216
Fatal error: require_once() [function.require]: Failed opening required '/kunden/279192_10969/Berlin-Studis.de/libraries/joomla/installer/adapters/extension.php' (include_path='.:/usr/local/lib/php') in /kunden/279192_10969/Berlin-Studis.de/libraries/joomla/installer/installer.php on line 216
Hat jemand dazu ne Lösung?
Aus irgendeinem Grund zieht Joomla Dateien aus dem Verzeichnis /cache, das macht mich stutzig. Hast Du das Cache-Plugin deaktiviert? Alle Caches in Joomla geleert? Überprüfe das bitte per FTP, im Verzeichnis /cache sollte dann nur eine index.html bleiben, das ist korrekt.
Edit: es scheinen Dateien zu fehlen oder defekt zu sein, bitte bügele die komplette 1.5.20 drüber, bei beiden, ohne /installation.
Geändert von j!-n (06.09.2010 um 15:15 Uhr)
Joomla kaputt? Gehackt? Migration mißlungen? Datensalat?
www.joomla-notdienst.de - Soforthilfe & Webentwicklung
Einsteiger- FAQ - bitte lesen!
Hallo Christian,
hab über den Filezilla in den ordner /Erfolgreich-Sprachen-Lernen.de/cache geguckt und da sind so viele Ordner drin und die index.html
Ordner:
Template
mod_poll
mod_my_socialbookmark_1_7
mod_mostread
mod_mainmenu
mod_footer
mod_banner
_system
Soll ich die wirklich alle löschen?
Und noch etwas ist seltsam: in dem Root erscheint irgendwie immer ein neuer Ordner der Statistik heißt, der legt sich aber selbständig an, denn ich hab das nicht gemacht.
/Statistik mit dem Inhalt
.htaccess
/erfolgreich-sprachen-lernen.de
/berlin-studis.de
Der /cache Ordner ist aus beiden Verzeichnissen manuell gelöscht. Über joomla hatte ich das vorerst gemacht, wurde aber nicht im ftp server gelöscht...
Eine gute Tat am Tag, ich habe Danielas Installationen aufgeräumt bzw angepasst.
Joomla kaputt? Gehackt? Migration mißlungen? Datensalat?
www.joomla-notdienst.de - Soforthilfe & Webentwicklung
Einsteiger- FAQ - bitte lesen!
Lesezeichen