Urgent. Strange Error.

  • Thread starter Thread starter Shapper
  • Start date Start date
S

Shapper

Hello,

I just upload my web site to my hosting server and when I access it I
always get an error:

"Redicterion limit for this URL exceeded. Unable to load the requested
page"

Does anyone has any idea what is going on?

Thanks,
Miguel
 
Shapper said:
Hello,

I just upload my web site to my hosting server and when I access it I
always get an error:

"Redicterion limit for this URL exceeded. Unable to load the requested
page"

Does anyone has any idea what is going on?


Wild guess here; but do you have a circular redirect going on?

pg1 redirects to pg1

OR

pg1 redirects to pg2
pg2 redirects to pg1

OR

pg1 redirects to pg2
pg2 redirects to pg3
pg3 redirects to pg1

etc...
 
Hello,

I don't have anything like that.

This is really very strange. I deleted all my Firefox and IE cookies and
I still have the same problem.

The url of the web site is www.camaradospares.com

Thanks,
Miguel
 
it looks to me like an error from the domain service , not by your
application...
is it possible for you to upload a default.html / index.html and see if it
is being displayed correctly?
 
Hello,

I fixed it. However this is really strange.

I think the problem is in web.config file. I had the following:

I had the following:
<customErrors mode="RemoteOnly"
defaultRedirect="message.aspx?msg=generic">
<error statusCode="404" redirect="message.aspx?msg=404" />
<error statusCode="500" redirect="message.aspx?msg=500" />
</customErrors>

And I replaced by:
<customErrors mode="RemoteOnly" />

Now it is working.

Any idea what might be going on?

Thanks,
Miguel
 
[snip]
I had the following:
<customErrors mode="RemoteOnly"
defaultRedirect="message.aspx?msg=generic">
<error statusCode="404" redirect="message.aspx?msg=404" />
<error statusCode="500" redirect="message.aspx?msg=500" />
</customErrors>

And I replaced by:
<customErrors mode="RemoteOnly" />

Now it is working.

Any idea what might be going on?
[snip]

That's interesting.

Basically, I believe this would cause a circular redirect, if message.aspx
was:
- missing
- misspelled
- in another directory

That may have been your problem.

Regards,
John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top