Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Help! Custom Pages re-directs me to news.php! :|

Asked Modified Viewed 1,011 times
O
ondi
O
ondi 10
  • Junior Member, joined since
  • Contributed 10 posts on the community forums.
  • Started 6 threads in the forums
  • Started this discussions
asked
Junior Member

When i am in the admin section and i go to edit a custom page, (administrator/custom_pages.php) I get redirected to site.com/news.php Its REALLY annoying!

Here is my code for custom_pages.php if it helps..

//Moderator: put in [ code ] tags
<?php
/*---------------------------------------------------+
| PHPFusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "../maincore.php";
require_once "subheader.php";
require_once ADMIN."navigation.php";
include LOCALE.LOCALESET."admin/custom_pages.php";
echo "<script language='javascript' type='text/javascript'>advanced();</script>";

if (!checkrights("CP") || !defined("iAUTH") || $aid != iAUTH) fallback("../index.php");
if (isset($page_id) && !isNum($page_id)) fallback("index.php");
if ($settings['tinymce_enabled'] == 1) echo "<script type='text/javascript'>advanced();</script>\n";

if (isset($status)) {
   if ($status == "su") {
      $title = $locale['400'];
      $message = "<b>".$locale['401']."</b><br>\n".$locale['402']."\n<a href='".BASEDIR."viewpage.php?page_id=$pid'>viewpage.php?page_id=$pid</a>\n";
   } elseif ($status == "sn") {
      $title = $locale['405'];
      $message = "<b>".$locale['406']."</b><br>\n".$locale['402']."\n<a href='".BASEDIR."viewpage.php?page_id=$pid'>viewpage.php?page_id=$pid</a>\n";
   } elseif ($status == "del") {
      $title = $locale['407'];
      $message = "<b>".$locale['408']."</b>";
   }
   opentable($title);
   echo "<div align='center'>".$message."</div>\n";
   closetable();
   tablebreak();
}

if (isset($_POST['save'])) {
   $page_title = stripinput($_POST['page_title']);
   $page_access = isNum($_POST['page_access']) ? $_POST['page_access'] : "0";
   $page_content = addslash($_POST['page_content']);
   $comments = isset($_POST['page_comments']) ? "1" : "0";
   $ratings = isset($_POST['page_ratings']) ? "1" : "0";
   if (isset($page_id)) {
      $result = dbquery("UPDATE ".$db_prefix."custom_pages SET page_title='$page_title', page_access='$page_access', page_content='$page_content', page_allow_comments='$comments', page_allow_ratings='$ratings' WHERE page_id='$page_id'");
      redirect(FUSION_SELF.$aidlink."&status=su&pid=$page_id");
   } else {
      $result = dbquery("INSERT INTO ".$db_prefix."custom_pages (page_title, page_access, page_content, page_allow_comments, page_allow_ratings) VALUES ('$page_title', '$page_access', '$page_content', '$comments', '$ratings')");
      $page_id = mysql_insert_id();
      if (isset($_POST['add_link'])) {
         $result = dbquery("SELECT * FROM ".$db_prefix."site_links ORDER BY link_order DESC LIMIT 1");
         $data = dbarray($result);
         $link_order = $data['link_order'] + 1;
         $result = dbquery("INSERT INTO ".$db_prefix."site_links (link_name, link_url, link_visibility, link_position, link_window, link_order) VALUES ('$page_title', 'viewpage.php?page_id=$page_id', '$page_access', '1', '0', '$link_order')");
      }
      redirect(FUSION_SELF.$aidlink."&status=sn&pid=$page_id");
   }
} else if (isset($_POST['delete'])) {
   $result = dbquery("DELETE FROM ".$db_prefix."custom_pages WHERE page_id='$page_id'");
   $result = dbquery("DELETE FROM ".$db_prefix."site_links WHERE link_url='viewpage.php?page_id=$page_id'");
   redirect(FUSION_SELF.$aidlink."&status=del");
} else {
   if (isset($_POST['preview'])) {
      $addlink = isset($_POST['add_link']) ? " checked" : "";
      $page_title = stripinput($_POST['page_title']);
      $page_access = $_POST['page_access'];
      $page_content = $_POST['page_content'];
      $page_content = stripslash($page_content);
      $comments = isset($_POST['page_comments']) ? " checked" : "";
      $ratings = ($_POST['page_ratings']) ? " checked" : "";
      opentable($page_title);
      eval("?>".$page_content."<?php ");
      closetable();
      tablebreak();
      //$page_content = stripinput((QUOTES_GPC ? addslashes($page_content) : $page_content));
      $page_content = phpentities($page_content);
   }
   $editlist = ""; $sel = "";
   $result = dbquery("SELECT * FROM ".$db_prefix."custom_pages ORDER BY page_title DESC");
   if (dbrows($result) != 0) {
      while ($data = dbarray($result)) {
         if (isset($page_id)) $sel = ($page_id == $data['page_id'] ? " selected" : "");
         $editlist .= "<option value='".$data['page_id']."'$sel>".$data['page_title']."</option>\n";
      }
   }
   opentable($locale['420']);
   echo "<form name='selectform' method='post' action='".FUSION_SELF.$aidlink."'>
<center>
<select name='page_id' class='textbox' style='width:200px;'>
$editlist</select>
<input type='submit' name='edit' value='".$locale['421']."' class='button'>
<input type='submit' name='delete' value='".$locale['422']."' onclick='return DeletePage();' class='button'>
</center>
</form>\n";
   closetable();
   tablebreak();
   if (isset($_POST['edit'])) {
      $result = dbquery("SELECT * FROM ".$db_prefix."custom_pages WHERE page_id='$page_id'");
      if (dbrows($result) != 0) {
         $data = dbarray($result);
         $page_title = $data['page_title'];
         $page_access = $data['page_access'];
         //$page_content = stripinput((QUOTES_GPC ? $data['page_content'] : stripslashes($data['page_content'])));
         $page_content = phpentities(stripslashes($data['page_content']));
         $comments = ($data['page_allow_comments'] == "1" ? " checked" : "");
         $ratings = ($data['page_allow_ratings'] == "1" ? " checked" : "");
         $addlink = "";
      }
   }
   if (isset($page_id)) {
      $action = FUSION_SELF.$aidlink."&amp;page_id=$page_id";
      opentable($locale['400']);
   } else {
      if (!isset($_POST['preview'])) {
         $page_title = "";
         $page_access = "";
         $page_content = "";
         $comments = " checked";
         $ratings = " checked";
         $addlink = "";
      }
      $action = FUSION_SELF.$aidlink;
      opentable($locale['405']);
   }
   $user_groups = getusergroups(); $access_opts = ""; $sel = "";
   while(list($key, $user_group) = each($user_groups)){
      $sel = ($page_access == $user_group['0'] ? " selected" : "");
      $access_opts .= "<option value='".$user_group['0']."'$sel>".$user_group['1']."</option>\n";
   }
   echo "<form name='inputform' method='post' action='$action' onSubmit='return ValidateForm(this);'>
<table align='center' cellpadding='0' cellspacing='0'>
<tr>
<td width='100' class='tbl'>".$locale['430']."</td>
<td width='80%' class='tbl'><input type='text' name='page_title' value='$page_title' class='textbox' style='width: 250px;'>
&nbsp;".$locale['431']."<select name='page_access' class='textbox' style='width:150px;'>
$access_opts</select></td>
</tr>
<tr>
<td valign='top' width='100' class='tbl'>".$locale['432']."</td>
<td width='80%' class='tbl'><textarea name='page_content' cols='120' rows='45' class='textbox'>$page_content</textarea></td>
</tr>
<tr>
<td class='tbl'></td><td class='tbl'>
<script language='javascript' type='text/javascript' src='".INCLUDES."jscripts/tiny_mce/tiny_mce_gzip.php'></script>
<script type='text/javascript'>
function advanced() {
   tinyMCE.init({
    mode : 'textareas',
   theme : 'advanced',
plugins : 'safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template',
theme_advanced_buttons1 : 'save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect',
theme_advanced_buttons2 : 'cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor',
theme_advanced_buttons3 : 'tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen',
theme_advanced_buttons4 : 'insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak',
theme_advanced_toolbar_location : 'top',
theme_advanced_toolbar_align : 'left',
theme_advanced_path_location : 'bottom',
theme_advanced_resizing : true,
extended_valid_elements : 'a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]',
template_external_list_url : 'example_template_list.js'});
}
function simple() {
   tinyMCE.init({
   mode:'textareas',
   theme:'simple',
   language:'en',
   convert_newlines_to_brs:'true',
   force_br_newlines:'true',
   force_p_newlines:'false'
   });
}

function showtiny(EditorID) {
   tinyMCE.removeMCEControl(tinyMCE.getEditorId(EditorID));
   tinyMCE.addMCEControl(document.getElementById(EditorID),EditorID);
}

function hidetiny(EditorID) {
   tinyMCE.removeMCEControl(tinyMCE.getEditorId(EditorID));
}
</script>


</td>
</tr>
<tr>
<td class='tbl'></td><td class='tbl'><br>\n";
   if (!isset($page_id)) echo "<input type='checkbox' name='add_link' value='1'$addlink>  ".$locale['433']."<br>\n";
   echo "<input type='checkbox' name='page_comments' value='1'$comments> ".$locale['434']."<br>
<input type='checkbox' name='page_ratings' value='1'$ratings> ".$locale['435']."
</td>
</tr>
<tr>
<td align='center' colspan='2' class='tbl'><br>
<input type='submit' name='preview' value='".$locale['436']."' class='button'>
<input type='submit' name='save' value='".$locale['437']."' class='button'></td>
</tr>
</table>
</form>\n";
   closetable();
   echo "<script type='text/javascript'>
function DeletePage() {
   return confirm('".$locale['409']."');
}
function ValidateForm(frm) {
   if(frm.page_title.value=='') {
      alert('".$locale['410']."');
      return false;
   }
}
</script>\n";
}
echo "<script language='javascript' type='text/javascript'>advanced();</script>\n";
echo "</td>\n";
require_once BASEDIR."footer.php";
?>
Edited by Sveinungs on 20-01-2008 21:06,
0 replies
There are no post found.

Labels

None yet

Statistics

  • Views 0 views
  • Posts 0 posts
  • Votes 0 votes
  • Topic users 1 member

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet