Notices
Member's Gallery Pictures of your pride and joy

my p1

Thread Tools
 
Search this Thread
 
Old 22 March 2003, 02:34 PM
  #1  
p1 tud
Scooby Regular
Thread Starter
 
p1 tud's Avatar
 
Join Date: Oct 2002
Posts: 1,417
Likes: 0
Received 0 Likes on 0 Posts
Post

hope this works.<%@ language="VBScript" %>
<%
Option Explicit

Const lngMaxFormBytes = 200

Dim objASPError, blnErrorWritten, strServername, strServerIP, strRemoteIP
Dim strMethod, lngPos, datNow, strQueryString, strURL

If Response.Buffer Then
Response.Clear
Response.Status = "500 Internal Server Error"
Response.ContentType = "text/html"
Response.Expires = 0
End If

Set objASPError = Server.GetLastError
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

<html dir=ltr>

<head>
<style>
a:link {font:8pt/11pt verdana; color:FF0000}
a:visited {font:8pt/11pt verdana; color:#4e4e4e}
</style>

<META NAME="ROBOTS" CONTENT="NOINDEX">

<title>The page cannot be displayed</title>

<META HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252">
</head>

<script>
function Homepage(){
<!--
// in real bits, urls get returned to our script like this:
// res://shdocvw.dll/http_404.htm#http://www.DocURL.com/bar.htm

//For testing use DocURL = "res://shdocvw.dll/http_404.htm#https://www.microsoft.com/bar.htm"
DocURL=document.URL;

//this is where the http or https will be, as found by searching for :// but skipping the res://
protocolIndex=DocURL.indexOf("://",4);

//this finds the ending slash for the domain server
serverIndex=DocURL.indexOf("/",protocolIndex + 3);

//for the href, we need a valid URL to the domain. We search for the # symbol to find the begining
//of the true URL, and add 1 to skip it - this is the BeginURL value. We use serverIndex as the end marker.
//urlresult=DocURL.substring(protocolIndex - 4,serverIndex);
BeginURL=DocURL.indexOf("#",1) + 1;
urlresult=DocURL.substring(BeginURL,serverIndex);

//for display, we need to skip after http://, and go to the next slash
displayresult=DocURL.substring(protocolIndex + 3 ,serverIndex);
document.write( '<A HREF="' + escape(urlresult) + '">' + displayresult + "</a>");
}
//-->
</script>

<body bgcolor="FFFFFF">

<table width="410" cellpadding="3" cellspacing="5">

<tr>
<td align="left" valign="middle" width="360">
<h1 style="COLOR:000000; FONT: 13pt/15pt verdana"><!--Problem-->The page cannot be displayed</h1>
</td>
</tr>

<tr>
<td width="400" colspan="2">
<font style="COLOR:000000; FONT: 8pt/11pt verdana">There is a problem with the page you are trying to reach and it cannot be displayed.</font></td>
</tr>

<tr>
<td width="400" colspan="2">
<font style="COLOR:000000; FONT: 8pt/11pt verdana">

<hr color="#C0C0C0" noshade>

<p>Please try the following:</p>

<ul>
<li id="instructionsText1">Click the
<a href="javascript:location.reload()">
Refresh</a> button, or try again later.<br>
</li>

<li>Open the

<script>
<!--
if (!((window.navigator.userAgent.indexOf("MSIE") > 0) && (window.navigator.appVersion.charAt(0) == "2")))
{
Homepage();
}
//-->
</script>

home page, and then look for links to the information you want. </li>
</ul>

<h2 style="font:8pt/11pt verdana; color:000000">HTTP 500.100 - Internal Server
Error - ASP error<br>
Internet Information Services</h2>

<hr color="#C0C0C0" noshade>

<p>Technical Information (for support personnel)</p>

<ul>
<li>Error Type:<br>
<%
Dim bakCodepage
on error resume next
bakCodepage = Session.Codepage
Session.Codepage = 1252
on error goto 0
Response.Write Server.HTMLEncode(objASPError.Category)
If objASPError.ASPCode > "" Then Response.Write Server.HTMLEncode(", " & objASPError.ASPCode)
Response.Write Server.HTMLEncode(" (0x" & Hex(objASPError.Number) & ")" ) & "<br>"

If objASPError.ASPDescription > "" Then
Response.Write Server.HTMLEncode(objASPError.ASPDescription) & "<br>"

elseIf (objASPError.Description > "") Then
Response.Write Server.HTMLEncode(objASPError.Description) & "<br>"
end if



blnErrorWritten = False

' Only show the Source if it is available and the request is from the same machine as IIS
If objASPError.Source > "" Then
strServername = LCase(Request.ServerVariables("SERVER_NAME"))
strServerIP = Request.ServerVariables("LOCAL_ADDR")
strRemoteIP = Request.ServerVariables("REMOTE_ADDR")
If (strServername = "localhost" Or strServerIP = strRemoteIP) And objASPError.File <> "?" Then
Response.Write Server.HTMLEncode(objASPError.File)
If objASPError.Line > 0 Then Response.Write ", line " & objASPError.Line
If objASPError.Column > 0 Then Response.Write ", column " & objASPError.Column
Response.Write "<br>"
Response.Write "<font style=""COLOR:000000; FONT: 8pt/11pt courier new""><b>"
Response.Write Server.HTMLEncode(objASPError.Source) & "<br>"
If objASPError.Column > 0 Then Response.Write String((objASPError.Column - 1), "-") & "^<br>"
Response.Write "</b></font>"
blnErrorWritten = True
End If
End If

If Not blnErrorWritten And objASPError.File <> "?" Then
Response.Write "<b>" & Server.HTMLEncode( objASPError.File)
If objASPError.Line > 0 Then Response.Write Server.HTMLEncode(", line " & objASPError.Line)
If objASPError.Column > 0 Then Response.Write ", column " & objASPError.Column
Response.Write "</b><br>"
End If
%>
</li>
<p>
<li>Browser Type:<br>
<%= Request.ServerVariables("HTTP_USER_AGENT") %>
</li>
<p>
<li>Page:<br>
<%
strMethod = Request.ServerVariables("REQUEST_METHOD")

Response.Write strMethod & " "

If strMethod = "POST" Then
Response.Write Request.TotalBytes & " bytes to "
End If

Response.Write Request.ServerVariables("SCRIPT_NAME")

lngPos = InStr(Request.QueryString, "|")

If lngPos > 1 Then
Response.Write "?" & Left(Request.QueryString, (lngPos - 1))
End If

Response.Write "</li>"

If strMethod = "POST" Then
Response.Write "<p><li>POST Data:<br>"
If Request.TotalBytes > lngMaxFormBytes Then
Response.Write Server.HTMLEncode(Left(Request.Form, lngMaxFormBytes)) & " . . ."
Else
Response.Write Server.HTMLEncode(Request.Form)
End If
Response.Write "</li>"
End If

%>
<p>
<li>Time:<br>
<%
datNow = Now()

Response.Write Server.HTMLEncode(FormatDateTime(datNow, 1) & ", " & FormatDateTime(datNow, 3))
on error resume next
Session.Codepage = bakCodepage
on error goto 0
%>
</li>
</p>
<p>
<li>More information:<br>
<% strQueryString = "prd=iis&sbp=&pver=5.0&ID=500;100&cat=" & Server.URLEncode(objASPError.Category) & _
"&os=&over=&hrd=&Opt1=" & Server.URLEncode(objASPError.ASPCode) & "&Opt2=" & Server.URLEncode(objASPError.Number) & _
"&Opt3=" & Server.URLEncode(objASPError.Description)
strURL = "http://www.microsoft.com/ContentRedirect.asp?" & _
strQueryString
%>
<a href="<%= strURL %>">Microsoft Support</a>
</li>
</p>

</font></td>
</tr>

</table>
</body>
</html>

Old 22 March 2003, 02:35 PM
  #2  
p1 tud
Scooby Regular
Thread Starter
 
p1 tud's Avatar
 
Join Date: Oct 2002
Posts: 1,417
Likes: 0
Received 0 Likes on 0 Posts
Post

oh well
Old 22 March 2003, 02:36 PM
  #3  
Brun
Scooby Senior
 
Brun's Avatar
 
Join Date: Apr 2002
Location: Harrogate
Posts: 14,229
Likes: 0
Received 5 Likes on 5 Posts
Post

Do ya want me to stick it up for ya?
Old 22 March 2003, 02:57 PM
  #4  
p1 tud
Scooby Regular
Thread Starter
 
p1 tud's Avatar
 
Join Date: Oct 2002
Posts: 1,417
Likes: 0
Received 0 Likes on 0 Posts
Post

yhm mate.
Old 22 March 2003, 03:19 PM
  #5  
p1 tud
Scooby Regular
Thread Starter
 
p1 tud's Avatar
 
Join Date: Oct 2002
Posts: 1,417
Likes: 0
Received 0 Likes on 0 Posts
Post

cheers brun, hope this works.

Old 22 March 2003, 03:32 PM
  #6  
p1 tud
Scooby Regular
Thread Starter
 
p1 tud's Avatar
 
Join Date: Oct 2002
Posts: 1,417
Likes: 0
Received 0 Likes on 0 Posts
Post

one more, cheers brun


Old 22 March 2003, 04:44 PM
  #7  
M0NEY
Scooby Regular
 
M0NEY's Avatar
 
Join Date: Jul 2002
Location: RIP Moneys Scoob 440bhp/470lbsft 31-07-08
Posts: 6,005
Likes: 0
Received 0 Likes on 0 Posts
Post

Nice mate

You going for the sti rear lights??
Old 22 March 2003, 04:57 PM
  #8  
jameswrx
Scooby Regular
iTrader: (4)
 
jameswrx's Avatar
 
Join Date: Sep 2002
Location: Kent
Posts: 6,535
Received 40 Likes on 27 Posts
Post

Very nice mate, the mirrors make it look pure evil from the front.

Old 22 March 2003, 08:47 PM
  #9  
p1 tud
Scooby Regular
Thread Starter
 
p1 tud's Avatar
 
Join Date: Oct 2002
Posts: 1,417
Likes: 0
Received 0 Likes on 0 Posts
Post

cheers gold oz prodrive in 18 inch on their way and possibly sti rears.
Old 22 March 2003, 08:52 PM
  #10  
p1 tud
Scooby Regular
Thread Starter
 
p1 tud's Avatar
 
Join Date: Oct 2002
Posts: 1,417
Likes: 0
Received 0 Likes on 0 Posts
Post

this ones my fave lol
Old 22 March 2003, 11:22 PM
  #11  
Scooby Wagon
Scooby Regular
 
Scooby Wagon's Avatar
 
Join Date: Mar 2001
Posts: 777
Likes: 0
Received 0 Likes on 0 Posts
Thumbs up

p1 tud

Like the mirrors, wheels will finish it off nicley IMHO

Cheers
Paul
Old 23 March 2003, 04:26 AM
  #12  
Brun
Scooby Senior
 
Brun's Avatar
 
Join Date: Apr 2002
Location: Harrogate
Posts: 14,229
Likes: 0
Received 5 Likes on 5 Posts
Post

Whoops
I fixed it for you

Old 25 March 2003, 05:03 PM
  #13  
p1 tud
Scooby Regular
Thread Starter
 
p1 tud's Avatar
 
Join Date: Oct 2002
Posts: 1,417
Likes: 0
Received 0 Likes on 0 Posts
Post

thanks for the comments guys. new wheels will be on on thursday
Old 25 March 2003, 07:38 PM
  #14  
M0NEY
Scooby Regular
 
M0NEY's Avatar
 
Join Date: Jul 2002
Location: RIP Moneys Scoob 440bhp/470lbsft 31-07-08
Posts: 6,005
Likes: 0
Received 0 Likes on 0 Posts
Post

What do the gold oz prodrive look like?? Someone might be selling Oz wheels off his p1 and he said they are speedlines. Cant find what the speedlines look like though??
Old 25 March 2003, 11:48 PM
  #15  
Scooby Wagon
Scooby Regular
 
Scooby Wagon's Avatar
 
Join Date: Mar 2001
Posts: 777
Likes: 0
Received 0 Likes on 0 Posts
Thumbs up

P1 Tud
Sneak preview

Money
Look like this
[img]
http://mysite.freeserve.com/ScoobyWagon/images/3-picture2.gif?0.46888387469829895
[/img]
[img]
http://mysite.freeserve.com/ScoobyWagon/images/3-picture5.gif?0.8622241731557342
[/img]
Cheers
Paul



[Edited by Scooby Wagon - 3/25/2003 11:51:32 PM]
Old 26 March 2003, 08:46 AM
  #16  
M0NEY
Scooby Regular
 
M0NEY's Avatar
 
Join Date: Jul 2002
Location: RIP Moneys Scoob 440bhp/470lbsft 31-07-08
Posts: 6,005
Likes: 0
Received 0 Likes on 0 Posts
Post

Cheers Scooby Wagon




All times are GMT +1. The time now is 03:04 PM.