Posted: Sun 30. Oct 2005, 11:50
doch, müsste kann sein, dass das etwas dauert
Oliver
Oliver
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
Code: Select all
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000">
<?php echo $text ?><br />If you should not redirected within 10 seconds <a href="<?php echo $phpwcms["site"] ?>">click here</a>.
Code: Select all
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000">
<?php echo $text ?><br />Wenn Sie nicht innerhalb von 10 Sekunden weitergeleitet werden, <a href="<?php echo $phpwcms["site"].$phpwcms["root"]."index.php" ?>">klicken Sie bitte hier</a>.
Wo finde ich denn nun die Lösung des Problem? Und es wäre auch eine kurze Erläuterung schön gewesen, damit man weiß, woran man hier gearbeitet hat! Vielleicht auch eine Anleitung, was man wo einpflegen soll.jscholtysik wrote:Hallo Oliver,
wo ist das SITE und ROOT Problem gelöst...? Im CVS liegt noch keine Änderung...
Joachim
Code: Select all
// define the real path of the phpwcms installation
// important to script that must know the real path to files or something else
if(!empty($phpwcms["root"])) {
$phpwcms['DOC_ROOT'] .= '/'.$phpwcms["root"];
$phpwcms["root"] .= '/';
}
Code: Select all
define ('PHPWCMS_URL', $phpwcms["site"].$phpwcms["root"]);
Code: Select all
?><html>
<head>
<title>phpwcms: newsletter verify/delete</title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo PHPWCMS_CHARSET ?>">
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="refresh" content="10;URL=<?php echo PHPWCMS_URL ?>">
<style type="text/css">
<!--
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
}
-->
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000">
<?php echo $text ?><br />If you should not redirected within 10 seconds <a href="<?php echo PHPWCMS_URL ?>">click here</a>.
</body>
</html>
Code: Select all
$phpwcms["site"].$phpwcms["root"]