PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Archive Link führt zurück zur /forum/index.php


Marv
06.06.2004, 17:09
Kleines Problem, das nach dem Import von Beiträgen aus einem UBB und einigen zusätzlichen Links in die Footer-Zeile auftritt.
Der Footer lautet momentan auf :

<br />
<div class="smallfont" align="center">$vbphrase[all_times_are_gmt_x_time_now_is_y]</div>
<br />

$spacer_close
<!-- /content area table -->

<form action="$vboptions[forumhome].php" method="get">

<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="$stylevar[outertablewidth]" class="page" align="center">
<tr>
<if condition="$show['quickchooser']">
<td class="tfoot">
<select name="styleid" id="ressel" onchange="switch_styleid(this)">
<optgroup label="$vbphrase[quick_style_chooser]">
$quickchooserbits
</optgroup>
</select>
</td>
</if>
<td class="tfoot" align="$stylevar[right]">
<div class="smallfont">
<strong>
<a href="$vboptions[contactuslink]">$vbphrase[contact_us]</a> -
<a href="$vboptions[homeurl]">$vboptions[hometitle]</a> -
<a href="http://www.xxx.de/impressum">Impressum</a> -
<a href="http://www.xxx.de/disclaimer">Haftung</a> -
<a href="http://www.xxx.de/datenschutz">Datenschutz</a> -
<if condition="$show['admincplink']"><a href="$admincpdir/index.php?$session[sessionurl]">$vbphrase[admin]</a> -</if>
<if condition="$show['modcplink']"><a href="$modcpdir/index.php?$session[sessionurl]">$vbphrase[mod]</a> -</if>
<if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a> -</if>
<!-- - <a href="$vboptions[privacyurl]">$vbphrase[privacy_statement]</a> - -->
<a href="#top" onclick="self.scrollTo(0, 0); return false;">$vbphrase[top]</a>
</strong>
</div>
</td>
</tr>
</table>

<br />

<div align="center">
<div class="smallfont" align="center">
<!-- Do not remove this copyright notice -->
$vbphrase[powered_by_vbulletin]
<!-- Do not remove this copyright notice -->
</div>

<div class="smallfont" align="center">
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->

$vboptions[copyrighttext]
</div>
</div>

</form>

<if condition="$show['dst_correction']">
<!-- auto DST correction code -->
<form action="profile.php" method="post" name="dstform">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="dst" />
</form>
<script type="text/javascript">
<!--
var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
var utcOffset = new Date().getTimezoneOffset() / 60;
if (Math.abs(tzOffset + utcOffset) == 1)
{ // Dst offset is 1 so its changed
document.forms.dstform.submit();
}
//-->
</script>
<!-- / auto DST correction code -->
</if>

<script type="text/javascript">
<!--
// Main vBulletin Javascript Initialization
vBulletin_init();

// Initialize 'Active' Table Cells
//activecells_init();
//-->
</script>

Andere Veränderungen an den templates wurden - bsi auf die Breitenänderung des Forums - nicht durchgeführt.

Versteht jemand von euch, warum der Archiv-Link auf der /forumhome/index.php nun eben gerade nicht ins Archiv, sondern zurück auf die /forumhome/index.php führt ?

:confused: , Marvin

AlphaWolf
06.06.2004, 17:12
Das kann durch aus an deinem Server liegen. Hast du einen Root Server? Darf ich fragen bei welchem Anbieter du bist?

Marv
06.06.2004, 17:15
Der Server ist noch bei Puretec - allerdings nur zu Umzugszwecken und da das UBB dort installiert war. Mußte ich ja irgendwie ins vB importieren.

Allerdings funktionierte der Archiv-Link in der rohen Out-of-the-box-Installtion tadellos, wenn ich mich recht entsinne.

pogo
06.06.2004, 18:22
Bei puretec ist PHP als CGI Anwendung installiert. Dort geht der Archiv-Link nur so, wie du es gerade erfährst.
PHP muss als Apachemodul installiert sein. Sonst klappt es nur per Hack.

Marv
06.06.2004, 20:36
Okay, das erklärt das dann.
Dank Dir, pogo.