Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Hawker

Pages: [1]
1
Installation, Update & Configuration / 4images und xampp 3.2.2
« on: May 30, 2016, 06:58:13 PM »
hallo habe mir vor ein paar tagen xampp zugelegt um meine homepage vorab zu bearbeiten
jetzt habe ich ein kleines / großes problem
immer wenn ich mich auf der hp versuche einzuloggen bekomme ich diese fehlermeldung
Quote
Fehler: Beschädigte Inhalte
Die Seite, die Sie anzusehen versuchen, kann nicht angezeigt werden, da ein Fehler in der Datenübertragung festgestellt wurde.
Die Seite, die Sie anzusehen versuchen, kann nicht angezeigt werden, da ein Fehler in der Datenübertragung festgestellt wurde.
Bitte kontaktieren Sie die Website-Betreiber, um sie über dieses Problem zu verständigen.
habe schon versucht herrauszufinden woran dies liegen könnte und denke das es an dem redirect in dem php files liegt
 
login.php
Code: [Select]
<?php

$main_template 
0;

$nozip 1;
define('ROOT_PATH''./');
include(
ROOT_PATH.'global.php');
require(
ROOT_PATH.'includes/sessions.php');

$error 0;
if (
$user_info['user_level'] != GUEST || empty($HTTP_POST_VARS['user_name']) || empty($HTTP_POST_VARS['user_password'])) {
  if (!
preg_match("/index\.php/"$url) && !preg_match("/login\.php/"$url) && !preg_match("/register\.php/"$url) && !preg_match("/member\.php/"$url)) {
    
redirect($url);
  }
  else {
    
redirect("index.php");
  }
}
else {
  
$user_name trim($HTTP_POST_VARS['user_name']);
  
$user_password trim($HTTP_POST_VARS['user_password']);
  
$auto_login = (isset($HTTP_POST_VARS['auto_login']) && $HTTP_POST_VARS['auto_login'] == 1) ? 0;

  if (
$site_sess->login($user_name$user_password$auto_login)) {
    if (!
preg_match("/index\.php/"$url) && !preg_match("/login\.php/"$url) && !preg_match("/register\.php/"$url) && !preg_match("/member\.php/"$url)) {
      
redirect($url);
    }
    else {
      
redirect("index.php");
    }
  }
  else {
    
$error $lang['invalid_login'];
  }
}
if (
$error) {
  
$main_template "error";
  include(
ROOT_PATH.'includes/page_header.php');
  
show_error_page($error);
}
?>
includes/funktions.php (ausschnitt)
Code: [Select]
function redirect($url) {
  global $script_url, $site_sess;
  if (strpos($url, '://') === false) {
    $url = $script_url.'/'.$url;
  }
  $location = @preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE')) ? 'Refresh: 0; URL=' : 'Location: ';
  if (is_object($site_sess)) {
    $url = $site_sess->url($url, "&");
  }
  header($location.$url);
  exit;
}

meine frage ist jetzt eigentlich ob ich noch irgend was in apache einstellen muss damit dieser redirect ohne probleme funktionier
denn auf dem eigentlichen web server klappt das ohne probleme
danke schonmal an alle die versuchen zu helfen

2
hi leute
bin gerade mein standart Templat etwas am umbauen und hab einen kleinen hänger auf der home seite villeicht hat ja einer eine bessere idee wie man das machen kann
hier könnt ihr gucken http://www.battle-station.de
es geht um die obere box der news ich komme einfach auf keinen nenner wie man das so gestalten kann das es vernünftig ausschaut
vorweg muss ich gestehen das ich nicht die größten html,php kenntnisse habe

bin für jeden guten vorschlag dankbar

so nun zum code
es müsste alles bei zeile 88 sein
Code: [Select]
{header}
<table width="90%" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>
    <td>
      <table width="100%" border="0" cellspacing="0" cellpadding="0" class="tablehead">
        <tr>
          <td width="100%" colspan="4"><table cellpadding="0" cellspacing="0" width="100%">
    <tr>
        <td width="6"><img src="{template_url}/images/header_top_left.gif" width="6" height="6" alt="" /></td>
        <td width="100%"><img src="{template_url}/images/header_top.gif" width="100%" height="6" alt="" /></td>
<td width="6"><img src="{template_url}/images/header_top_right.gif" width="6" height="6" alt="" /></td>
    </tr>
