WebSite X5Help Center

 
Klaus G.
Klaus G.
User

Warning: Undefined variable $admin in /var/www/vhosts/handycaseshop.ch/massagepr  de

Автор: Klaus G.
Просмотрено 94, Подписчики 1, Размещенный 0  

Hallöle zusamme,

kann mir bitte jemand diese Fehlermeldung erklären.

Komme nicht ganz klar damit.

GRU?

KLAUS

Размещено
11 Ответы
Klaus G.
Klaus G.
User
Автор

Die Website liegt als TESTVERSION auf dem Server.

Читать больше
Размещено От Klaus G.
Andreas S.
Andreas S.
Moderator
Лучший пользователь месяца DE

Wo genau bekommst du diese Meldung?  Wenn du die dich einloggst ins Backend?

Читать больше
Размещено От Andreas S.
Klaus G.
Klaus G.
User
Автор

Guten Morgen,

das ist der Screenshot dazu.

Gruß

KLAUS

Читать больше
Размещено От Klaus G.
Klaus G.
Klaus G.
User
Автор

Die Meldung kommt direkt auf der Webseite.

Читать больше
Размещено От Klaus G.
Incomedia
Eric C.
Incomedia

Hello Klaus,
if the warning is visible like that it usually means that the display_errors PHP parameter is currently enabled.
It is recommended to keep it off when the website is active, and have warnings/errors displayed only in error logs, as even warnings that should not impact any functions could cause actual errors when left visible.

Eric

Online translation:

Hallo Klaus,
wenn die Warnung so sichtbar ist, bedeutet das normalerweise, dass der PHP-Parameter display_errors derzeit aktiviert ist.
Es wird empfohlen, ihn deaktiviert zu lassen, wenn die Website aktiv ist, und Warnungen/Fehler nur in Fehlerprotokollen anzuzeigen, da selbst Warnungen, die eigentlich keine Funktionen beeinträchtigen sollten, tatsächliche Fehler verursachen können, wenn sie sichtbar bleiben.

Eric

Читать больше
Размещено От Eric C.
Klaus G.
Klaus G.
User
Автор

Hallo Eric,

und wo stell ich das ab ???

Gruß

KLAUS

Читать больше
Размещено От Klaus G.
Incomedia
Eric C.
Incomedia

Hello Klaus,
it should be a parameter available on your hosting space control panel, or alternatively it should be possible to disable it by contacting your hosting support if you cannot find it.

Eric

Online translation:

Hallo Klaus,
es sollte ein Parameter sein, der in der Systemsteuerung Ihres Hosting-Bereichs verfügbar ist. Alternativ sollte es möglich sein, ihn zu deaktivieren, indem Sie den Support Ihres Hosting-Anbieters kontaktieren, falls Sie ihn nicht finden können.

Eric

Читать больше
Размещено От Eric C.
Klaus G.
Klaus G.
User
Автор

Hallöle nochmal,

aber was verursacht diese Fehlermeldung, diese war vorher nicht da. Musste einmal den Server Ordner leeren und seit dem kommt dieser Fehler ???

Danke

KLAUS

Читать больше
Размещено От Klaus G.
Klaus G.
Klaus G.
User
Автор

hier ist der Auszug aus der PHP ->x5engine.php

function getRatingsDataSummary() {
$c = $this->comments->getAll();
$vote = 0;
$votes = 0;
$votescount = 0;
$ratingByValue = array("1"=> 0, "2"=> 0, "3"=> 0, "4"=> 0, "5"=> 0);
$totalComments = 0;

if (count($c) > 0) {
foreach ($c as $comment) {
if ($comment['approved'] == "1" || $admin) {
if ( isset($comment['body']) ) {
$totalComments++;
if ( isset($comment['rating']) && $comment['rating'] > 0 ) {
$votes += $comment['rating'];
$votescount++;
$ratingByValue[$comment['rating']] = $ratingByValue[$comment['rating']] + 1;
}
}
}
}
$vote = $votescount > 0 ? $votes / $votescount : 0;
}

Читать больше
Размещено От Klaus G.
Incomedia
Eric C.
Incomedia

Hello Klaus,
could you archive the file in .zip format and attach it here?
Thank you.

Eric

Online translation:

Hallo Klaus,
könnten Sie die Datei im .zip-Format archivieren und hier anhängen?
Vielen Dank.

Eric

Читать больше
Размещено От Eric C.
Klaus G.
Klaus G.
User
Автор

Hier die Datei.

Gruß

Klaus

Читать больше
Размещено От Klaus G.