View previous topic :: View next topic |
Author |
Message |
mosszaphod -
Joined: 19 Feb 2005 Posts: 21
|
|
Back to top |
|
 |
MonkeyNation -
Joined: 05 Feb 2005 Posts: 921 Location: Cardiff
|
Posted: Tue Dec 13, 2005 5:31 pm Post subject: |
|
|
You can't run two servers on the same address without having multiple IPs.
You could redirect /mail to port 8000 with a simple http redirect, however. _________________
 |
|
Back to top |
 |
 |
mosszaphod -
Joined: 19 Feb 2005 Posts: 21
|
Posted: Tue Dec 13, 2005 6:12 pm Post subject: Sorry maybe I wasn't clear.... |
|
|
MonkeyNation wrote: | You can't run two servers on the same address without having multiple IPs.
You could redirect /mail to port 8000 with a simple http redirect, however. |
** Let me try again...I have a domain (you can check it for yourself now if you like): http://www.clanmoss.com (ran with Abyss and on port 80)
I am also running ArgoSoft Mail Server which defaults it's e-mail Web Server to port 80, but I put it on port 8000. So to check my e-mail I have to go to: http://www.clanmoss.com:8000 I would like that URL to be http://mail.clanmoss.com OR http://www.clanmoss.com/mail. My questions is how do I set that up? Would this be on Abyss's end or ArgoSoft's? I would think that Abyss could redirect a URL to another so when I type the clanmoss.com/mail or mail.clanmoss.com it goes to clanmoss.com:8000...does this clear things up?
Zaphod |
|
Back to top |
|
 |
Moxxnixx -
Joined: 21 Jun 2003 Posts: 1226 Location: Florida
|
Posted: Tue Dec 13, 2005 6:36 pm Post subject: |
|
|
Does your domain registrar (Go Daddy) support URL redirect or URL framing?
If so, that would be the easiest method. Just create a subdomain in your registrar
and redirect it to the mail. |
|
Back to top |
|
 |
mosszaphod -
Joined: 19 Feb 2005 Posts: 21
|
Posted: Tue Dec 13, 2005 6:40 pm Post subject: Not 100% sure |
|
|
Moxxnixx wrote: | Does your domain registrar (Go Daddy) support URL redirect or URL framing?
If so, that would be the easiest method. Just create a subdomain in your registrar
and redirect it to the mail. |
I am still learning so I am not sure....I use GoDaddy.com...do they use it? |
|
Back to top |
|
 |
Moxxnixx -
Joined: 21 Jun 2003 Posts: 1226 Location: Florida
|
|
Back to top |
|
 |