</table>
</td>
        </tr>
        <tr>
          <td width="6"><img src="{template_url}/images/header_left.gif" width="6" height="60" alt="" /></td>
          <td width="100%"><img src="{template_url}/images/header_logo.gif" width="405" height="60" alt="" /></td>
          <td width="225" align="right">
            <form method="post" action="{url_search}">
              <table border="0" cellspacing="0" cellpadding="1">
                <tr>
                  <td>
                    <input type="text" name="search_keywords" size="15" class="searchinput" />
                  </td>
                  <td>
                    <input type="submit" value="{lang_search}" class="button" name="submit" />
                  </td>
                </tr>
                <tr valign="top">
                  <td colspan="2"><a href="{url_search}" class="smalltext">{lang_advanced_search}</a></td>
                </tr>
              </table>
            </form>
          </td>
          <td align="right" width="6"><img src="{template_url}/images/header_right.gif" width="6" height="60" alt="" /></td>
        </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td class="bordercolor">
      <table width="100%" border="0" cellspacing="1" cellpadding="0">
        <tr>
          <td class="tablebgcolor">
            <table width="100%" border="0" cellspacing="1" cellpadding="0">
              <tr>
                <td class="navbar" height="23">
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td><img src="{template_url}/images/spacer.gif" width="4" height="4" alt="" />{clickstream}</td>
                      <td align="right">
<a href="{url_top_images}"><b>{lang_top_images}</b></a>&nbsp;
<a href="{url_new_images}"><b>{lang_new_images}</b></a>&nbsp;
  </td>
                    </tr>
                  </table>
                </td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="150" class="row2" valign="top">
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td class="head2" height="20"><img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />{lang_registered_user}</td>
                    </tr>
                    <tr>
                      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    </tr>
                    <tr>
                      <td align="center" class="row1">{user_box}</td>
                    </tr>
                    <tr>
                      <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    </tr>
                  </table>

                </td>
                <td width="1" class="bordercolor" valign="top"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                <td width="18" valign="top" nowrap><img src="{template_url}/images/spacer.gif" alt="" width="18" height="18" /></td>
                <td width="100%" valign="top">
  <br />
                  <span class="title">{site_name}</span>
  <br />
  <hr size="1" />
  <br />
                  {if categories}{if news}
                  <table width="100%" border="0" cellspacing="0" cellpadding="1">
                    <tr>
                      <td>
                        <table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td  style="border: 1px solid #ffffff;" width="60%" class="head1" valign="top">{lang_news_main}</td>
<td width="2%" class="tablebgcolor" valign="top"></td>
<td style="border: 1px solid #004C75;" width="40%" class="head1" valign="top">{lang_categories}</td>
</tr>
                        <tr>
    <td style="border: 1px solid #ffffff;" width="60%" class=""  valign="top">{content}{paging}</td>
<td width="2%" class="tablebgcolor" valign="top"></td>
<td style="border: 1px solid #004C75;"  width="40%" class="row2" valign="top">{categories}</td>
                        </tr>
                   </table>
                      </td>
                    </tr>
                  </table>
  {admin_links_add}
<br />
                  {endif categories}{endif news}
                  <br />
                  {if msg}<b>{msg}</b><br /><br />{endif msg}
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td class="head1">
                        <table width="100%" border="0" cellspacing="0" cellpadding="4">
                          <tr>
                            <td class="head1" valign="top">{lang_new_images}</td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                    <tr>
                      <td class="head1">{new_images}</td>
                    </tr>
                  </table>
  <br />
  <hr size="1" />
                  <br />
  {whos_online}
  <br />
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr>
                      <td>{category_dropdown_form}</td>
                      <td align="right">{setperpage_dropdown_form}</td>
                    </tr>
                  </table>
                  <p>&nbsp;</p>
                </td>
                <td width="19" valign="top" nowrap><img src="{template_url}/images/spacer.gif" alt="" width="19" height="19" /></td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td>
      <table width="100%" border="0" cellspacing="0" cellpadding="0" class="tablebottom">
        <tr>
          <td width="6" nowrap><img src="{template_url}/images/footer_left.gif" width="6" height="19" alt="" /></td>
          <td width="100%"></td>
          <td width="6" nowrap><img src="{template_url}/images/footer_right.gif" width="6" height="19" alt="" /></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
{footer}

3
Installation, Update & Configuration / hochformat Bilder quer?
« on: May 08, 2016, 09:42:21 AM »
Kann gelöscht werden hat sich erledigt war ein bild problem

Pages: [1]