473,748 Members | 4,935 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 3281
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
2916
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
3011
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
9547
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
6158
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
2235
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
3807
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
1869
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
2626
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
3272
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
8830
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9370
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9247
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
8242
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
6796
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
6074
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
4602
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3312
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
3
2215
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.