Hallo
Ich benutze das WebYep-System für eine neu zu entwickelnde Webseite. Dieses CMS verlangt, dass man einen INIT Code an erster Stelle schreibt.
<?php // WebYep init WebYepV1/* ><table><tr><td bgcolor=white><h2>WebYep message: Error, PHP inactive</h2>
<font color=red>The PHP code in this page can not be executed!<ul>
<li>Are you launching this page directly form your harddisc (e.g. via Dreamweavers
"Preview in Browser" instead of accessing it via a webserver?</li>
<li>Has this file the correct file extension for PHP scripts?
WebYep pages must have the ".php" extension and <b>not</b> ".html" or ".htm"!</li>
</ul></font></td></tr></table><!--
*/
$webyep_sIncludePath = "./";
$iDepth = 0;
while (!file_exists($webyep_sIncludePath . "webyep-system")) {
$iDepth++;
if ($iDepth > 10) {
error_log("webyep-system folder not found!", 0);
echo "<html><head><title>WebYep</title></head><body><b>WebYep:</b> This page can not be displayed <br>Problem: The webyep-system folder was not found!</body></html>";
exit;
}
$webyep_sIncludePath = ($webyep_sIncludePath == "./") ? ("../"):("$webyep_sIncludePath../");
}
if (file_exists("${webyep_sIncludePath}webyep-system/programm")) $webyep_sIncludePath .= "webyep-system/programm";
else $webyep_sIncludePath .= "webyep-system/program";
include("$webyep_sIncludePath/webyep.php"); // -->?>
Alles anzeigen
Ok. Nun soll ich ein Kontaktformular erstellen. All die Formulare, die mittels PHP funktionieren, haben ihren Code innerhalb der Kontakt-Seite. Wenn ich den INIT Code ebenfalls drin lasse, funktioniert nichts mehr - logischerweise.
Deshalb brauche ich ein php-script welches ausserhalb des Kontaktformulares die Daten des Formularen bearbeitet. nach langer suche frage ich nun euch: (auch wegen der SICHERHEIT, denn ich kenne mich in PHP nicht aus und könnte nicht SICHERHEITEN einbauen): Wo finde ich ein solches SICHERES Script? Was könntet ihr mir empfählen?
Denn ohne INIT Code funktioniert das CMS nicht - und damit ist auch die Navigation unbrauchbar.
Danke für eure Hilfe
Romacasa