473,699 Members | 2,579 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

error(?) "302 Found" on Validator XHTML W3C

Hello to everybody.

I'm working in Italy on this website
http://www.fondazioneantonioruberti.it/ariene/
as css/xhtml/graphic designer in cooperation with a php programmer and
a ISP provider.
The site is still in test but i'm having no answer from
http://validator.w3.org/ except "302 found" for this page
http://www.fondazioneantonioruberti.it/ariene/
and also
http://www.fondazioneantonioruberti.it/ariene/index.php .

I've tried to follow these warnings
http://www.checkupdown.com/status/E302.html
and
http://www.w3.org/Protocols/rfc2616/...html#sec10.3.3

But i've no idea wher should be the problem, and the php programmer and
ISP seem to want to ignore these thread i've suggested to them (maybe
for problem with english? ).
Anyway, please, does somebody have solved in the past somthing similar?

Thanks in advance.

All the best.

Matteo - www.dlsan.org - www.mscreativestudio.com

Aug 5 '05 #1
4 3275
dlsan wrote:
Hello to everybody.

I'm working in Italy on this website
http://www.fondazioneantonioruberti.it/ariene/
as css/xhtml/graphic designer in cooperation with a php programmer and
a ISP provider.
The site is still in test but i'm having no answer from
http://validator.w3.org/ except "302 found" for this page
http://www.fondazioneantonioruberti.it/ariene/
and also
http://www.fondazioneantonioruberti.it/ariene/index.php .

I've tried to follow these warnings
http://www.checkupdown.com/status/E302.html
and
http://www.w3.org/Protocols/rfc2616/...html#sec10.3.3

But i've no idea wher should be the problem, and the php programmer
and ISP seem to want to ignore these thread i've suggested to them
(maybe for problem with english? ).
Anyway, please, does somebody have solved in the past somthing
similar?


Fix your code, perhaps?

http://www.fondazioneantonioruberti.it/ariene/index.php
Loading this URL in Lynx show the following headers:
------------------------------------------------
HTTP/1.1 302 Found
Date: Fri, 05 Aug 2005 14:08:46 GMT
Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) DAV/1.0.3 PHP/4.3.10
mod_perl/1.2
6
X-Powered-By: PHP/4.3.10
Set-Cookie: PHPSESSID=14053 74a1fc50052b167 9dfb83d9d687; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0,
pre-check=0
Pragma: no-cache
Location: http://www.fondazioneantonioruberti.it/ariene/index.php
Connection: close
Content-Type: text/html
------------------------------------------------

In essence, http://www.fondazioneantonioruberti.it/ariene/index.php
tries to redirect to itself, something which would cause an endless
loop.

--
Kim André Akerø
- ki******@NOSPAM betadome.com
(remove NOSPAM to contact me directly)
Aug 5 '05 #2
dlsan wrote:
Hello to everybody.

I'm working in Italy on this website
http://www.fondazioneantonioruberti.it/ariene/
as css/xhtml/graphic designer in cooperation with a php programmer and
a ISP provider.
The site is still in test but i'm having no answer from
http://validator.w3.org/ except "302 found" for this page
http://www.fondazioneantonioruberti.it/ariene/
and also
http://www.fondazioneantonioruberti.it/ariene/index.php .


Very strange, because I got the same result as you from the validator,
but I just requested the latter URL with the network monitor on, and the
request definitely came back with a 200 status.
Aug 5 '05 #3
Kim André Akerø wrote:
Fix your code, perhaps?

http://www.fondazioneantonioruberti.it/ariene/index.php
Loading this URL in Lynx show the following headers: .... ------------------------------------------------

In essence, http://www.fondazioneantonioruberti.it/ariene/index.php
tries to redirect to itself, something which would cause an endless
loop.


Thanx!
Lynx, right.
It's just one step beyond.
We'll try to deepen this way.

Matteo

Aug 5 '05 #4
dlsan wrote:
The site is still in test but i'm having no answer from
http://validator.w3.org/ except "302 found" for this page
http://www.fondazioneantonioruberti.it/ariene/


It looks like the PHP script tests for the presence of a cookie, if it isn't
found it tries to set it, then redirects the user back to the same page.

If the user agent doesn't support, or has disabled, cookies (and the Markup
Validator is such a user agent), then this ends up with an infinite loop.

--
David Dorward <http://blog.dorward.me .uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Aug 5 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
2915
by: rcb845 | last post by:
HI fellow php fans, I am blocked with a simple problem, at least it seems simple, but I cannot make it through. I want to execute a .php script in case of "error 404, page not found". I am not yet on a production server but on my local Apache server. I have defined my personal error file. I have modified the apache configuration httpd.conf to point to this
3
3008
by: Stephen Poley | last post by:
Could some kind soul explain the errors and warnings that the W3C CSS validator generates for page: http://www.atlis.nl/testsite/nl/ Results at: http://tinyurl.com/5pxqx The error "Invalid number : borderParse Error - " may be due to something I've done, but I'm blowed if I can see what. While the warning "property display doesn't exist for media" has me baffled.
4
9544
by: amywolfie | last post by:
I would like to put code behind a Find button on a form which: 1) Performs a find based on a field on the form 2) If NO RECORDS ARE FOUND, then displays a custom "No Records Found" message box. Thanks!! amy ===
9
6154
by: Martin Eyles | last post by:
Hi, I have set up an asp.net website on another PC in order to test it. The site was fine on my PC, but on the new PC all the pages give the error "The Page Cannot Be Found". Some legacy pages (ASP, as opposed to ASP.Net) work fine. The old PC was running Windows 2000 Server, and the new PC I am testing on is running Windows Server 2003. Thanks in advance,
1
2233
by: timbobd | last post by:
I have encountered a situation that I don't understand. When I call a sub of Friend scope (in an object with Friend scope), I am getting an error "Public member 'subname' not found in type 'myType'". Any idea why? Since Friend scope should be visible within my assembly, and everying is taking place within a single project, I don't understand why this error is occuring. Here is some illustrative code, where I would get the error in the...
1
3805
by: hendy | last post by:
Dear all, i'm using windows XP, IIS 5.1, Visual .NET 2003 and SQL Server 2000. When I open New Project - Visual C# Projects - ASP .NET Web Service - Location : http://localhost/WebService1 After that i click OK, then it returns error
0
1867
by: hendy | last post by:
Dear all, i'm using windows XP, IIS 5.1, Visual .NET 2003 and SQL Server 2000. When I open New Project - Visual C# Projects - ASP .NET Web Service - Location : http://localhost/WebService1 After that i click OK, then it returns error
1
2624
by: technod | last post by:
Hi, The error I am describing occurs with the script I've pasted below. It's a validator for form fields and prints a message into a span tag located beside the empty input tag. I have hard coded the error message to be printed in a specific span tag for testing. --> "<span id="name">www</span>" When this span tag is positioned BEFORE the input tag it works fine but when I place it after (which is the layout I want) it stops working...
8
3265
by: webgenius | last post by:
Whenever I click the SUBMIT button in my HTML page, I get the "Object not found!" error. It was working fine yesterday. This error started to occur after I installed Codelobster and made some changes to the php file CheckLogin.php. This is a small part of the HTML page with the button: When I enter the username and password and click on the Submit button, I get the error: Plase help me on this.
0
9173
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8882
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7748
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6533
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5872
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4627
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3057
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2345
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2009
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.