PhpFox - Edit Options error

Myrone

New Member
Hey,

Previously on my site i tried to install a template (which screwed everything up) - and when i finally decided that i did not like the whole aspect of the template i endevoured to remove it. For some reason - after having removed it (i can still view the template (in themes though)) my file structure got messed up, and for some reason in the admin panel i can not access the Edit Options, i just get a blank page!

Please help - I can give deets to my host site so it can be rectified. Please help asap!

I can not offer money but i can offer that you may be an ADMIN - and head of support - that is how desperate i am!
thnx
 
This is really a vBulletin forum, Though I guess you have merged vB with phpfox I would suggest you find a phpfox forum to get help as not many members here use both...

but on that note have you cleared the cache from the phpfox admin panel, I ran a phpfox site ages ago but gave up also because you uninstalled the style you have removed the phpfox header and footer code aswell which may also be apart of the problem.
 
Hey thanks, though but umm sorry - how would i restore the header of the panel..
Please help, cause i seemd not to find any proper phpfox forums, and this has been the closest!
 
how would i restore the header of the panel

No I mean the code you put in vB header and footer templates... make sure this is in your vb templates

open the template "footer" and find:

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

Add below:
HTML:
<br /><br />
		</td>
	</tr>
</table>

<table id="bottom3" cellpadding="5" cellspacing="5">
	<tr>
		<td style="vertical-align:center;font-size:7pt;">
			$_phpfox_footer
		</td>
	</tr>
</table></div>

Then open template header and find and remove:
HTML:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td align="$stylevar[align=left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td align="$stylevar[align=right]">
		&nbsp;
	</td>
</tr>
</table>
<!-- /logo -->

Then find in the same template:
HTML:
<!-- content table -->
$spacer_open

$_phpinclude_output


Above Add:
HTML:
 <div id="outer">
		<table id="top" cellpadding="0" cellspacing="0">
			<tr>
				<td>
					<table style="width:100%;" cellpadding="4" cellspacing="4">
						<tr>
							<td style="font-size:7pt;vertical-align:middle;">
								$_phpfox_messages
							</td>
							<td style="vertical-align:middle;text-align:right;font-size:7pt;">
								$_phpfox_top_menu
							</td>
						</tr>
					</table>
					<div class="top2">
						<table style="width:100%;" cellpadding="0" cellspacing="0">
							<tr>
								<td style="width:30%;font-size:14pt;vertical-align:middle;text-align:center;">
									<a href="../">
										<img src="$_phpfox_logo" alt="" />
									</a>
								</td>
								<td style="width:70%;vertical-align:middle;text-align:center;">
									$_phpfox_ad
								</td>
							</tr>
						</table>
					</div>
					<br />
				</td>
			</tr>
		</table>
		<div id="outer2">

			<table style="margin-left:auto;margin-right:auto;" cellpadding="0" cellspacing="0">
				<tr>
					$_phpfox_main_menu
				</tr>
			</table>
		</div>
		<table style="width:100%;" cellpadding="0" cellspacing="0">
			<tr>
				<td><div id="msalert"></div></td>

			</tr>
			<tr>
				<td style="vertical-align:top;" id="main">

Then open template headinclude and find:

HTML:
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed" href="external.php?type=RSS2&forumids=$foruminfo[forumid]" />
</if>
</if>


Below add:
HTML:
<link rel="stylesheet" type="text/css" href="$_phpfox_theme" />
					<script type="text/javascript" src="../javascript/"></script>
					<script type="text/javascript" src="../design/js/main.js"></script>
 
Back
Top