Diese Meldung kriege ich wenn ich ein Skript in meine Seite einbauen will.. wenn ihr mal schaut auf www.creativ-werkstatt-dueren.de und dort auf Ansicht klickt kriegt ihr den Fehler auch nochmal vor Augen.
Damit mir hier jemand wirklich helfen kann hier die Zeilen der relevanten Dateien :
a) index.php :
if($action=="ansicht")
{
if($gallery=="0")
{
include 'http://www.creativ-werkstatt-dueren.de/gallery.php';
}
if($gallery=="4")
{
include 'http://www.creativ-werkstatt-dueren.de/gallery.php?4';
}
if($gallery=="8")
{
include 'http://www.creativ-werkstatt-dueren.de/gallery.php?8';
}
else {
include 'http://www.creativ-werkstatt-dueren.de/gallery.php';
}
}
b) gallery.php :
<?php
/*****************************************************
** Title........: Gallery Script
** Filename.....: index.php
** Author.......: Ralf Stadtaus
** Homepage.....: http://www.stadtaus.com/
** Contact......: mailto:info@stadtaus.com
** Version......: 0.2
** Notes........:
** Last changed.: 2004-03-05
** Last change..:
*****************************************************/
/*****************************************************
** Settings - Einstellungen
*****************************************************/
$image_path = "images";
$image_url = "images";
$picture_count = "2";
$pictures_per_page = "4";
$order = "ascending";
$language = "de"; // en, de, es, fr, nl, da, sv
$global_template = "templates/index.html";
$cell_template = "templates/table.html";
$large_image_page = "window.php";
$path['log'] = "./log";
$logging_file = "";
$statistic_file = "";
/*****************************************************
** Add here further words, text, variables and stuff
** that you want to appear in the template.
*****************************************************/
$add_text = array(
'txt_additional' => 'Additional', // {txt_additional}
'txt_more' => 'More' // {txt_more}
);
/*****************************************************
** Do not edit below.
*****************************************************/
include ('./inc/gallery.inc.php');
?>
Man sieht sehr schnell das in der gallery.php in Zeile 1 lediglich der Eintrag "<php?" steht und sonst nix.
Ich hab nun keine Ahnung obs am include liegt oder wo ich weiter nach dem Fehler suchen soll.....
Wenn von euch jemand ne Idee hat, dann meldet euch mal.
Damit mir hier jemand wirklich helfen kann hier die Zeilen der relevanten Dateien :
a) index.php :
if($action=="ansicht")
{
if($gallery=="0")
{
include 'http://www.creativ-werkstatt-dueren.de/gallery.php';
}
if($gallery=="4")
{
include 'http://www.creativ-werkstatt-dueren.de/gallery.php?4';
}
if($gallery=="8")
{
include 'http://www.creativ-werkstatt-dueren.de/gallery.php?8';
}
else {
include 'http://www.creativ-werkstatt-dueren.de/gallery.php';
}
}
b) gallery.php :
<?php
/*****************************************************
** Title........: Gallery Script
** Filename.....: index.php
** Author.......: Ralf Stadtaus
** Homepage.....: http://www.stadtaus.com/
** Contact......: mailto:info@stadtaus.com
** Version......: 0.2
** Notes........:
** Last changed.: 2004-03-05
** Last change..:
*****************************************************/
/*****************************************************
** Settings - Einstellungen
*****************************************************/
$image_path = "images";
$image_url = "images";
$picture_count = "2";
$pictures_per_page = "4";
$order = "ascending";
$language = "de"; // en, de, es, fr, nl, da, sv
$global_template = "templates/index.html";
$cell_template = "templates/table.html";
$large_image_page = "window.php";
$path['log'] = "./log";
$logging_file = "";
$statistic_file = "";
/*****************************************************
** Add here further words, text, variables and stuff
** that you want to appear in the template.
*****************************************************/
$add_text = array(
'txt_additional' => 'Additional', // {txt_additional}
'txt_more' => 'More' // {txt_more}
);
/*****************************************************
** Do not edit below.
*****************************************************/
include ('./inc/gallery.inc.php');
?>
Man sieht sehr schnell das in der gallery.php in Zeile 1 lediglich der Eintrag "<php?" steht und sonst nix.
Ich hab nun keine Ahnung obs am include liegt oder wo ich weiter nach dem Fehler suchen soll.....
Wenn von euch jemand ne Idee hat, dann meldet euch mal.
Comment