mosszaphod -
Joined: 19 Feb 2005 Posts: 21
|
Posted: Tue Dec 13, 2005 7:45 pm Post subject: Dont think that is it ;( |
|
|
I checked and I dont think that will do what I need...I also for the record co-locate my own server with the web/e-mail server on it....any more ideas? Isn't there a setting in either version of Abyss? I talked to the admin of the ISP I have it hosted at and he said it's usually a setting on the Web Server...now I need to know where and how if Abyss can do this...anyone? Also, thanks for the ideas so far guys!
Zaphod |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
|
Back to top |
|
 |
mosszaphod -
Joined: 19 Feb 2005 Posts: 21
|
Posted: Wed Dec 14, 2005 3:29 pm Post subject: Re: Multiple Directories Question |
|
|
** Thanks that is just what I needed! I so appreciate what you have done for all the users of your product and I must say the support for your FREE product is much better than those that are PAID! I am so glad to be part of such a great product and community!
My last question would then be how would I do a http://mail.mydomain.com and make that redirect to http://mydomain.com:8000 ?
Zaphod |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Thu Dec 15, 2005 1:31 pm Post subject: Re: Multiple Directories Question |
|
|
You're welcome.
If you are using Abyss Web Server X2, you'll have to simply declare a new host. If you are using X1 you can use the VHS (Virtual hosting script) trick as explained in http://www.aprelium.com/forum/viewtopic.php?t=1081 . _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
mosszaphod -
Joined: 19 Feb 2005 Posts: 21
|
Posted: Thu Dec 15, 2005 9:56 pm Post subject: Thanks again everyone! |
|
|
Thanks so much for all the help guys and an extra thanks to the Big Cheese himself! I wanted to tell you what I did to get it working in case anyone else wants to know or has the problem.
My Domain: clanmoss.com
Web Directory: c:\WebPages (the root where I put my main index.html and subfolders)
Mail Server: ArGoSoft Mail Server Pro and current web address is: http://clanmoss.com:8000 and I want it to be: mail.clanmoss.com AND clanmoss.com/mail
Solution:
I made a folder called 'mail' in my WebPages directory. I made a txt file called index.html and put the following code in it:
<HTML>
<HEAD>
<meta http-equiv="Refresh" content="0; URL=http://www.clanmoss:8000/">
</HEAD>
<BODY>
Wait a second...
</BODY>
</HTML>
I saved this file in the c:\WebPages\mail directory I made. This allowed me at this point to be able to type: http://clanmoss.com/mail and get to my Mail Web pages which I wanted.
Now I want to be able to type: http://mail.clanmoss.com and get to the Mail Web page as well. For this I went to my c:\WebPages directory and renamed my index.html file to index2.html. I then created a txt file and named it index.php . I then put the following code into the index.php file and saved it:
<?php
//get domain entered in browser
if ($_SERVER['HTTP_HOST'] == "mail.clanmoss.com") {
//forward to appropriate page
header("Location : mail/index.html");
exit;
}
if ($_SERVER['HTTP_HOST'] == "clanmoss.com") {
header("Location : /index2.html");
exit;
}
//end duplicating, insert below.
//else show error page
else {
header("Location : error.html");
exit;
}
?><title>Opening Your Page ::</title>
After that I tested it and everything worked! I hope this helps anyone who wants to do similar things...thanks again to all that attempted to help me..keep up the GREAT work!
Zaphod |
|
Back to top |
|
 |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Fri Dec 16, 2005 3:40 pm Post subject: |
|
|
I have a whole website dedicated to the Virtual Hosting script, it has three
different scripting languages. I recommend new users to the VHC script to
go to my website to set this thing up, I provide a web interface for it.
For more information on this project, visit the website at:
http://vhc.trustabyss.com |
|
Back to top |
|
 |
mosszaphod -
Joined: 19 Feb 2005 Posts: 21
|
Posted: Fri Dec 16, 2005 8:31 pm Post subject: I had no luck with your site... |
|
|
TRUSTpunk wrote: | I have a whole website dedicated to the Virtual Hosting script, it has three
different scripting languages. I recommend new users to the VHC script to
go to my website to set this thing up, I provide a web interface for it.
For more information on this project, visit the website at:
http://vhc.trustabyss.com |
TrustPunk,
I tried your site, but I did not have good luck with it...I am sure part of it was my fault causing I am learning, but I do know the basics and then some...I think if your documentation was a little more clear that it would help...but the problem seemed to do what it suppsoed to...please don't take this as a put-down because it isn't...I mean it more to try and help others...thanks for making the site though!
Zaphod |
|
Back to top |
|
 |
AbyssUnderground -
Joined: 31 Dec 2004 Posts: 3855
|
|
Back to top |
|
 |
mosszaphod -
Joined: 19 Feb 2005 Posts: 21
|
Posted: Sat Dec 17, 2005 5:36 am Post subject: |
|
|
Nice work on the video! I wish I had it sooner :)....as I said I got it figured out...I am sure the other appreciate the time you put into it...I know I do...again thanks to all who gave their input to help me :)...now all I need to do is figure out what would I do if someone wants Frontpage Extensions :)...
Zaphod |
|
Back to top |
|
 |
RTAdams89 -
Joined: 06 Nov 2005 Posts: 102
|
Posted: Sat Dec 17, 2005 5:58 am Post subject: |
|
|
just make a folder called mail in your web server, create a html file called index.html and have it redirect to your e-mail address. |
|
Back to top |
|
 |
cmxflash -
Joined: 11 Dec 2004 Posts: 872
|
Posted: Sat Dec 17, 2005 1:00 pm Post subject: Re: Multiple Directories Question |
|
|
And just to make it real XHTML:
Code: | <HTML>
<HEAD>
<meta http-equiv="Refresh" content="0; URL=http://www.mydomain.com:8000/">
</HEAD>
<BODY>
<P>
Wait a second...
</P>
</BODY>
</HTML> |
|
|
Back to top |
|
 |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Sat Dec 17, 2005 6:41 pm Post subject: |
|
|
mosszaphod wrote: |
Nice work on the video...... |
I actually made the tutorials, I coughed during it lol. Anyway, sorry about
the misdocumentation, I agree and im going to fix it some time. LateR! |
|
Back to top |
|
 |
|