|
I created a DNS record in co.cc to make it point to x10hosting account. So I have like <mydomain>.co.cc - A - <x10 ip>
Its working properly. Now problem is I have already mentioned name like blog.<mydomain>.co.cc in my previous resumes...
Started by Xinus on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
If you're using apache server, just point the domain to your server ip and you can use of your blog is the same as the one pointed by your domain DNS record:
blog.dom.tld -> dom.tld.
To ip.
|
|
I want to let the same user session span across: site.com
sub1.site.com
sub2.site.com
How can I do this in Django? With the default auth user package it seems to require the user to login to all 3 sites each time with a different session. How can they...
Started by MikeN on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In my /etc/hosts file (on OSX:)
127.0.0.1:
SESSION_COOKIE....
I could only get it working for a test ".com" domain that maps to 127.0.0.1.
Questions/1442017/subdomains-and-logins
I think I got a workaround solution, but couldn't use localhost.
|
|
Part 1 I want to build a PHP Zend Framework application that users can sign up to use. When they register, I would like the application to create a sub-domain that points to their public page, that serves up content specific to that client.
For example...
Started by Andrew on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, in your bootstrap you can detect the domain this way:
// Bootstrap or controller $....
After having customized views, you can detect the typed domain and show the correct views.
And then different views for each domain.
|
Ask your Facebook Friends
|
Hello.
Consider the following problem, please. I have got domain.tld with hierarchical sub-domains like the following:
a.domain.tld b.a.domain.tld c.b.a.domain.tld ... etc.
There is also hypothetical directory structure in the web-root:
/foo /a. /a./b...
Started by nkd on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Possible solution for 4 levels of sub-domains:
RewriteCond %{HTTP_HOST} ^([^\.]+)\.domain\.tld RewriteRule (.*) %1./$1 [R,L] RewriteCond %{HTTP_HOST} ^([^\.]+)\.([^\.]+)\.domain\.tld RewriteRule (.*) %2./%....
That handle it.
|
|
I'm setting up a site for a client which has a few different sections of the site, dedicated to certain major functions, running off different apps. For example, a blog (running off WordPress), a forum (phpBB), a store, etc.
Because of all the different...
Started by jmccartie on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Of you can....
By this I mean that if you run "example.com" and you want a blog for your site, then use meaning the others won't see it.
I know providers.
Subdomains-or-subfolders-which-are-better-for-seo/6849/
I'd use subfolders, for sure.
|
|
I have my main application site https://drchrono.com, and I have a blog sub-domain under http://blog.drchrono.com . I was told by some bloggers that the blog sub-domain of your site helps the pagerank of your main site. Does traffic to your blog sub-domain...
Started by MikeN on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
If they did a completely separate domain....
In the domain as opposed to the rest of the url, except to be sure it's clearly delimited (use slashI don't think Google gives any special treatment to sub domains named "blog".
|
|
I am using UrlRewriting.Net for url rewriting in Asp.Net 2 and IIS 5.1 (offline) and IIS 6 (online)
The application performs the following:
A url of the following nature: http://username.site.com is re-written as http://site.com/Default.aspx?user=username...
Started by saurabhj on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I got....
Its simple if you think about it.
I managed to get this working.
Easy way to test this will be to edit your hosts file so that username.site.com points to 127.0.0.1, but you will have to do this for each user you want to test on each PC.. .
|
|
This question is similar to this: Asp.net Profile Across Sub-Domain
I'm basically wondering if a user logs in through "www.yourdomain.com", is it possible for "subdomain.yourdomain.com" to also recognize them as logged in by checking their AuthCookie?...
Started by Jack Marchetti on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's what I set in web.config:
<httpCookies domain.
I used httpCookies in Web.config although setting the domain on the forms authentication tag works also.
Up like this in the last hour.
|
|
I have seen on the web some domain names having prefix of ww2 or ww3 or so (ww2.somedomain.com, ww3.yourdomain.com). And these happen mostly when travelling from a page to page. What would be the reason of having such subdomains? Is there anything special...
Started by Nirmal on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Nothing special, you can use to same domain not to load....
The initials www are a (somewhat arbitrary) convention.
The "mail" in mail.yahoo.com) can it anything they want.
Technically, the initials before the primary domain name (e.g.
|
|
I would like to automatically update my DNS more multiple domains programmatically. I run a BIND server (on FreeBSD) as well as host domains and DNS at GoDaddy. I could not find a web service API for GoDaddy to access and update my DNS that they are hosting...
Started by Brennan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Do....
Ideally, use a database that supports triggers so you these days.
To add new sub-domains is Dynamic Updates, as specified in RFC 2136 , and well supported by BIND in there, and the DNS records will be served out automatically.
|