Notices

postin pic's??

Thread Tools
 
Search this Thread
 
Old 24 December 2002, 06:52 PM
  #1  
themaverick
Scooby Regular
Thread Starter
 
themaverick's Avatar
 
Join Date: Nov 2002
Posts: 410
Likes: 0
Received 0 Likes on 0 Posts
Post

i still can't get my pictures to post, evey time i try it come up with some kind of error from web site,am i doing something wrong? is there any other way to post em?

cheers kev
Old 24 December 2002, 07:34 PM
  #2  
sasim
Used to work here!!
 
sasim's Avatar
 
Join Date: Jun 2000
Location: Peterhead, Scotland
Posts: 1,488
Likes: 0
Received 0 Likes on 0 Posts
Post

got to the Turbosport uploader and upload the pictures (must be less than 100k each) then copy the generated URL code and post it back here

Stuart
Old 25 December 2002, 09:37 PM
  #3  
themaverick
Scooby Regular
Thread Starter
 
themaverick's Avatar
 
Join Date: Nov 2002
Posts: 410
Likes: 0
Received 0 Likes on 0 Posts
Question

stuart
this is what i get every time i try and post pics. whats that about?????
<%@ 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>



cheers kev
Old 25 December 2002, 09:46 PM
  #4  
RB5-Black
Scooby Regular
 
RB5-Black's Avatar
 
Join Date: May 2002
Location: Dunfermline,Fife Xbox/PS3 Gamertag: RB5black
Posts: 4,746
Likes: 0
Received 0 Likes on 0 Posts
Post

it does that sometimes

I think it's having a bad day
Old 26 December 2002, 10:34 AM
  #5  
AlanG
Scooby Regular
 
AlanG's Avatar
 
Join Date: Jul 2000
Location: Glasgow
Posts: 3,040
Likes: 0
Received 0 Likes on 0 Posts
Post

Looks like it can't find the page on the web, the picture refers to, so gives this error message.

Save picture you want to use onto say, your desktop, then use Turbosport to host the picture, but as Stuart says (Sasim), must be less then 100k

A
Old 26 December 2002, 01:13 PM
  #6  
themaverick
Scooby Regular
Thread Starter
 
themaverick's Avatar
 
Join Date: Nov 2002
Posts: 410
Likes: 0
Received 0 Likes on 0 Posts
Question

the pic i am tryin to ppost is saved in my docs,when i use the browse button on turbosport i find the pic no probs but it just when it is uploading that this errror message occurs,will saving it on my desktop make a difference?also how can 1 tell if pic is less than 100k?if it is more ,is it possible to reduce it?

cheers kev
Old 26 December 2002, 05:01 PM
  #7  
Carl Davey
Scooby Regular
iTrader: (3)
 
Carl Davey's Avatar
 
Join Date: Oct 2002
Location: Aberdeenshire
Posts: 2,787
Likes: 0
Received 0 Likes on 0 Posts
Thumbs up

Right click on the pic and select 'Properties'. This will tell you the size of the file.

I use Lycos for external linking of my pictures. Was very good up until around a week ago when it suffered some outage. I posted an idiots guide for how to setup your own webspace using their sevice and how to externally link to pictures hosted on that webspace here - http://www.cavweb-forums.co.uk/showt...&threadid=7329

EDIT: if your hearts set on using turbosport make sure there is no daft symbols in your pic titles.

[Edited by Carl Davey - 12/26/2002 5:03:55 PM]
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
KAS35RSTI
Subaru
27
04 November 2021 07:12 PM
greg320
Non Car Related Items For sale
6
11 October 2015 11:44 AM
leeturbo2000
Member's Gallery
8
01 October 2015 11:30 PM
Pro-Line Motorsport
Car Parts For Sale
2
29 September 2015 07:36 PM
buckerz69
Subaru Parts
0
29 September 2015 04:16 PM



Quick Reply: postin pic's??



All times are GMT +1. The time now is 11:54 AM.