i have an ajax rollover effect when you rollover a link a simple description comes up.
the info for the description comes from an external file,, but my server won't allow it..
how can i fix this?
Switch to another server?
Use GET instead of POST?
I have never heard that post method is not allowed 🙂 Whats the error its giving? Maybe show some code that we can examine.
If all the request is for is to get something from the server, then GET would be more appropriate. If it's to change something on the server - that is what POST is for. It would be unwise to get them mixed up (hence NogDog's suggestion), but like cahva I've never come across a server that has been deliberately configured to disallow POST except on servers that really were just for serving existing resources and never required to modify any of them.