Godaddy And Hotlinking

Apr 25, 2005

I am using godaddy hosting, but there is a problem - godaddy allows picture hotlinking by default. So i am loosing a lot of bandwidth.

How can i block this? I have never used .htaccess and don't know how to do it.

View 8 Replies


ADVERTISEMENT

Hotlinking And IIS 6

May 15, 2007

I've tried a couple of different apps and solutions re hotlinking and IIS w/out finding a real winner. Hoping folks may have some recommendations re apps and/or solutions for dealing w/ hotlinking and IIS 6.

View 0 Replies View Related

Spammers Hotlinking

Nov 8, 2009

I have found some spammer hotlinking to my images to get his site crawled, I have modified the .htaccess to attempt and serve his hotlinking domain with a warning but it does not work...

My actual .htaccess file is the one below (it was created by wordpress automatically):

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

I am adding these lines right below:

--------------------------------
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(.+.)?spammerdomain.com/ [NC,OR]
RewriteRule .*.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpe [L]
------------------------------------

My questions...

I dont kmow too much what I am doing, following the tutorial here, http://altlab.com/htaccess_tutorial.html but the problem is that my .htacces already contains something created by wordpress that to me looks like garbage as I don't understand the meaning.

I dont know if I should add the lines inside the <IfModule mod_write.c> or outside them as I have done.

I dont know if it is ok to have two times Rewrite Engine On

PS: When I added the lines I describe above, my site also stopped displaying the images, I had stopped everyone including myself from hotlinking them. I only want to stop certain domain. or even better, my ideal solution is to WHITELIST my domain names (I have two using hotlinkg to those images), but I will settle for blacklist if it is easier.

View 9 Replies View Related

CDN That Prevents Hotlinking

May 15, 2009

