when do pending domains become available to someone else?

Thursday 10 November 2011 @ 10:48 am
expired domain names
Love my Daughter asked:


We had a website for our company with our company name but the guys who created it got lost and now it expired and can’t pay for it again because we dont know how to. It expired on 8/27/10 and we want to buy it again, when i go to the website it says ” this web site expired on 8-27-10 and is pending for renewal or Deletion. Its been more than one month and it still doesn’t let me buy.. how long more is it going to take for them to delete it and make it available for me to buy it again.

its from network Solutions.





Can i use back my domain name ?

Wednesday 26 October 2011 @ 9:57 pm
expired domain names
AA asked:


I purchased a domain name through Google in 2008 and that name expired in December 2009 which i did not extend it. Now i would like to get it back. Is it possible for me to get the domain name which i had last time around ? if yes, what shall i do ? thanks





computer networks helppp?

Tuesday 18 October 2011 @ 3:07 am
expired domain names
Mr Changsss asked:


can someone tell me how to find this information about my computer.

Computer Name
Domain Name
Whether it is using IPv4 or IPv6
IP address
Whether the IP address is dynamic or static (DHCP enabled)
DNS Server (Is it assigned or automatic)
Default Gateway (Is it assigned or automatic)
If Dynamic IP – Lease obtained. Expired Information
Name of the network Card
Physical Address (MAC)

System information:

CPU Speed
Memory
Operating System (include 32/64 bit version, last update date)

Lab Report will include the above information and be submitted as an attachment





Renewing domain name problems -.co.uk domain?

Monday 17 October 2011 @ 11:36 am
expired domain names
Errapolis asked:


I have a domain name which expired around a week ago. The company i had transferred it to want me to renew it (it is appearing as a renewal on their site) with them but the fees are too much.

I tried to repurchase it at another website but its marked as “taken” and won’t allow me to reregister.

I have carried out a WHOIS check and no-one else has taken it, the domain is still appearing as registered to me but expired a week ago.

Why won’t it allow me to repurchase it, is there anything I have to do to fix this?
I have also attempted to “transfer” the domain to another company (the one i want to repurchase from) and it wont let me as it’s expired. Totally confused now?





I bought a domain name that a company let expire. How much is it worth?

Tuesday 4 October 2011 @ 8:03 am
expired domain names
Ray asked:


I bought a domain name that a company let expired and now the company says they are going to sue me?? My friend says they are just trying to scare me because they let it expire and once it expires then it’s up for grabs. He says I can resell it to them for a lot of money? if that is true than how much can I resell it for? Let’s say the name is Nike, Johnson & Johnson, Boeing or Pepsi just to give you an idea.





Can I trademark the Dot-Com name without owning the Dot-Com domain name, if the owner not yet start the firm?

Friday 23 September 2011 @ 4:56 pm
expired domain names
Bankerfelix asked:


I have a good dot-com name i created 10 years ago and 6 months ago, i forgot to renew and it got expired and immediately picked up by somebody (ouch and dammmm). I can’t do nothing about it. So I am planning to file trademark on the Dot-Com name for my origional business concept since the new owner has not done anything to it yet…Trade Mark Attorney pls advise. Because I am the fist to trade mark and copyrighted the domain name not the owner of the domain! Right?





Using a public domain, previously trademarked word in a company name?

Tuesday 20 September 2011 @ 1:18 am
expired domain names
Sydney [wexfordkid] asked:


There’s a certain fictional character whose name I want to use as part of a legal company name ([name] Enterprises, or whatever). The character appeared in a story dated 1927, so the copyright will be expiring soon. Once it does, can I legally use this name as a part of a business name?





Can I sew the company for letting my business’s domain name expire?

Sunday 18 September 2011 @ 7:58 pm
expired domain names
robbie asked:


I run a successful company & sell alot of business online.. My domain name for the business was due to expire & needed to be renewed but the company failed to do so!.. Now the website is down & I am not earning. What should I do?





Why does my Javascript popup cookies are not working in Chrome?

Saturday 17 September 2011 @ 2:52 am
expired domain names
nitesh asked:


This is the script for the same:

//document.body.onLoad = window.setTimeout(“fireMyPopup()”, 1500);
var expDays = 1; // number of days the cookie should last

var page = “AAServer_popUp.htm”;
var windowprops = “width=300,height=200,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes”;

function GetCookie (name) {
var arg = name + “=”;
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + “=” + escape (value) +
((expires == null) ? “” : (“; expires=” + expires.toGMTString())) +
((path == null) ? “” : (“; path=” + path)) +
((domain == null) ? “” : (“; domain=” + domain)) +
((secure == true) ? “; secure” : “”);
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() – 1);
var cval = GetCookie (name);
document.cookie = name + “=” + cval + “; expires=” + exp.toGMTString();
}
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function amt(){
var count = GetCookie(‘count’)
if(count == null) {
SetCookie(‘count’,’1′)
return 1
}
else {
var newcount = parseInt(count) + 1;
DeleteCookie(‘count’)
SetCookie(‘count’,newcount,exp)
return count
}
}
function getCookieVal(offset) {
var endstr = document.cookie.indexOf (“;”, offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}

function checkCount() {
var count = GetCookie(‘count’);
if (count == null) {
count=1;
SetCookie(‘count’, count, exp);

window.open(page, “”, windowprops);

}
else {
count++;
SetCookie(‘count’, count, exp);
}
}
function fireMyPopup() {
var count = GetCookie(‘count’);
if (count == null) {
count=1;
SetCookie(‘count’, count, exp);
document.getElementById(“mypopup”).style.display=”block”;

}
else {
count++;
SetCookie(‘count’, count, exp);

}

}
function onBodyLoad() {
var t=window.setTimeout(“fireMyPopup()”, 1500);

}





My domain name has expired but my details are still on Whois?

Tuesday 6 September 2011 @ 12:52 pm
expired domain names
haadyagob asked:


I paid my subscription 2 weeks after it expired and now some anonymous person is using it. My domain provider won’t answer my letters or emails. Should I just give up on this and just register a new domain name and cut my losses?
http://domains.whois.com still shows MY details as domain owner. Other WHOIS sites says someone else. Confused!





Next Posts »» «« Previous Posts