Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 05-17-2008, 06:11 PM
PH03N1X PH03N1X is offline
 
Join Date: Sep 2007
Posts: 35
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello
I am having a problem with posting I made an admin control php page so I can configure settings with my script but when P push save it will display the log screen to login to admin control panel even though I am logged in.
here is my code for the configuration script.
Code:
<?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### PRE-CACHE TEMPLATES AND DATA ######################
$phrasegroups = array(
	'timezone',
	'user',
	'cpuser',
	'holiday',
	'cppermission',
	'cpoption',
);

$specialtemplates = array(
	'banemail',
);

// ########################## REQUIRE BACK-END ############################
require_once('./global.php');

require_once(DIR . '/includes/adminfunctions_misc.php');

$vbulletin->input->clean_array_gpc('r', array(
	'varname' => TYPE_STR,
	'dogroup' => TYPE_STR,
));

// ######################## CHECK ADMIN PERMISSIONS #######################
if (!can_administer('canadminsettings'))
{
	print_cp_no_permission();
}

// ############################# LOG ACTION ###############################
log_admin_action();

// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################

if ($_REQUEST['do'] == "forum") {
	$id = $vbulletin->db->query_first("SELECT graveyard_id FROM " . TABLE_PREFIX . "dlc_config LIMIT 1;");
	header( "Location: ../forumdisplay.php?f={$id['graveyard_id']}");
	exit();
}
print_cp_header($vbphrase['dlc_config_title']);

if ($_REQUEST['do'] == "config") {
	$settings = $vbulletin->db->query_first("SELECT graveyard, graveyard_id, pmUID, pmUNA, acheck, alast, pmSub, pmMsg FROM " . TABLE_PREFIX . "dlc_config LIMIT 1;");
	echo "<form action=\"$PHP_SELF\" method=\"post\"><input type=\"hidden\" name=\"do\" value=\"save\">
	<table cellpadding=\"4\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"90%\" class=\"tborder\" id=\"groupForm_table\">
	<tr>
		<td class=\"tcat\" align=\"center\" colspan=\"2\">
			<b>Dead Link Checker Forum Configurations</b>
		</td>
	</tr>
	<tr valign=\"top\">
		<td class=\"alt1\">
			<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
				<tr>
					<td width=\"160px\"valign=\"top\" align=\"right\">GraveYard Forum:</td>
					<td valign=\"top\" align=\"left\">&nbsp;<input type=\"text\" value=\"{$settings['graveyard']}\" name=\"graveyard\" size=\"40\"></td>
				</tr>
				<tr>
					<td width=\"160px\"valign=\"top\" align=\"right\">Check</td>
					<td valign=\"top\" align=\"left\">&nbsp;<input type=\"text\" value=\"{$settings['acheck']}\" name=\"acheck\" size=\"2\"> threads (it is best to check less than 50)</td>
				</tr>
			</table>
		</td>
	</tr>
	</table><br>
	<table cellpadding=\"4\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"90%\" class=\"tborder\" id=\"groupForm_table\">
	<tr>
		<td class=\"tcat\" align=\"center\" colspan=\"2\">
			<b>Dead Link Checker Private Message Configurations</b>
		</td>
	</tr>
	<tr valign=\"top\">
		<td class=\"alt1\">
			<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
				<tr>
					<td width=\"160px\"valign=\"top\" align=\"right\"> Send Message From:</td>
					<td valign=\"top\" align=\"left\">&nbsp;<input type=\"text\" value=\"{$settings['pmUNA']}\" name=\"pmUNA\" size=\"40\"></td>
				</tr>
				<tr>
					<td width=\"160px\"valign=\"top\" align=\"right\">Send Message From ID:</td>
					<td valign=\"top\" align=\"left\">&nbsp;<input type=\"text\" value=\"{$settings['pmUID']}\" name=\"pmUID\" size=\"40\"></td>
				</tr>
				<tr>
					<td width=\"160px\"valign=\"top\" align=\"right\">Message Subject:</td>
					<td valign=\"top\" align=\"left\">&nbsp;<input type=\"text\" value=\"{$settings['pmSub']}\" name=\"pmSub\" size=\"40\"></td>
				</tr>
				<tr>
					<td width=\"160px\"valign=\"top\" align=\"right\">Message:</td>
					<td valign=\"top\" align=\"left\">&nbsp;<textarea rows=\"6\" cols=\"40\" name=\"pmMsg\">{$settings['pmMsg']}</textarea></td>
				</tr>
			</table>
			%t_name = The name of the thread that the link is in.<br>
			%URL = The url of the dead link.<br>
			%User = The username of the thread starter.
		</td>
	</tr>
	</table>
	<center><input type=\"submit\" value=\"Save\" style=\"background:#EEEEEE;width:60px;font-size:15px;\"></center>
	</form>";
}

