Notices
ScoobyNet General General Subaru Discussion

HOW DO I POST PICS ?

Thread Tools
 
Search this Thread
 
Old Sep 14, 2002 | 02:38 PM
  #1  
doctor CLIFFORD's Avatar
doctor CLIFFORD
Thread Starter
Scooby Regular
 
Joined: Aug 2002
Posts: 697
Likes: 0
Post

ANYONE KNOW HOW TO AD PICTURES ON A THREAD
I HAVE,NT GOT A CLUE !
Reply
Old Sep 14, 2002 | 02:46 PM
  #2  
dhorwich's Avatar
dhorwich
Scooby Regular
 
Joined: Mar 2002
Posts: 4,604
Likes: 0
Post

http://upload.turbosport.co.uk


Dan
Reply
Old Sep 14, 2002 | 03:10 PM
  #3  
doctor CLIFFORD's Avatar
doctor CLIFFORD
Thread Starter
Scooby Regular
 
Joined: Aug 2002
Posts: 697
Likes: 0
Post

<%
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>
Reply
Old Sep 14, 2002 | 03:13 PM
  #4  
doctor CLIFFORD's Avatar
doctor CLIFFORD
Thread Starter
Scooby Regular
 
Joined: Aug 2002
Posts: 697
Likes: 0
Post

OOOPS!
Reply
Old Sep 14, 2002 | 03:14 PM
  #5  
scooby-si's Avatar
scooby-si
Scooby Regular
 
Joined: May 2002
Posts: 4,909
Likes: 0
From: 2005 sso, 1/4 finals,3rd in 60ft; 2004 sso,semi finals,2nd in 60ft time; 2003 standard car 2nd 60ft
Post

doc send the pics to me m8 e-mail is in profile ill put them up 4 u

[Edited by scooby-si - 9/14/2002 3:15:06 PM]
Reply
Old Sep 14, 2002 | 03:18 PM
  #6  
dhorwich's Avatar
dhorwich
Scooby Regular
 
Joined: Mar 2002
Posts: 4,604
Likes: 0
Post

You need to re-size the pics so they are smaller than something like 250K, or is 100K not sure and they need to be jpegs..

Dan
Reply
Old Sep 14, 2002 | 04:40 PM
  #7  
Puff The Magic Wagon!'s Avatar
Puff The Magic Wagon!
Moderator
25 Year Member
iTrader: (2)
 
Joined: May 2000
Posts: 16,980
Likes: 15
From: From far, far away...
Post

Doc has copied the source for the html page!

Doc, the import of a picture should bring up a url which has img in square brackets at either end. That url (+ brackets) is what needs to be copied exactly into your post.

Reply
Old Sep 14, 2002 | 05:35 PM
  #8  
Type_RA's Avatar
Type_RA
Scooby Regular
 
Joined: Mar 2001
Posts: 330
Likes: 0
Post

been asked so many times I have a word doc with the instruction saved so I can cut and paste

How to post picture on scoobynet :

The picture must be on the web somewhere. If it isn’t and you cant get it uploaded then to upload picture to the web, (note file size must be less than 100K.and best sized as 800x600 pixels) from your hard drive using :

http://bbs.turbosport.co.uk/upload.php


This will give you a web page link something like http://upload.turbosport.co.uk/getpic.asp?File=nnnnnnnnnnnnnnnn.jpg

(where nnnnnnnnnnnnnnnnnnn is a number)

Once you have the url from turbosport or the url from your webspace to post in a thread put in

[ img ]http://upload.turbosport.co.uk/getpic.asp?File=nnnnnnnnnnnnnnnn.jpg[ /img ]

The nnnnnnnnnnnnnnnnnn would be the number of your picture.

Reply
Old Sep 14, 2002 | 06:17 PM
  #9  
AndiThompson's Avatar
AndiThompson
Scooby Regular
 
Joined: Aug 2001
Posts: 2,474
Likes: 0
From: Republic Of Mancunia
Post

http://www.aviz.co.uk/imagepost/

Instructions by Avi.
Reply
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
BHPvstorque
Subaru Parts
13
Nov 21, 2015 04:09 PM
yabbadoo4
General Technical
10
Sep 24, 2015 11:10 PM
jobegold@hotmail.co.uk
ScoobyNet General
43
Sep 24, 2015 02:16 PM
2pot
Suspension
0
Sep 21, 2015 04:54 PM
BHPvstorque
Subaru Parts
1
Sep 14, 2015 08:31 PM




All times are GMT +1. The time now is 12:26 AM.