We have a domain of our own - vjti.edu But we wanted server space, so that we can administer it ourselves.
Hmm... My dear if by administer you mean upload and download web-pages i.e. update pages then you can do that on the free-web-space I sentu .
And constantly update it as mentioned in my earlier mail.
We plan to link this site to the domain name vjti.edu/mca
Ok that you are going to do using Frames.
So All you have to do is register at Brinkster and shootoff .
Should take just abt 10 Mins..
Navin Dhanuka Knowledge is Power. All I want is immense power.
P.S. - I am sending the reply to LUG also, because if I am wrong someone can correct it.
Thanx for the links and sorry for using the wrong tag.
-- Goldwyn :o)
_________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com
Sometime Today, Navin [v 2.0] assembled some asciibets to say:
We plan to link this site to the domain name vjti.edu/mca
Ok that you are going to do using Frames.
well, previously it was done with frames, but i personally think that that was a bad idea (I thought so then too, but we had a mechanism to support non-frames browsers without actually leaving the vjti.edu domain by mirroring most stuff there as well.)
He wants to use http://www.vjti.edu/mca as the URL and wants 5MB space on any other server, where he can update pages as and when required.
I can only think of Frames or after 1 second change page to http://www.anotherMCAsite.com
Is there any other mechanism to help him.
Navin
"Better Knowledge is Power"
----- Original Message ----- From: "Philip S Tellis" philip.tellis@iname.com To: linuxers@mm.ilug-bom.org.in Sent: Monday, March 25, 2002 7:20 PM Subject: Re: [ILUG-BOM] [COMMERCIAL] Server Space
Sometime Today, Navin [v 2.0] assembled some asciibets to say:
We plan to link this site to the domain name vjti.edu/mca
Ok that you are going to do using Frames.
well, previously it was done with frames, but i personally think that that was a bad idea (I thought so then too, but we had a mechanism to support non-frames browsers without actually leaving the vjti.edu domain by mirroring most stuff there as well.)
_________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com
+++ Navin Dhanuka [26/03/02 19:47 +0530]:
He wants to use http://www.vjti.edu/mca as the URL and wants 5MB space on any other server, where he can update pages as and when required.
I can only think of Frames or after 1 second change page to http://www.anotherMCAsite.com
mod_rewrite + DNS Probably easier. http://mca.vjti.edu/ points there (and adding a subdomain even saves on the domain registration costs, just an A record is required). Saves even on the automagic rewrite if http://www.vjti.edu/mca/index.html is an autorefresh page to http://mca.vjti.org .
<meta>http-equiv="refresh" content="0; url=http://path/to/new/stuff"</meta> is a bit better that a 1 second refresh.
Devdas Bhagat
<meta>http-equiv="refresh" content="0;
url=http://path/to/new/stuff"</meta>
is a bit better that a 1 second refresh.
Other tag could be, <body onLoad="javascript:window.document.location='http://www.gottaswitch.com:8080 '">
This again is faster than the 1 second refresh.
Goldwyn :o)
Sometime Today, Goldwyn Rodrigues assembled some asciibets to say:
Other tag could be, <body onLoad="javascript:window.document.location='http://www.gottaswitch.com:8080 '">
This again is faster than the 1 second refresh.
And is the worst solution of the lot.
1. doesn't work with non-javascript browsers 2. doesn't allow users to click the back button on the browser.
Also, any redirect will cause problems for people with visual disabilities.
Sometime on Mar 29, Devdas Bhagat assembled some asciibets to say:
mod_rewrite + DNS Probably easier. http://mca.vjti.edu/ points there (and adding a subdomain even saves on the domain registration costs, just an A record is required). Saves even on the automagic rewrite if http://www.vjti.edu/mca/index.html is an autorefresh page to http://mca.vjti.org .
Well, the problem here is that Harshal would have to keep adding subdomains for everyone who asked for it. For those who don't know, vjti.edu is the unofficial VJTI site run by an ex-student.
Making subdirectories and putting up auto-redirect pages (either using the refresh or frames or through .htaccess) is easier for him than changing the apache configuration.
The frames soln was considered better because the domain name is always visible at the top. Unfortunately, that's also its problem. You see the same url regardless of which page you're looking at.
<meta>http-equiv="refresh" content="0; url=http://path/to/new/stuff"</meta> is a bit better that a 1 second refresh.
that's <meta http-equiv....> but again, not as good a solution. The meta http-equiv tags are merely suggestions to browsers. They may or may not do what the tags tell them to. Browsers are only required to follow instructions passed in the http headers, so adding a header like:
Location: new_url Uri: new_url
or even Refresh: 0; new_url
These can be done through a simple cgi script written in shell:
#!/bin/sh
echo "Location: new_url" echo "Uri: new_url" echo