Thread: error
View Single Post
  #1  
Old 5th February 2009, 14:45
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default error
hi we are getting error method when trying to contact a staff member

contactstaff.php
PHP Code:
<?

require "include/bittorrent.php";

dbconn(false);

loggedinorreturn();

stdhead("Contact Staff"false);
echo 
"<h1>Send message to Staff</h1>";
?>
<h2><img src="http://super-ip.co.uk/images/notification_the_e.gif" alt="" align="top" border="0" width="14" height="14"><font color=black>Contact staff asking for Technical Help, or questions yet answered in the </font><a href="http://super-ip.co.uk/forums/"><font color=red>Forums</font></a><font color=black> please only contact the Sysop for very important matters, otherwise use the proper ways to get help </font><br><font color=black> All software support questions and those already answered in the </font><a href="faq.php"><font color=red>FAQ</font></a><font color=black> will be ignored.</font><h2>
<?
begin_frame
("Contact Staff",true,5,450);
?>
<form method="post" name="message" action="takecontact.php">
<?begin_table();?>
<tr><td class="row2"<?=$replyto?" colspan=\"2\"":""?>>
<? if ($_GET["returnto"] || $_SERVER["HTTP_REFERER"]) { ?>
<input type="hidden" name="returnto value=<?=$_GET["returnto"] ? $_GET["returnto"] : $_SERVER["HTTP_REFERER"]?>"/>
<? ?>
Subject <input type="text" size="74" name="subject"/><br/><br/>
<?
textbbcode
("message","msg","$body");
?>
<tr><td class="row2" align="center"><input type="submit" value="Send it!" class="btn"/></td></tr>
<?end_table();?>
</form>
<script type="text/javascript">
//configure the below five variables to change the style of the scroller
var scrollerdelay='8000' //delay between msg scrolls. 3000=3 seconds.
var scrollerwidth='300px'
var scrollerheight='105px'
var scrollerbgcolor='#F7F7F7'
//set below to '' if you don't wish to use a background image
var scrollerbackground=''

//configure the below variable to change the contents of the scroller
var messages=new Array()
messages[0]="<font face='Arial'><B><BR>IN AN EFFORT TO PROVIDE YOU WITH THE BEST SUPPORT WE WILL BE USING THIS SPACE FOR QUICK REFRANCE TO FIX'S FOR CURRENT AND COMMON ISSUES<BR><BR>THANK YOU FOR MAKING SI #1</B></font>"
messages[1]="<font face='Arial'><B><BR>YOU CAN NOW FLUSH YOUR TORRENTS IN YOUR PROFILE <BR><BR>JUST CLICK ON YOUR NAME IN THE TOP LEFT CORNER AND THEN CLICK ON FLUSH TORRENTS!</B></font>"
messages[2]="<font face='Arial'><B><BR>IN AN EFFORT TO PROVIDE YOU WITH THE BEST SUPPORT WE WILL BE USING THIS SPACE FOR QUICK REFRANCE TO FIX'S FOR CURRENT AND COMMON ISSUES<BR><BR>THANK YOU FOR MAKING SI #1</B></font>"
messages[3]="<font face='Arial'><B><BR>Tracker status says: Error: Tracker Response Error:Port 6881 is blacklisted.. What shall i do???<BR><BR><a href='http://www.super-inferno.com/faq.php#90'>CLICK HERE TO FIND OUT!!!</a></B></font>"
messages[4]="<font face='Arial'<B><BR>IN AN EFFORT TO PROVIDE YOU WITH THE BEST SUPPORT WE WILL BE USING THIS SPACE FOR QUICK REFRANCE TO FIX'S FOR CURRENT AND COMMON ISSUES<BR><BR>THANK YOU FOR MAKING SI #1</B></font>"

///////Do not edit pass this line///////////////////////

var ie=document.all
var dom=document.getElementById

if (messages.length>2)
i=2
else
i=0

function move(whichdiv){
tdiv=eval(whichdiv)
if (parseInt(tdiv.style.top)>0&&parseInt(tdiv.style.top)<=5){
tdiv.style.top=0+"px"
setTimeout("move(tdiv)",scrollerdelay)
setTimeout("move2(second2_obj)",scrollerdelay)
return
}
if (parseInt(tdiv.style.top)>=tdiv.offsetHeight*-1){
tdiv.style.top=parseInt(tdiv.style.top)-5+"px"
setTimeout("move(tdiv)",50)
}
else{
tdiv.style.top=parseInt(scrollerheight)+"px"
tdiv.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function move2(whichdiv){
tdiv2=eval(whichdiv)
if (parseInt(tdiv2.style.top)>0&&parseInt(tdiv2.style.top)<=5){
tdiv2.style.top=0+"px"
setTimeout("move2(tdiv2)",scrollerdelay)
setTimeout("move(first2_obj)",scrollerdelay)
return
}
if (parseInt(tdiv2.style.top)>=tdiv2.offsetHeight*-1){
tdiv2.style.top=parseInt(tdiv2.style.top)-5+"px"
setTimeout("move2(second2_obj)",50)
}
else{
tdiv2.style.top=parseInt(scrollerheight)+"px"
tdiv2.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function startscroll(){
first2_obj=ie? first2 : document.getElementById("first2")
second2_obj=ie? second2 : document.getElementById("second2")
move(first2_obj)
second2_obj.style.top=scrollerheight
second2_obj.style.visibility='visible'
}

if (ie||dom){
document.writeln('<div id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;background-color:'+scrollerbgcolor+' ;background-image:url('+scrollerbackground+')">')
document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0px;top:0px">')
document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:1px;">')
document.write(messages[0])
document.writeln('</div>')
document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:0px;visibility:hidden">')
document.write(messages[dyndetermine=(messages.length==1)? 0 : 1])
document.writeln('</div>')
document.writeln('</div>')
document.writeln('</div>')
}

if (window.addEventListener)
window.addEventListener("load", startscroll, false)
else if (window.attachEvent)
window.attachEvent("onload", startscroll)
else if (ie||dom)
window.onload=startscroll

</script></center>
<?
end_frame
();
stdfoot();
?>
Reply With Quote