domain

Configuring DotNetNuke installation on GoDaddy shared hosting to properly map DNS to secondary parent portal

I have a GoDaddy shared hosting account where I've installed DotNetNuke. I'm trying to configure a secondary parent portal so that when users browse to my second domain, they see the new portal. Here is my current setup: Main DNN portal: http://MyFirstDomain.com/dnn Domain mapped to: \dnn\Portals\1 (through GoDaddy Hosting Control Pan...

What query can I use to search for a list of keyword centric domains in search engines ?

Can anybody tell me what query- footprint can i use in search engines to get domains which contains the exact "keyword" in their domain names short urls www.topkeyword.com/ - and not long urls(domain.com/...../keyword/ , so searching for the keyword "keyword" I want to find a domains like keyword.com , bestkeyword.net , t...

Accessing locally hosted (II6) site from XP Pro on domain from other same-domain PCs...

When my colleagues try to access a site hosted under a virtual directory on my local machine's IIS they get a pop up dialog asking for their domain username and password. When my credentials are entered they then get access to the sites hosted on my PC. How do I disable/stop/get around this dialog? I want everyone requesting sites on my ...

Collection as a metaphor for real world containers

I find modeling physical containers using collections very intuitive. I override/delegate add methods with added capacity constraints based on physical attributes such as volume of added elements, sort based on physical attributes, locate elements by using maps of position to element and so on. However, when I read the documentation of ...

HTACCESS password protection for parked domain, but not for main domain

Hi, I have two domain: asdf.com and asdf.ru (.ru is a parked domain). They are pointing to the same folder on the server. (Everything is the same, the only difference is the language). I cannot use subdirectories. Is it possible to protect the .ru domain with password, but leave unprotected the .com domain? Thank you. ...

Generating report from multiple mysql databases hosted on different servers

Hello, I have four different servers; parent.com, a.com, b.com and c.com. At the end of the day I have to pull data and generate report from a, b and c and show in parent. a, b and c databases are having same the structure, but as I mentioned, they're hosted on different IP/server. Can you please tell me what may be my approach? ...

Domain (country) realted banners in PHP based system

I have an PHP based Youtube clone system installed on our server. The same system is used in couple of countries. Let's say that I have 3 domains that all point to the same system: www.site.hr www.site.ba www.site.rs They all redirect to some site named www.site.tv These 3 countries have very similar languages so it makes sense to h...

Domain .com and .ca (SEO point of view)

I can and will buy 2 domain for a great website (as all the site is) mydomain.ca and mydomain.com q1 : What is the best thing to do after it have been buy... .htaccess redirect the .ca to the .com make the .ca a exact duplicate of the .com put some content on the .ca and some on the .com if i have a forum, but the .net too... WHAT wou...

sharepoint: obtain domain Ip related to current user

hello how i can obtain domain ip that user is joint to that domain in sharepoint website? ...

How do I tell search engines not to index content via secondary domain names?

I have a website at a.com (for example). I also have a couple of other domain names which I am not using for anything: b.com and c.com. They currently forward to a.com. I have noticed that Google is indexing content from my site using b.com/stuff and c.com/stuff, not just a.com/stuff. What is the proper way to tell Google to only index c...

Cannot GET domain objects from JMS listener

Hi All, In my application I am trying to send e-mails to our customers when some "event occurs" for eg. like when we receive a payment or a new customer sign in... I am successfully able to capture to those events and I am trying to send the mail and here comes the problem I am using JMS to have all this sending mail functionality in t...

urgent: obtain domain of computer

hi, i am using a sharepoint portal over a computer. how i can obtain domain of that computer. ...

10 different domain names with 2 php files only database query changes

i have 10 domain names which has 2 php files index.php, inside.php only query changes as per site id right now i am uploading 2 pages through ftp to 10 sites is there any easy way to do this? ...

301 redirect to new domain in Rails with NginxHttpRewriteModule, pivotal/refraction, or Rack::Rewrite?

nginx, rack-rewrite and refraction are possible solutions for my migration. It's a simple 1-to-1 mapping from old URLs to a new domain from the old one, e.g. http://old.com/posts/id to http://new.com/posts/id, so hopefully not too hairy. Does anyone have any good/bad experiences with these different approaches or have any comments on ...

Codeplex-like TFS configuration

Hey guys. I'm trying to configure TFS2010 on a home server. I want to use TFS in such way: 1)Some contributers are working in a small home office working with the same domain name as a server on which TFS is installed. 2)Other contributers are working remote. And contribute code through the web, accessing the server through router. I ...

Country-specific domain promotion... in another country

I wonder if anyone tried promoting a website on a country-specific domain for the wrong region? I know there is no reason to do that (unless you're crazy), but I just became curious after my client said he'd prefer to keep an old .us domain while promotion is needed for a different country I advised him to get a .com or .net and set up a...

htaccess redirect all pages to single page

Hi I want to redirect all of my old domain request to my new domain using htaccess file. Below is what I am using but it does not work if the page is not on the new site. For example google index about.htm on the old site but on the new site it does not exist. I would like it to just go to the root in all cases. I know this is not idea...

How can I find the hosting company URL by domain name?

Hi, so I'm looking for a server host for a website that I'm building. Generally I know from continually visiting sites which ones I like and which I don't. I think this is a much better way than simply measuring ping times to determine speed. So I want to know if there's a way to find out which hosting companies are hosting certain doma...

windows apache dynamic domain

Hi all, I have Windows 7 + Zend server In httpd.conf file i have: NameVirtualHost *:80 <VirtualHost *:80> ServerAdmin keyne@localhost ServerName local-izbori.bg ServerAlias *.local-izbori.bg DocumentRoot "C:\Program Files\Zend\Apache2\htdocs\izbori-www" <Directory 'C:\Program Files\Zend\Apa...

How to validate in domain layer

I often see people validating domain objects by creating rule objects which take in a delegate to perform the validation. Such as this example": http://www.codeproject.com/KB/cs/DelegateBusinessObjects.aspx What I don't understand is how is this advantageous to say just making a method? For example, in that particular article there is...