Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Profile.php keli error.

Parašė Nesąmonė.· 2010 Spa. 21 09:10:16
#1

Vaidinau vaidinau su profile.php ir prisivaidinau, bandžiau daryti pagal šią pamoką: https://webdnd.com/ban-trinti-re...ilyje,s133

Bet vis meta errorus ir klaidas tokias:


Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/eswc/domains/eswc.us.lt/public_html/profile.php on line 18

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/eswc/domains/eswc.us.lt/public_html/profile.php on line 18

Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/eswc/domains/eswc.us.lt/public_html/profile.php on line 18

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/eswc/domains/eswc.us.lt/public_html/profile.php on line 18

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/eswc/domains/eswc.us.lt/public_html/profile.php on line 19


Įdedu savo profile.php, galbūt kas nors galėsit sutvarkyti.


<?php
/*---------------------------------------------------+
| <span style="border-bottom: 1px dotted black;">PHP</span>-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| <a href='http://www.php-fusion.co.uk/' target='_blank'><span style='color:005C5B'>http://www.php-fusion.co.uk/</span></a>
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit <a href='http://gnu.org' target='_blank'><span style='color:005C5B'>http://gnu.org</span></a>
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
include LOCALE.LOCALESET."members-profile.php";
include LOCALE.LOCALESET."user_fields.php";
 
$locale[\'prof_01\'] = \"Uzbaninti\";
$locale[\'prof_02\'] = \"Atbaninti\";
$locale[\'prof_03\'] = \"Trinti\";
$locale[\'prof_04\'] = \"Jus tuo tikras?\";
$locale[\'prof_5\'] = \"Redaguoti\";
 
if (!isset($group_id)) {
    if (!isset($lookup) || !isNum($lookup)) fallback("index.php");
    $result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_id='$lookup'");
    if (dbrows($result)) { $data = dbarray($result); } else { redirect("index.php"); }
    opentable($locale['420']);
    echo "<table align='center' cellpadding='0' cellspacing='1' width='400' class='tbl-border'>
<tr>
<td colspan='3'>
<table align='center' cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='tbl2'><b>".$data['user_name']."</b></td>
<td align='right' class='tbl2'>".getuserlevel($data['user_level'])."</td>
</tr>
</table>
</td>
<tr>
<td align='center' width='150' rowspan='5' class='tbl2'>\n";
 
    echo ($data['user_avatar'] ? "<img src='".IMAGES."avatars/".$data['user_avatar']."' alt='".$locale['u017']."'>" : $locale['u046'])."</td>
<td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u009']."</b></td>
<td class='tbl1'>".($data['user_location'] ? $data['user_location'] : $locale['u048'])."</td>
</tr>
<tr>
<td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u010']."</b></td>
<td class='tbl2'>";
    if ($data['user_birthdate'] != "0000-00-00") {
        $months = explode("|", $locale['months']);
        $user_birthdate = explode("-", $data['user_birthdate']);
        echo $months[number_format($user_birthdate['1'])]." ".number_format($user_birthdate['2'])." ".$user_birthdate['0'];
    } else {
        echo $locale['u048'];
    }
    echo "</td>
</tr>
<tr>
<td width='1%' class='tbl1' style='white-space:nowrap'><b>Skype:</b></td>
<td class='tbl1'>
".($data['user_aim'] ? "
<a href='skype:".$data['user_aim']."?chat'><img src='http://mystatus.skype.com/smallclassic/".$data['user_aim']."' style='border: none;' width='114' height='20' alt='".$data['user_aim']."' /></a>" : $locale['u048'])."
</td>
</tr>
<tr>
<td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u011']."</b></td>
<td class='tbl2'>".($data['user_icq'] ? $data['user_icq'] : $locale['u048'])."</td>
</tr>
<tr>
<td width='1%' class='tbl1' style='white-space:nowrap'><b>".$locale['u012']."</b></td>
<td class='tbl1'>".($data['user_msn'] ? $data['user_msn'] : $locale['u048'])."</td>
</tr>
<tr>
<td align='center' class='tbl1'>\n";
    if ($data['user_hide_email'] != "1" || iADMIN) {
        echo "[<a href='mailto:".str_replace("@","&#64;",$data['user_email'])."' title='".str_replace("@","&#64;",$data['user_email'])."'>".$locale['u051']."</a>]\n";
    }
    if ($data['user_web']) {
        $urlprefix = !strstr($data['user_web'], "http://") ? "http://" : "";
        echo "[<a href='".$urlprefix.$data['user_web']."' title='".$urlprefix.$data['user_web']."' target='_blank'>".$locale['u052']."</a>]\n";
    }
    if (iMEMBER && $data['user_id'] != $userdata['user_id']) {
        echo "[<a href='messages.php?msg_send=".$data['user_id']."' title='".$locale['u060']."'>".$locale['u053']."</a>]\n";
    }
    echo "</td>
<td width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['u013']."</b></td>
<td class='tbl2'>".($data['user_yahoo'] ? $data['user_yahoo'] : $locale['u048'])."</td>
</tr>
</table>\n";
 
    if (checkrights(\"M\")) {
   //delete user
   if ($_POST[\'delete\']) {
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"users WHERE user_id=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"articles WHERE article_name=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"comments WHERE comment_name=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"messages WHERE message_to=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"messages WHERE message_from=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"news WHERE news_name=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"poll_votes WHERE vote_user=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"ratings WHERE rating_user=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"shoutbox WHERE shout_name=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"threads WHERE thread_author=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"posts WHERE post_author=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"thread_notify WHERE notify_user=\'$lookup\'\");
      $result = dbquery(\"DELETE FROM \".$db_prefix.\"warnings WHERE user_id=\'$lookup\'\");
   redirect(\"index.php\");
   }
   //ban
 
      if ($_POST[\'ban\']) {
   $result = dbquery(\"UPDATE \".$db_prefix.\"users SET user_status=1 WHERE user_id=\'$lookup\'\");
   redirect(FUSION_SELF.\"?lookup=$lookup\");
   }
   //unban
         if ($_POST[\'unban\']) {
   $result = dbquery(\"UPDATE \".$db_prefix.\"users SET user_status=0 WHERE user_id=\'$lookup\'\");
   redirect(FUSION_SELF.\"?lookup=$lookup\");
   }
   //form
 
   if ($data[\'user_status\'] == 1) { $act = unban; $title = $locale[\'prof_02\']; } else { $act = ban; $title = $locale[\'prof_01\']; }
   tablebreak();
   if ($data[\'user_level\'] == 101) {
   echo \"<table cellpadding=\'0\' cellspadding=\'0\' align=\'center\' width=\'400\' style=\'border: 1px solid #ccc;\'><tr>\";
 
   echo \"<td class=\'tbl1\'><form method=\'post\' action=\'\".ADMIN.\"members.php\".$aidlink.\"&step=edit&user_id=$lookup\'><center><input class=\'button\' value=\'\".$locale[\'prof_5\'].\"\' type=\'submit\' name=\'edit\' title=\'\".$locale[\'prof_5\'].\"\'></center></form></td>\";
   echo \"<td class=\'tbl1\'><form method=\'post\' action=\'\".FUSION_SELF.\"?lookup=$lookup\'><center><input class=\'button\' value=\'$title\' type=\'submit\' name=\'$act\' title=\'$title \".$locale[\'prof_09\'].\"\'  OnClick=\\\"if (confirm(\'\".$locale[\'prof_04\'].\"\')) return true; else return false;\\\"></center></form></td>\";
   echo \"<td class=\'tbl1\'><form method=\'post\' action=\'\".FUSION_SELF.\"?lookup=$lookup\'><center><input class=\'button\' value=\'\".$locale[\'prof_03\'].\"\' type=\'submit\' name=\'delete\' title=\'\".$locale[\'prof_03\'].\"\' OnClick=\\\"if (confirm(\'\".$locale[\'prof_04\'].\"\')) return true; else return false;\\\"></center></form></td>\";
 
 
 
 
   echo \"</tr></table>\";
 
 
   tablebreak();
   }
   }
 
    if ($data['user_groups']) {
        tablebreak();
        echo "<table align='center' cellpadding='0' cellspacing='1' width='400' class='tbl-border'>\n";
        echo "<tr>\n<td class='tbl2'><b>".$locale['423']."</b></td>\n\n</tr>\n<tr>\n<td class='tbl1'>\n";
        $user_groups = (strpos($data['user_groups'], ".") == 0 ? explode(".", substr($data['user_groups'], 1)) : explode(".", $data['user_groups']));
        for ($i = 0;$i < count($user_groups);$i++) {
            echo "<a href='".FUSION_SELF."?group_id=".$user_groups[$i]."'>".getgroupname($user_groups[$i])."</a>";
            if ($i != (count($user_groups)-1)) { echo ",\n"; } else { echo "\n"; }
        }
        echo "</td>\n</tr>\n</table>\n";
    }
} else {
    if (!isNum($group_id)) fallback("index.php");
    $result = dbquery("SELECT * FROM ".$db_prefix."user_groups WHERE group_id='$group_id'");
    if (dbrows($result)) {
        $data = dbarray($result);
        $result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_groups REGEXP('^\\\.{$group_id}$|\\\.{$group_id}\\\.|\\\.{$group_id}$') ORDER BY user_level DESC, user_name");
        opentable($locale['410']);
        echo "<table align='center' cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>
<tr>
<td align='center' colspan='2' class='tbl1'><b>".$data['group_name']."</b> (".sprintf((dbrows($result)==1?$locale['411']:$locale['412']), dbrows($result)).")</td>
</tr>
<tr>
<td class='tbl2'><b>".$locale['401']."</b></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><b>".$locale['402']."</b></td>
</tr>\n";
        while ($data = dbarray($result)) {
            $cell_color = ($i % 2 == 0 ? "tbl1" : "tbl2"); $i++;
            echo "<tr>\n<td class='$cell_color'>\n<a href='profile.php?lookup=".$data['user_id']."'>".$data['user_name']."</a></td>\n";
            echo "<td align='center' width='1%' class='$cell_color' style='white-space:nowrap'>".getuserlevel($data['user_level'])."</td>\n</tr>";
        }
        echo "</table>\n";
    } else {
        fallback(BASEDIR."index.php");
    }
}
closetable();
 
require_once "side_right.php";
require_once "footer.php";
?>