DirectAdmin login form website

thorvertonian

New member
Joined
Jan 18, 2008
Messages
3
Is there a way to mask the when logging in via the login box on my homepage?

I have setup login boxes for directadmin and tcadmin, however when you login, the URL changes to http://x.x.x.x:2222 or tcadmins equivilant, I want it to stay showing http://www.mydomain.com

Is there a way to do this? ifso help would be very much appreciated!
 
I have this done, I was just wondering if there was a way of opening DA after login inside a frame, os it simply display's http://mydomain.com, without the :2222 on the end..... if not, I'll have to deal!
 
Will this (in an index.html file) work for you:
Code:
<HTML>
<FRAMESET ROWS="*,0" FRAMEBORDER=0 BORDER=0 FRAMESPACING=0>
<FRAME SRC="https://www.example.com:2222">
</FRAMESET>
</HTML>
 
Hi

Hey typing erro mate

when you typed this code you put https://www.example.com:2222

Code:
<HTML>
<FRAMESET ROWS="*,0" FRAMEBORDER=0 BORDER=0 FRAMESPACING=0>
<FRAME SRC="[COLOR="red"]https://www.example.com:2222[/COLOR]">
</FRAMESET>
</HTML>

and it didnt view, so what you need to do is just remove the "s" from the http://www.example.com:2222 so it looks like this Below.

Code:
<HTML>
<FRAMESET ROWS="*,0" FRAMEBORDER=0 BORDER=0 FRAMESPACING=0>
<FRAME SRC="[COLOR="Red"]http://www.example.com:2222[/COLOR]">
</FRAMESET>
</HTML>

and just change the url to yours i changed the colour to red so it is easier to read.

Thanks
Aaron
 
I can use frames, but that will simply show the login page.

I have the login box on my homepage, where customers can log into seperate things, but I would like the URL to remain the domian name after they login, at the moment it puts:2222 on the end shows all the paths for whatever link they click, I would like it to remain the domain. I have tried putting my hmepage inside a frame, and it doesn' work, it still changes after login....
 
I'm not understanding. Can you post an example of what you want to show in the URL?

Remember that DirectAdmin itself is a C++ compiled program; anything you want to do you need to do with frames.

Jeff
 
Back
Top