Operating System: Windows 98 Second Edition
Web Browser: Microsoft Internet Explorer 6
Game/Hub(s): http://crashed.faith-gaming.com/cgi-bin/site.dmb
Detailed Problem Description: On my DMCGI website, I've included a "login/logout" link to allow users to login and out. But whenever I click on "login", I get sent to secure.dantom.com and I get the login field, but at the top it says: "Error: unable to complete connecting you to your destination.". But, Holy Retribution got his dmcgi website working fine (http://faith-gaming.com). I really don't know what the problem is.
Code Snippet to Reproduce Problem:
CGI
var/character/char
Topic(href,href_list[])
Load()
World=src
if(usr.ckey!="guest")char=new/character(usr.key)
if(!href){href="page=index"; href_list=params2list(href)}
Parse(href,href_list,src)
Save()
proc
Load()
if(fexists("saves/save.sav"))
var/savefile/F=new("saves/save.sav")
F["pages"]>>pages
else
pages=list()
for(var/i in typesof(/page)-/page)
pages+=new i
Save()
Save()
var/savefile/F=new("saves/save.sav")
F["pages"]<<pages
proc
Parse(href,href_list[],var/CGI/C)
if(href_list["page"])
var
header=getContent(findPage("header"),href)
footer=getContent(findPage("footer"),href)
usr<<browse("[header][getContent(findPage(href_list["page"]),href)][footer]")
else if(href_list["action"])
switch(href_list["action"])
if("login")C.Login("?page=index")
if("logout")C.Logout("?page=index")
Does the problem occur:
Every time? Or how often? Everytime.
On other computers? Yes.
In other user accounts? Yes.