I am looking for a content delivery network that will only serve files to a list of allowed hosts. This is such a basic "doh" feature, but nobody seems to have it (Mosso CloudFiles doesn't have it, and even Amazon S3 has no easy-to-use hotlink protection). Has anyone found such a CDN?

View 10 Replies View Related

Stop Hotlinking

Jul 19, 2009

Is there a way to stop hotlinking? I have a client who has a blog. They have post pics of tattoos. Now there are at least 50 tattoo forums, blogs and other sites hotling to the pics. Now his bandwidth usage has skyrocketed. So enable hotlink protection in his cPanel. Just did a redirect to my main hosting site with a nice please stop hotlink image. Now I see all this in my logs. So I then made a 150 x 9000 clear BG gf with the text at the top please stop hotlinking.

My questions is there any way to stop it. If not should I just make a 1x1 clear gif to redirect to? Also is there a way to not have this traffic show in my log files?

View 4 Replies View Related

Hotlinking (url Rewrite)

Aug 15, 2008

I'm facing some issues with hotlinking here. the htaccess do not work because users can still use their download manager to download the file without going to my site.

I've seen few sites that got tempoary url that changes every X times and that support download manager.

View 4 Replies View Related

Enable Hotlinking

Aug 5, 2007

I moved my website from one server to another just today and my site has a rank on another website. The ranking site lets me display my rank on my website through a hotlink to their site. When I moved my site to the new server, I can't see the image. On the old server, I could always see the image.

This is a strange issue since in Firefox, I see the image load and then it tells me the image is empty. But when I open the image's URL, I can see it just fine. I've reloaded the page over and over again, but I don't get anything. The same applies to IE.

What's even more strange is when I use a proxy, I can see the image just fine through my browser.

View 4 Replies View Related

Webhosting Solely For Hotlinking

Feb 15, 2009

I am a graphic designer/photographer who creates designs for music artists, producers etc. on Myspace (I know, I know). This obviously involves lots of hotlinking, and that is why I am here.

I provide customers with hosting for their layouts so that they don't have to go out and search for one. I am currently hosting the images on a friends private server, but it's fairly slow and I want something more reliable. One layout usually has around 20 different images (background, headers, banners, etc) and I try to make sure it comes out to a little under 1MB, so I don't need to worry that much about disk space. I'd say bandwidth might be the only issue if anything.

I enjoy the work but it's mostly a side business and doesn't create much revenue, so I'm trying to go for around or under $10 a month. That said, I also want to make sure things are fast enough for the visitors and am willing to up the budget if required. I was going to go with 1and1 or Hostgator but heard alot about overselling.

View 12 Replies View Related

Movie Hotlinking Script

Jun 24, 2008

I have a lot of movie clips on my server i think gets hotlinked. Does anyone knows of a good anti hotlinking movie script?

View 4 Replies View Related

Preventing Hotlinking Of Images

Sep 15, 2007

The images I am trying to block are on page generated by a simple PHP script on my server. The offender has replicated what I am doing with ASP on their server. They are hotlinking to my images for the resulting page. They left my website's name on them, so they must think that giving credit is enough.

I'm going to be contacting them to stop but I also want to see if there is a way for me to prevent it from happening in the first place.

I tried mod_rewrite...

Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^[url].*$ [NC]
RewriteRule .(gif|jpg)$ - [F]

I know mod_rewrite works on my server because I've been using it for some other things.

However, whenever I enable the above code (add it to the directives and restart apache - have also tried just putting it in a .htaccess file in the appropriate directory), I end up with images still being allowed on my domain and the other domain I'm trying to stop from using my images. Do you think it could have to do with an absent referrer? I read that the code doesn't work if the referrer is blank. What else would cause this not to work? Obviously the domain would have to be correct, but it doesn't block from my domain OR the offending domain.

I tried another method:

Code:
<FilesMatch ".(gif¦jpg¦png)$">
SetEnvIfNoCase Referer ^$ allow_image
SetEnvIfNoCase Referer ^[url] allow_image
Order Deny,Allow
Deny from all
Allow from env=allow_image
</FilesMatch>

This one blocked images to the offending domain, but it also blocked mine!

View 3 Replies View Related

Disable Hotlinking FOR Specific Site

Jan 6, 2007

I have came across site in my statistics that apperantly runs with about 99% of my content flash files. He put adsense all around them, too - sneaky.

I know it is possible to disable hotlinking from other sites using htaccess, but is it possible to disable hotlinking for ONE site? I need to block .swf that come from example.com domain.

View 0 Replies View Related

Cloak The Real Url Adress To Prevent Hotlinking And Havetempoary?

May 5, 2008

im currently looking for a mod that can cloak the real url adress to prevent hotlinking and havetempoary links which expires after x min and a new linkupdates

View 2 Replies View Related

Godaddy Vs 1and1

May 8, 2008

Which one is better in shared hosting between godaddy and 1&1?

View 14 Replies View Related

What Do You Think Of Godaddy? And What Os Do You Recommend?

Oct 29, 2008

what do you think of godaddy? and what os do you recomand?

what do you think of godaddy? and what os do you recomand?

View 12 Replies View Related

Ftp On Godaddy Not Working

Oct 5, 2006

alright so first i used smartftp... and i thought i uploaded everything and when i go to ftp.mydomain.com all the files are there but anytime i actually try to go to mydomain.com, nothing shows up, and i already uploaded my index.htm

i saved everything in an htdocs folder, was i not suppose to do that, or am i still suppose to do something at ftp.mydomain.com? or was i suppose to upload straight to mydomain.com

View 1 Replies View Related

Web Hosting And Godaddy

Dec 8, 2008

I registered a domain name with godaddy. I host on a local windows 2003 box. I would still like to use GD's email. I went into my windows DNS server and added the 2 MX records godaddy said. MX0 smtp.secureserver.net and MX10 mailstore1.secureserver.net. There must be more than this. When I try to use godaddy's webmail mail.mydomain.com, it does not work. What else do I have to add to my Windows DNS server to make this wok.. My web site resolves just fine ...

View 2 Replies View Related

Is GoDaddy Any Good?

Sep 5, 2008

is GoDaddy any good?

View 14 Replies View Related

GoDaddy Review

Apr 16, 2009

I'm starting with GoDaddy since I've been with them the longest. I left AOL and created my first site in 2000. I went with another host first. They were reliable, but they didn't provide me enough space, so I went with GoDaddy. I thought their first superbowl commercial was hilarious and decided to give them a try in 2005. Their monthly rate was very close to the $2.95 I had been paying for my previous host. I think paying by the year, it averaged about $3.29 a month. Godaddy offered a huge amount of space and bandwidth for that, and I got more email accounts than I would ever use as well.

The best thing I can say about this host is that I have NEVER noticed any downtime with them. I visit my site at least once a day, and it was always up. That is the most important aspect of a host for me, and everyone brags about 99.9% uptime. I can now tell you from experience that not all hosts are being truthful about that percentage, but Godaddy is.

The next thing that is almost as important as uptime is how economical they are. I have quite a few domains with free hosts, which are good for sites that you don't maintain that much and have little traffic. I'm not made of money, and I make very little from my websites, so I can't afford more than a few dollars a month in hosting. Godaddy was the cheapest out there in 2005. Not only cheap but reliable. I can't stress how important those two aspects are, or how hard it is to find both those.

Now the few negatives, and the reasons I left godaddy in the spring of 2008 (which was also one of the biggest mistakes I've ever made online). You get 100 email accounts with hosting with a max of 100 MB total for those accounts. So you can either have 100 accounts with 1 MB email storage or 10 accounts with 10 MB storage, but there was no way to change that max of 10 MB per account. I didn't like that at all, especially with all the free email accounts out there with 1 GB storage. I was paying for hosting and only getting 10 MB for my main email account? I ended up creating a yahoo account that I used more often for the storage. Well, goaddy has now fixed that issue, so we can put all 100 MB to one account if we want to. It's still too low of an amount, but I can live with it.

I know enough about how the web works to get myself into trouble, but when I set up my first ftp account with godaddy, I had no idea that it would become part of my root path. So anytime there was an error on my forum, my ftp account name would be shown to all my users. I chose my own name when I created it and didn't like that aspect at all. I emailed godaddy, since I couldn't change the username in my control panel. They responded that it was impossible to change it. I told them that I might have to leave them if I couldn't, which I did end up doing. This was probably the main reason I left and it would still bother me that I couldn't change it. I'm now back with them and was able to create a new username that was more suitable. I don't know if they still don't allow you to change your ftp account, but that's a moot point for me now.

Lastly, I had been doing a cron job for backing up my forum database. Godaddy did some upgrade of their software, and it conflicted with my jobs. It would no longer run, so I complained to support. They blamed me for it somehow and didn't seem willing to fix the problem. I researched and everything pointed toward Godaddy not upgrading properly, but I couldn't convince them of this. Well, it turns out that all my subsequent hosts have one problem or another with doing cron job backups, so it was pointless to leave one host for another for this reason. I don't even do the cron jobs anymore, since it wasn't worth the frustration. And what good are they if you don't download them frequently, and your current host suspends you for no good reason? Of course, that is why I have returned to godaddy, but that's a different review.

Unfortunately, since I left godaddy last year, I lost the special price I was getting. They are a bit more now, but paying for 2 years brings the average price down to $4.50 a month (they get cheaper the more years you pay for at once). $4.50 a month is still lower than most of the hosts out there, and I know I can rely on godaddy for uptime. Again, uptime and price are the most important to me. Yes, they have their faults, but believe me when I tell you, NO host is perfect. You just have to weed through the unprofessional and/or bad ones to find the best choice. Oh, and the third most important thing about a host is that you can trust them. Reliability is very important. You want to know that your account is safe with these people. That they won't suspend without good reason or treat you like you don't matter. We are the customers after all. They wouldn't be needed if not for us, but a few hosts seem to forget that fact. So far godaddy has proven they can be trusted.

View 14 Replies View Related

GoDaddy Domain = 404, IP = 403

Apr 2, 2008

I used to run a blog on blogger.com and it was going well, but I decided that it wasn't enough having it run by someone else, so I decided to purchase my own hosting to install wordpress and continue the blogging there.

I already had purchased the domain name from them, so it made sense to me to purchase some basic hosting from them too, as I'd never really heard anything bad about them.

But, now I am having problems. I tried to install wordpress, followed everything exactly, but this lead me to nothing, so I went back to basics, and just put a basic html file on the server, to see if I could look at it from a browser.

The domain is: theapblog.com (file= theapblog.com/home.html).

Whenever I use the domain name, I get a 404 error, it cannot find the server. If I use the IP address of the server directly, I get a 403 error, so I don't think I can actually access any of the files from a browser.


Basically, I'm pretty new to this, and would really like some help. As far as I can guess, it appears as though the domain isn't linked to the server, as surely then it too would return a 403, and as for the 403, I really don't understand.

View 11 Replies View Related

Netfirms To GoDaddy

Oct 9, 2006

I got a website hosted with Netfirms now, But i want to start another website with GoDaddy (i found out they were cheaper). But, to avoid multible billings, i want to transfer my netfirms website to Godaddy. Before i want to start an account with GoDaddy i want to know how to do this.

View 7 Replies View Related

Godaddy: Upgrade From IIS 6 To IIS 7

Jun 1, 2009

I am looking to upgrade my hosting account from IIS 6 to IIS 7, as I haven't been able to install some of the apps that I want on godaddy. I am just looking for a quick direction should I upgrade or not? I am not very knowledgeable about IIS thing, Godaddy says that If I upgrade I will not be able to downGrade, that makes me more snif*

please has anyone upgraded? so please tell me what would the consequences? or if any godaddy staff reads it please also tell me that on Upgrade page it shows me my directories, should I check them all?

View 9 Replies View Related

Godaddy VPS With Low Performance

May 2, 2007

We shifted one website based on Article Dashboard (its an article directory script coded in Zend) to a Godaddy VPS ($35 per month) from a shared hosting account with hostgator.

This VPS is really slow compared to hostgator account.

Can anyone tell what we should do?

View 6 Replies View Related

Moving From Godaddy.com

May 10, 2005

i am moving from godaddy.com.

i am facing a lot of technical errors hosting asp.net pages.

it does not support emailing it gives out errors.

it does not support file handling and directory creation

can anyone tell me a good hosting company.

View 1 Replies View Related

GoDaddy VDS Linux

Jul 8, 2008

I have recently purchased a GoDaddy Virtual Server running Fedora 7, with the Plesk Control Panel 8.3 installed - if I had remembered this site then I probably wouldn't have chosed GoDaddy, however my colleague runs a GoDaddy server and it works like a dream. I have only one domain on the site, running Boonex Dolphin 6.1. The site however runs EXCEPTIONALLY slow.

I have spoken with many friends that use Dolphin and they have no major issues. I also did a search on Google and found that there appear to be no major speed issues with Dolphin.

The site I am running is http://www.tkd-web.com

I wondered if some of you guys could take a look and let me know if it looks like a hosting issue or a scripting issue. Or what information do you need to know to find out the answer to this problem.

I would be really grateful to anyone that can even point me in the right direction, as I don't want to go off and start shouting the odds about GoDaddy etc, I just want to find the most effective solution to my issue.

View 14 Replies View Related

GoDaddy? Cheapest Ever?

Apr 16, 2006

Person with the best info and most helpful for me (in my opinion) gets $10US via paypal

So I'm making one of those myspace resources websites in the hopes to get the odd weekly amount from advertising (yahoo/google ads) etc. Now before you jump on the "Oh boy, not another myspace website!", this site is totally different, but the same kinda thing applies.

Now, of course If I want to earn a decent amount on say 10000+ uniques a day I'm going to need a bit of bandwidth. The site itself isn't bandwidth heavy but I'd like to plan for the future.

Anyway, so I was looking at Godaddy and well

Economy Plan:
• 5 GB Space • 250 GB Transfer
• 500 Email Accounts • FREE! Software
• 10 MySQL Databases • 50 Email Forwards
• Forums, Blogging, Photo Galleries • No ads


Now, I only need 1gb space tops, but 250GB BANDWIDTH? Holy crap, I haven't seen that for that price ever?

3.95 a month? That's insane.

Is it really too good to be true? What should I be looking at? I just need it on one domain and that's fine because I'd want its own hosting package for each domain as I slowly develop more websites.

Can anyone please shed light for me and give me some general info on the path I should take.

Note: I don't want hosting packages where, if you do go over the monthly bandwidth (God Forbid at 250gb!!) I don't want to be charged an exorbinent amount. Just the "Bandwidh Exceeded" message would suffice.

Anyway, I look foward to some great responses.

Person with the best info and most helpful for me (in my opinion) gets $10US via paypal

View 24 Replies View Related

Using GoDaddy SSL With New Server

Sep 9, 2008

I have a client who has a ssl cert with godaddy but wants to change his hosting to me because he doesnt like godaddy at all. Can we switch his ssl from godaddy to my server?

View 11 Replies View Related

Godaddy Stats

Apr 4, 2006

does anybody know if there is a possibility to circumvent godaddy´s pathetic stats they offer on shared accounts?

-I am not quite sure what tells you the unique visitors (always a good one to know )

-It doesn´t tell you what robots crawl your site. It just says: robots 28 (great!)

-The graphs are all reversed. Meaning that the now date is always on the very left hand corner of the x-axis towards the 0 intersection. This is pretty pathetic as it goes against anything human brains are accustomed to.

I´ve got to stop venting now. I would appreciate if somebody knows where I can find the unique visitors (hosts served maybe?) and how I can install a better stats program on Linux shared hosting at go daddy.

View 3 Replies View Related

Alphared VPS Vs Godaddy VPS Which Better?

Jun 11, 2007

Does anyone used the alphared VPS?

I want to buy a vps which is better alphared or Godaddy.

View 8 Replies View Related

GoDaddy - A Brief Review

Nov 1, 2009

My domain name and my web hosting package that I had with GoDaddy came up for renewal on Friday (two days ago), and my intention was to transition to a new domain registrar and web host. The new web host that I chose to go with is HawkHost, but they are not the subject of this particular review. Rather, GoDaddy, the web host that I am leaving, is.

I will save my comments for HawkHost for a separate review dedicated to my experiences with them.

I had not really intended on writing a review for GoDaddy, but my experience with their tech support, tonight, prompted me to write a brief review.

As I sit here at my computer late into the wee morning hours of Sunday morning, right now, I find that there's a lot of irony, when it comes to obtaining or departing web hosts.

Off the top of my head, I don't know exactly how long that I have had this particular web host account with GoDaddy. It's been at least two full years or more, I know. I have statements handy in front of me for the last years, so it's been at least two full years. One statement is dated August of 2007.

Anyway, during my time with GoDaddy as a webhost, I have not really experienced a lot of downtime. There may have been some, but I never really tracked it closely, and the site was pretty much up and running and accessible over that entire period of time, whenever I would try to load it in my web browser.

During that time, I've never had to deal with any rude tech support from GoDaddy. At times, tech support at GoDaddy was more helpful than at other times, but I didn't really need to call them a whole lot during that time frame of 2+ years.

Even though I am leaving GoDaddy as a webhost, my experience with some tech support guy named Austin that was the last person that I spoke to earlier this morning ended with me choosing to extend my web hosting for another month for $4.99. I post this simply to illustrate how good tech support can benefit a web hosting company, even when a paying customer of some time is already in the process of switching paid web hosting to another web hosting company - switching to the competition, so to speak.

So, why am I switching web hosts, if I have numerous positive things that I can honestly and sincerely convey about GoDaddy as a webhost unto those who read the forums here on WebHostingTalk?

Being on a slow dial-up Internet connection (24K to 26.4K, on average), GoDaddy's webhost control panel is the equivalent of Internet Hell. I hate it. I despise it. I absolutely and positively abhor it with a passion that knows no end. I, with my slow dial-up Internet connection, have endured this burden of incalculable magnitude for 2+ years, and I have simply had enough. This is an example of how otherwise good and reliable web hosting service and tech support is undermined by interface issues. It's not an issue, if I am at my sister's place, where she has a DSL Internet connection.

But, it is a very real issue to me at home on my slow dial-up Internet connection. I have dealt with numerous web hosts' respective web host control panels over the last several years, and no other web host that I have interacted with, where their control panels are concerned, come anywhere even remotely close to the abyss of despair that trying to do even simple tasks are in GoDaddy's control panel. 'O, woe is me, when I have to use their control panel, at all.

That said and highlighted, I would like to take a moment out to give GoDaddy two big thumbs up for not rushing to delete all of my site's files, the moment that my web hosting with them expired. If GoDaddy had deleted them, already, then I would not have extended my web hosting with them for another month, here two days later. This, I think, illustrates well how GoDaddy did not slice its own throat by extending the courtesy to myself, a paying customer that was departing for a new web host, by being in a rush to delete the customer's files. Granted, it's not something that GoDaddy had to do, but likewise, neither did I have to extend my web hosting for another month. This type of business approach on GoDaddy's part is conducive to reducing problems, and ultimately yields a more positive image of the company, compared to numerous web hosting horror stories that I have read about in web hosting forums over the years.

I did, however, choose to renew my domain name registration with GoDaddy two days ago, just to ensure that my domain name would not lapse. I've been through that headache, before, and it didn't really matter to me who my domain name was registered with. This aspect was a non-issue.

So, in conclusion, my overall experience with GoDaddy as a web host was positive, but their control panel was - and has always been - a very glaring negative for me. If you have broadband Internet access, their control panel likely won't even be an issue for you. If you have a slow dial-up connection like me, however, then I would not recommend going with GoDaddy as a web host, although I think that if you do, anyway, then you will be likely to enjoy a reliable degree of site uptime, overall - if my own first-hand experience over the past 2+ years is any indication.

View 7 Replies View Related

How To :: Nameservers On Godaddy

Jul 31, 2009

I have a domain registered via GoDayy.

Now what I want to do is that have my own nameserver such as

ns1.mydomain.tld and ns1.mydomain.tld

I already have my new dedicated server ready, it runs: whm and cpanel.

View 2 Replies View Related

Migrating From Godaddy

May 21, 2009

I was wondering, since I know their are tools to automate transfering services from one cpanel server to another, is there any automated one to transfer from godaddy to another host? Im refering to all my files, mysql database, ssl, etc. All but the name servers? Its from a linux godaddy

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved