I'm going to let everyone in on a little secret
- not every error that your browser reports actually means exactly what it says. OK, so it's no surprise that your software doesn't always tell you exactly what it should. But in certain cases IE loves to bring up the page cannot be located error, but that isn't quite what's happening - partricularly on a Web site that uses PHP to create its content.
Anyone who has created their own Web site is familiar with uploading an HTML file to their host's server to display text and images and possibly run some sort of Jave script. In that case there's an actual file on the server that never changes unless you modify/reupload it. But when a Web site uses PHP scripts to create its content, the pages that appear in your browser don't actually exist on the server - each time you access them, PHP creates a brand new and completely unique copy in your browser (that's why you'll notice that at the bottom of every page on the forum it says "Page created in (whatever) seconds with (however many) queries"). If for some reason there's a problem with the connection from your computer and the server and back again, you can get the page cannot be located error - but what that actually means is that the page couldn't be created before your browser gave up trying. It doesn't necessarily mean that there's a problem with the forum itself or that the forum doesn't exist. The problem could be as simple as a
bottleneck somewhere along the path between your computer and our host's server.
The ONLY time that you can actually trust that something you've tried to access on the forum couldn't be located on the server is when your browser dispalys a page entitled "404 Not Found" that says:
Not Found
The requested URL was not found on this server.
Apache Server at dsboards.combecause that's our host's server actually reporting back to you that what you tried to access at dsboards doesn't exist.