Questions tagged [tld]

TLD is an abbreviation for top-level domain.

The top-level domains (TLDs) are managed by registrars under agreement from ICANN (www.icann.org). There are several different types of TLDs:

  • gTLD - Generic top-level domains (.com, .net, .org ...)- Anybody can register these domains
  • ccTLD - Country code top-level domains (.uk, .us, .ly, .cc) - These domains normally have restrictions on their use, for example, only companies that operate in these countries may register them (.uk does not have this restriction, but .ie, Ireland, does)
  • sTLD - Sponsored top-level domains (.coop, .museum, .jobs) - These domains are for certain uses only. There are strict rules which must be met in order to register one of these domains.

See also http://icannwiki.com/GTLD for more details, including history and instructions for the proposal and registration process.

272 questions
0
votes
0 answers

Nginx redirect formatting

I'm setting up a server to host a website at 'https://domain.tld'. I need http and https schemes of 'www.domaintld.com', 'domaintld.com', and 'www.domain.tld' to all redirect to 'https://domain.tld'. I thought I had it all nice and happy, and with…
spectre6000
  • 455
  • 4
  • 17
0
votes
1 answer

Prevent failure in DTD fetching in glassfish (jasper) TldScanner from causing exception during web application startup

When I try to start my Jersey based web application I occasionally get an exception with the attached stack trace. I think it is caused by a failure in the xerces XML parsing within the web application loading in glassfish to be able to fetch the…
lexicalscope
  • 7,158
  • 6
  • 37
  • 57
0
votes
1 answer

How to open a domain based on the current country the device is located?

I'm developing this Android app for my company (let's say the main domain is mycompany.com) and I need to open the company's website with the specific TLD for the current country the device is located. So, locale based country codes are no good for…
rfgamaral
  • 16,546
  • 57
  • 163
  • 275
0
votes
0 answers

tracker errors in opencv3

I want to use TLD tracker. So, I installed OpenCV contrib (master), same as here. I installed OpenCV 3.x on VS2015. Installation process finished completely and, for tracking, it created just tracking.hpp and tracking_c.hpp in…
0
votes
1 answer

Regex to validate URL characters and all available TLDs

I'm new to regex and after few days of practicing/learning I manage to write URL validating regex. /^((?:http|https)):\/\/(?=[a-z\d])((?:(?:(?!_|\.\.|-\.|\.-|\.\/|-\/)[\w-\.])+?)(?:[\.][a-z]{2,}))\/([\w-\.~:\/?#\[\]@!$&\'\(\)*+,;=]*)$/i It works…
Nicolo
  • 1,600
  • 2
  • 16
  • 18
0
votes
0 answers

Jsp taglib could not be found

Hello everyone I got following Error displayed JSP Processing Error HTTP Error Code: 500 Error Message: JSPG0227E: Exception caught while translating /index.jsp: /index.jsp(0,1) --> JSPG0005E: tld file could not be found for…
0riginal
  • 137
  • 1
  • 11
0
votes
1 answer

Issue with uri of custom tag library

I have seen a weird problem while using custom tag libraries. In one of my jsp pages the relative uri path of the custom tld file is wrong. Taglib is included in jsp page like below <%@ taglib prefix="aaa" uri="WEB-INF/bbb.tld" %> Location…
0
votes
2 answers

error TLD use in a jsp file

I have the following line of code in a JSP File in my web app t <% if (!maintenance) { %>
Mercer
  • 9,736
  • 30
  • 105
  • 170
0
votes
1 answer

".media" domain is not recognized by mobile browser and instead the address is used as a search term

My company has a web address that is in the .media domain. We wanted to use this web address as a landing page for an Android application. The problem we have is that when people use the Android internet browser and enter the domain, it instead does…
0
votes
3 answers

Extracting a Hostname's TLD with a Regular Expression

Extracting an accurate representation of the top-level domain of a hostname is complicated by the fact that each top-level domain registry is free to make up its own policies regarding how domains are issued and what subdomains are defined. As there…
tadman
  • 208,517
  • 23
  • 234
  • 262
0
votes
2 answers

Routing TLD in docker image to 127.0.0.1

Foreword My rails app cares about the hostname. So for example when the request comes from domain-a.dev it behaves differently than when the request comes from domain-b.dev. I want to test this behaviour and therefore have routed the complete *.dev…
Markus
  • 5,667
  • 4
  • 48
  • 64
0
votes
0 answers

Drop down value reset to first value after retrieve

<%=((org.apache.struts.action.DynaActionForm) request.getAttribute("org.apache.struts.taglib.html.BEAN")).getMap().get("modelYear")%> After choose a value in drop down then submit, it will reset to the first value…
Maharajan
  • 303
  • 1
  • 2
  • 13
0
votes
1 answer

in struts add button instead of submit form

How to submit the form on click of button to call function inside javascript call with all information of form given below. I am using struts core tag library and add button tag. Below is the code
0
votes
2 answers

Apache tomcat 8 Mandatory TLD element tlib-version missing or empty in TLD

I have an issue with tomcat 8, it does not occur when the web application is run in Tomcat 7. details of the error org.apache.jasper.JasperException: Mandatory TLD element tlib-version missing or empty in TLD…
user2168435
  • 732
  • 2
  • 10
  • 27
0
votes
1 answer

RewriteCond: Ignoring a top level domain

I have the following rewrite in my .htaccess file: RewriteCond %{HTTP_HOST} ^sub.domain.lc(.*) RewriteRule $(.*) app.php$1 [NC,L,QSA] I am using sub.domain.lc to develop on my local machine, but when my site goes live it uses another top level…
Scuba Kay
  • 2,004
  • 3
  • 26
  • 48