if ($_REQUEST['do'] == "save") {
	$graveyardName = isset($_REQUEST['graveyard']) ? trim($_REQUEST['graveyard']) : "";
	$acheck = isset($_REQUEST['acheck']) ? trim($_REQUEST['acheck']) : "";
	
	$pmUNA = isset($_REQUEST['pmUNA']) ? trim($_REQUEST['pmUNA']) : "";
	$pmUID = isset($_REQUEST['pmUID']) ? trim($_REQUEST['pmUID']) : "";
	$pmSub = isset($_REQUEST['pmSub']) ? trim($_REQUEST['pmSub']) : "";
	$pmMsg = isset($_REQUEST['pmMsg']) ? trim($_REQUEST['pmMsg']) : "";
	
	if ($graveyardName=="" or $acheck=="" or $pmUNA=="" or $pmUID=="" or $pmSub=="" or $pmMsg=="") {
		echo "<table cellpadding=\"4\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"90%\" class=\"tborder\" id=\"groupForm_table\">
		<tr>
			<td class=\"tcat\" align=\"center\" colspan=\"2\">
				<b>Dead Link Checker - Save Falled</b>
			</td>
		</tr>
		<tr valign=\"top\">
			<td class=\"alt1\">
				<center>You may have left some fields out please <a href=\"javascript:history.back()\">go back</a> and check</center>
			</td>
		</tr>
		</table>";
	} else {
		$graveyard = $vbulletin->db->query_first("SELECT forumid, title FROM " . TABLE_PREFIX . "forum WHERE title = '$graveyardName'");
		if (!$graveyard) {
			echo "<table cellpadding=\"4\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"90%\" class=\"tborder\" id=\"groupForm_table\">
			<tr>
				<td class=\"tcat\" align=\"center\" colspan=\"2\">
					<b>Dead Link Checker - Save Falled</b>
				</td>
			</tr>
			<tr valign=\"top\">
				<td class=\"alt1\">
					<center>There was no forum with the name of $graveyardName<br><a href=\"javascript:history.back()\">go back</a> and make it the exact name</center>
				</td>
			</tr>
			</table>";
		} else {
			if (!preg_match('/^\d+$/', $acheck)) {
				echo "<table cellpadding=\"4\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"90%\" class=\"tborder\" id=\"groupForm_table\">
				<tr>
					<td class=\"tcat\" align=\"center\" colspan=\"2\">
						<b>Dead Link Checker - Save Falled</b>
					</td>
				</tr>
				<tr valign=\"top\">
					<td class=\"alt1\">
						<center>The amount of threads to check is not a digit please <a href=\"javascript:history.back()\">go back</a> and fix this</center>
					</td>
				</tr>
				</table>";
			} else {
				if (!preg_match('/^\d+$/', $pmUID)) {
					echo "<table cellpadding=\"4\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"90%\" class=\"tborder\" id=\"groupForm_table\">
					<tr>
						<td class=\"tcat\" align=\"center\" colspan=\"2\">
							<b>Dead Link Checker - Save Falled</b>
						</td>
					</tr>
					<tr valign=\"top\">
						<td class=\"alt1\">
							<center>The user id of the private message sender is not a digit please <a href=\"javascript:history.back()\">go back</a> and fix this</center>
						</td>
					</tr>
					</table>";
				} else {
					echo "<table cellpadding=\"4\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"90%\" class=\"tborder\" id=\"groupForm_table\">
					<tr>
						<td class=\"tcat\" align=\"center\" colspan=\"2\">
							<b>Dead Link Checker - Saving</b>
						</td>
					</tr>";
					$graveyard_id = intval($graveyard['forumid']);
					$gravetard_na = "{$graveyard['title']}";
					$vbulletin->db->query("UPDATE " . TABLE_PREFIX . "dlc_config SET graveyard = '".str_replace("'", "\'", $gravetard_na)."', graveyard_id = {$graveyard_id}, acheck = {$acheck}, pmUNA = '".str_replace("'", "\'", $pmUNA)."', pmUID = {$pmUID}, pmSub = '".str_replace("'", "\'", $pmSub)."', pmMsg = '".str_replace("'", "\'", $pmMsg)."' LIMIT 1;");
					echo "<tr valign=\"top\">
						<td class=\"alt1\">
							<center>Dead Link Checker's Configuration Has Been Sucessfully Saved.<br>Please wait...<meta http-equiv=\"refresh\" content=\"2; url=dlc.php?do=config\"></center>
						</td>
					</tr>
					</table>";
				}
			}
		}
	}
}

echo "<p align=\"center\">Copyright &copy;2008, Mr. Gecko.</p>
</div>
</body>
</html>";
?>
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:33 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04437 seconds
  • Memory Usage 2,360KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (2)post_thanks_box
  • (2)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit_info
  • (2)postbit
  • (2)postbit_onlinestatus
  • (2)postbit_wrapper
  • (1)showthread_list
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_threadedmode.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids_threaded
  • showthread_threaded_construct_link
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete