Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

31
votes
14answers
3k views

WWW or not WWW, what to choose as primary site name?

From technical perspective the only issue is traffic and incoming links (one of them should redirect to another). Now I need to choose which one should be primary. Some sites have www (google, ...
20
votes
9answers
3k views

Recommendations for domain name registrar with API-support

I'm building a web application that needs to register domain names programmatically. What domain name registrars with API support fulfill the following requirements: Supports .COM Ideally cheap ...
17
votes
8answers
9k views

What's the best method in ASP.NET to obtain the current domain?

I am wondering what the best way to obtain the current domain is in ASP.NET? For instance: http://www.domainname.com/subdir/ should yield http://www.domainname.com ...
7
votes
2answers
165 views

Why domain names are backwards? [closed]

I realize that this question might not make sense to some, but I was just curious of why the domain names built starting from most specific and ending with most global identifier. www.google.com ...
6
votes
4answers
863 views

How do I register domain names programmatically?

Any domain name registrars out there that support domain name registration using a web service or a similar functionality without them telling you to become a reseller? I don't register that many ...
5
votes
2answers
175 views

How to get fully qualified domain name on windows in Delphi

I need to get in Delphi a fully qualified domain name for a windows machine on a domain. I've tried to use LookupAccountSid but it gives me only netbios domain name, in my case it is "intranet" but I ...
5
votes
5answers
503 views

What is the advantage of having a domain name (spotilocal) that resolves to 127.0.0.1?

Not sure if this is best suited to Programmers, Server Fault or Stack Overflow. It's not, however, a question about developing for Facebook. Facebook recently announced tighter integration with ...
5
votes
1answer
74 views

Validating Internationalized URLs - Is this going to be a problem?

After reading about the new Arabic URLs, and with more languages to come, how should URL validation be done for internationalized applications? Does the validation change at all and will existing ...
4
votes
4answers
130 views

http://bi/ It works! What kind of domain name is this? [closed]

I just mistyped a URL and the browser displayed a page saying "It works!" How does DNS resolve these names? What are they? ~> curl http://bi/ <html><body><h1>It ...
4
votes
2answers
362 views

implementing Public Suffix extraction using java

i need to extract the top domain of an url and i got his http://publicsuffix.org/index.html and the java implementation is in http://guava-libraries.googlecode.com and i could not find any example ...
4
votes
1answer
311 views

Running Google App Engine application on multiple customer domains

I want to allow my company’s customers to integrate our Google App Engine application into their domains. For example, let’s say one customer owns the domain coolcustomer.com and wants to make our ...
4
votes
10answers
3k views

SQL: Sorting By Email Domain Name

What is the shortest and/or efficient SQL statement to sort a table with a column of email address by it's DOMAIN name fragment? That's essentially ignoring whatever is before "@" in the email ...
4
votes
1answer
429 views

invalid security certificate and domain names

I recently purchased a security certificate for a website valid for www.example.com but not for *.example.com (wildcard version - more expensive) The problem i have now is that although users can type ...
3
votes
2answers
44 views

Reverse DNS, sending emails and hostname

I don't understand this "reverse dns" thing at all. So, I have a website - www.someurl.com, and I have an ip address - http://180.160.160.190 (fake). Now, I want to setup a "reverse dns" thing, so ...
3
votes
1answer
218 views

Extract registered domain from URL based on Public Suffix List

Given a URL, how do I extract the registered domain using the Public Suffix List (list of effective TLDs, e.g. this list)? For instance, considering a.bg is a valid public suffix: ...
3
votes
1answer
109 views

Can i use a route constraint here?

If i have the following URL: /someurl And i have two domain names: us.foo.com au.foo.com I want this to 200 (match): us.foo.com/someurl But this to 404 (not match): ...
3
votes
3answers
243 views

Extract main domain name from a given url

I used the following to extract the domain from a url: (They are test cases) String regex = "^(ww[a-zA-Z0-9-]{0,}\\.)"; ArrayList<String> cases = new ArrayList<String>(); ...
3
votes
4answers
108 views

Crazy question about website landing

Is it possible for crook to redirect website site/landing to your domain to elsewhere? Say, a visitor's intended website is, knowledgenotebook.com, but the crook redirected the user to google.com or ...
3
votes
3answers
978 views

ldap: how to get a list of all domain names

I am a newbie with LDAP. I am trying to list all the NT Domain names. By NT Domain names I mean, the names of domains you would find on the LAN Network. You can observe this on windows xp machines ...
3
votes
2answers
1k views

Finding a list of recently registered domains?

Is there any site which gives the list of recently registered domains? I am looking to do some statistical analysis on domain name trends and this information is critical. Studying the latest domain ...
3
votes
3answers
3k views

Get domain name (not subdomain) in php

I have a URL which can be any of the following formats: http://example.com https://example.com http://example.com/foo http://example.com/foo/bar www.example.com example.com foo.example.com ...
3
votes
5answers
3k views

How do you check if a domain name exists?

Not only easy ones like .com or .net, but also, .co.uk, .fr, .gov.rw ... ? Should I really make a huge mapping "tld to relevant whois server", or is there an easier way ?
3
votes
4answers
316 views

How do I allow a user to use their own domain name for a hosted service?

I am working on an ASP.NET MVC web app that allows people to publish content, but other than publish the content to a remote server, I want to allow people to use their domain name directly. For ...
2
votes
3answers
112 views

Preventing trailing slash on domain name

I want my site to show up as www.mysite.com, not www.mysite.com/ Does Apache add a trailing slash after a domain name by default, or does the browser append it? If I want to prevent this using an ...
2
votes
2answers
265 views

What is the difference between host name and domain name (syntactically)

I'm trying to implement validation for domain names (in e-mail addresses) and host names. In several other projects I found that for this purpose people use the same function. The question is, are ...
2
votes
1answer
108 views

Which way of referencing S3 files is better / faster?

Is this method of addressing S3 files better / more reliable / faster? http://abcinfo.s3.amazonaws.com/something.doc or this way: http://s3.amazonaws.com/abcinfo/something.doc
2
votes
5answers
766 views

Custom URL/Domain (CNAME alias?)

I am creating an application in a LAMP stack and I want to provide the user with the ability to use their own domain instead of a subdomain of my site. eg. Instead of: http://some_user.mysite.com ...
2
votes
1answer
451 views

Rails route to model instance - by domain name

I have a Rails 3 application, say, with hotels, where hotels belong to parent areas. When a user hits the app (served by mongrel >> nginx), I want the domain name used in the request to decide what ...
2
votes
2answers
65 views

Will web ever have localized domain-names? [closed]

Will internet ever have localized unicoded domain-names other than english ? Is that really possible ? what are the obstacles that will come across in achieving this ? what problems will arise ...
2
votes
3answers
212 views

Parsing Domainname From URL In PHP

How I can parse a domain from URL in PHP? It seems that I need a country domain database. Examples: http://mail.google.com/hfjdhfjd/jhfjd.html -> google.com ...
2
votes
6answers
2k views

How to get whois information of a domain name in my program?

I want to get whois information of a domain name from my c#/java programs. Is there a simple way to do this?
1
vote
1answer
50 views

Is there a way I can find the canonical domain name for a list of websites?

I'm working on a page tracking web app and I'd like to get the canonical domain for a list of sites. As far as I know there is no good way of telling where a site's ownership of subdomains and top ...
1
vote
1answer
50 views

how to make url shorter in web2py and google appengine

I've been trying to make URLs shorter. For example, change www.mydomainname.com/myapp/default/mypage to www.mydomainname.com/mypage I add the following code in routes.py under the web2py folder: ...
1
vote
1answer
27 views

Does moving a domain to a new registrar pose any risk to its nameserver setting?

I want to transfer a domain name to a new registrar, but this is a live production site and I don't want anything goofy to happen to its nameserver settings. It needs to continue pointing to the same ...
1
vote
1answer
223 views

How do I associate my domain name with my AWS applications?

I've just starting using the Amazon Web Services (AWS) and I'm still learning about how it works and what features it provides. I have successfully built two of the sample Java webapps and uploaded ...
1
vote
1answer
429 views

How to check wether a domain name exists in asp.net with C#?

Is there a free/open source tool to verify wether a domain exists in c#? I ve a textbox where my user can enter his domain name and list of radio buttons like .com,.net,.in etc... Any suggestion.. ...
1
vote
2answers
235 views

How can I get a full list of registered domains? [closed]

How can I get a full list of all the registered domains in the world?
1
vote
6answers
335 views

Finding if domain name is already registered?

Hi, Is there any API to lookup if a given domain name is already registerd by somebody and get alternative (auto suggested available domain names)? EDIT:- I think the thing I need is called ...
1
vote
1answer
216 views

How can I get Visual Studio Web Development Server (Cassini) to send the domain name of the request to the web application?

We're developing an application that is sensitive to the domain name of the request. The problem we're running into is that we have to use IIS in order to test the application because Cassini will ...
1
vote
4answers
624 views

How do I register a domain with special symbols or characters?

Daring Fireball tweeted: ‘We Don’t Lie to Google’: http://✪df.ws/e4f I've been thinking about creating a url shortener and a short url similar to http://✪df.ws/ would be ideal as no one will ...
1
vote
4answers
307 views

Word-separating algorithm

What is the algorithm - seemingly in use on domain parking pages - that takes a spaceless bunch of words (eg "thecarrotofcuriosity") and more-or-less correctly breaks it down into the constituent ...
1
vote
2answers
515 views

Dynamically add subdomains?

I was wondering if it's possible to dynamically add subdomains that point to dynamic IP addresses, and how I would go about doing that? In other words, "how is dyndns/no-ip implemented" :-)? (The part ...
1
vote
3answers
495 views

Is there a pattern to define subdomain names for multilanguage websites?

I got a multilanguage website. I will have a lot of subdomain names, something like this: mysubdomain1.mysite.com, mysubdmoain2.mysite.com, mysubdomain3.mysite.com. Each one needs to be a ...
1
vote
4answers
104 views

Skipping DNS and using IP adress in web dev as opposed to URLs

How much time would be saved in skipping the request for the IP of a domain name? Would it be noticeable. Before anyone gets to excited i know there could be problems with using an IP as opposed to a ...
1
vote
2answers
632 views

Best way to determine if a domain name would be a valid in a “hosts” file?

The Windows Hosts file allows you to associate an IP to a host name that has far greater freedom than a normal Internet domain name. I'd like to create a function that determines if a given name would ...
1
vote
2answers
485 views

DNS: How to Dig thru the right domain name from the TLD?

I'd like to query the DNS records until get the right domain name. For instance, given www.subdomain.site.com.br, be able to dig from .br until site.com.br. Which is the most (protocol-speaking) ...
1
vote
2answers
807 views

Adding a Web Domain on Windows Server 2008

I recently purchased a Windows Server 2008 server, Our company will be using it as a Web Server. I have set the web site up in IIS 7.0 and I can accsess it by typing http://10.1.1.8 on the computers ...
0
votes
2answers
21 views

Domain name customisation? htaccess?

I have my personal website that I am developing so I can showcase my code, photography and digital art and also blogs to the public. Currently my site structure is : www.mysite.co.uk/sub-folder ...
0
votes
0answers
24 views

using cron job + whois + diff for domain name hunting [closed]

Can you give me the bash script to periodically check for a domain name availability, and email me the status update, if there's any. What I know is that this can be done using cron job, whois, diff ...
0
votes
1answer
22 views

Multiple websites on 1 VPS MVC

Right now im using shared hosting for my websites and im not very satisfied with it.. Someone recomended a VPS instead but I have no idea wich one to pick. Im developing ASP.NET MVC 3 sites and I ...

1 2