Jump to content

TCH-JimE

Members
  • Posts

    2,740
  • Joined

  • Last visited

Everything posted by TCH-JimE

  1. Hi, You haven't stated what Windows version your running but I hope when you have done a fresh install and update, you will back it up so that if you ever need to do this again, you can just reload the backup bit! jim
  2. required
  3. Hi, If you got IE 6, your in for a hard task. I would re-install IE, patch it to kingdom come, then de-frag and do a scandisk and then see how it goes Jim
  4. Hi Das, Glad your looking at becoming part of the family here. As one advert famously states, "it does exactley what it states on the tin". What you see is what you get, there are no additional charges unless you want to upgrade or go over your bandwidth, buy a SSL cert etc. So when it says $19.99 a month, that's exactley how much you will pay, there is no additional charges for ftp or per domain costs (aren't we good!) Nope you pay for the account and thats it. What you charge your own clients is your own buisness. Only in bandwidth and HDD space. If you got any more questions, do let me know! Jim
  5. Hi, Once it has been established that PHP 5 is secure enough, Head Guru will look at changing it, but it will be at his discretion Jim
  6. Welcome to the family Webgrl, I am sure that your phpform question will be answered to the best of our abilities Jim
  7. Hey Doc, nice name change! Jim
  8. Hi, What you need to do is start a help ticket stating the domain you wish to park. Please remember it must point to the root domain, and the email will stay the same for the old domain. Jim
  9. If of course, you already have an account here then you have the following solutions: 1) Point your domain name to the account. if the account has no domain name linked, not a problem 2) If there is already a domain name, you can park it ontop of the current domain name and it points to the root only. Submit a help ticket to do this 3) You want to point it to a subdomain. This is not allowed. Jim
  10. Barbara, If your transferring to TCH then here goes: 1) Purchase your hosting account and transfer all your files to this account. 2) In the account details we give you, will be some DNS name servers. Just log into your members account for the domain name and replace the current name servers with our total choice hosting ones. 3) Sit back for upto a maximum of 72hrs as it filters through the net 4) Once you have checked everything works with your new hosting here at TCH, close your old hosting down and become part of the family here This method means that vistors and customers never miss a beat and 99.9999% will never notice a difference in what they are seeing! Any more questions, just ask! Jim
  11. 11
  12. sea
  13. Be careful when flashing bios, make sure you have the right bios to flash with! Maybe set your bios to auto detect if you have it on static settings at present Jim
  14. I really need the visit the states more! Jim
  15. quiet
  16. Hi, I thought I would write this hotlinking topic guide in order to help those who may wish to play with there HTACCESS file. Warning Editing your HTACCESS file is extremely hazardous, and could stop you and anyone else accessing it. Always make sure that if editing it, you have a multiple window open with the old untouched HTACCESS file present so you can click "save" and save yourself! What is Hotlinking? Hot linking is for example where I own www.mysite.com and I have a picture of a flower I took. Now some happy client on www.evilsite.com thinks "ooh, nice flower, I will link to it and display it on my website". Thus, your picture is now being linked, legally, to another site where its being displayed Why should this bother me?? Well for a number of reasons, but most importantly, because its taking up your bandwidth. Each time that picture is looked at, the total size of your picture is being added to your bandwidth. That means that say my picture of the flower is 30K and www.evilsite.com has 1000 people looking at this picture, thats 30 x 1000 = 30,000 = 30 megs of my own bandwidth!!!!!! And we all know how precious bandwidth is! What can I do about this? Turn on hotlinking protection in CPANEL. Its relatively straight forward to do and will (hopefully) stop people from hotlinking. Its not working / I want more control / I want to be able to manually do it so I know whats going on Ok then, its simple enough to do, but make sure you have that back-up window open! (Side note, I always work in notepad first, and whilst I know there are other ways to do this, keeping it simple and nicely laid out is the way to do it) Right, if if I have mysite.com, and I want to stop all pictures being taken, this is what I need to have in my htaccess file: >RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://mywebsite.com/ [NC] RewriteCond %{HTTP_REFERER} !^http://mywebsite.com [NC] RewriteCond %{HTTP_REFERER} !^http://www.mywebsite.com/ [NC] RewriteCond %{HTTP_REFERER} !^http://www.mywebsite.com [NC] #RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC] What does all that jargon mean? Please explain! OK, here goes: RewriteEngine This is a server command saying to re-write something, in this case (overall) to stop images going missing Rewritecond This command searches the string (string is where you put Http://www. or www.) and trys to match anything after it Using ! and $ and ^ The ! means "not", so anything with the proceeding address is fine and not to be rewritten. $ and ^ are used in the string searching. ^ at the start and $ at the end www.mywebsite.com The url which you want to ALLOW (Remember that whilst your telling it to rewrite and stop images, the ! symbol says don't re-write so its like a double negative) NC Means to ignore the namecase, so it searches for both caps and lower case. Rewrite This tells the server what to do if its finding a string which is not in the list above and matches the string. In the case above, looks for anything with JPG or GIF etc If it finds something which has passed all the rewrites above (aka not matched) then it proceeds to do something. [F] In the case above, F = forbidden, aka not allowed. The NC is again in there to stop JPG and jpg being different. .(jpg|jpeg|gif|png|bmp) These are the files I want to stop. They could be anything from mp3 to php Right, I think I understand, but why the 4 lines for just one domain name? There is a shorter way, but then if there is a problem, its more complex to untangle. Here with four lines, I can see instantly if I have a problem and if something is not working and why its not working Ah ok. What happens if I have subdomains? Not a problem, just continue the same principles as above, just remember to add it before the Rewrite bit! E.g. I have a subdomain called gallery: >RewriteCond %{HTTP_REFERER} !^http://gallery.mywebsite.com/ [NC] RewriteCond %{HTTP_REFERER} !^http://gallery.mywebsite.com [NC] hence my entire code would look like: >RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://mywebsite.com/ [NC] RewriteCond %{HTTP_REFERER} !^http://mywebsite.com [NC] RewriteCond %{HTTP_REFERER} !^http://www.mywebsite.com/ [NC] RewriteCond %{HTTP_REFERER} !^http://www.mywebsite.com [NC] RewriteCond %{HTTP_REFERER} !^http://gallery.mywebsite.com/ [NC] RewriteCond %{HTTP_REFERER} !^http://gallery.mywebsite.com [NC] #RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC] Ok, what about if I want to allow say a forum to display a picture? Not a problem, just put in a line or two lines of coding, depending on the domain! e.g. I want to allow totalchoicehosting forums to allow to hotlink too? (I want to show my flower picture off to everyone!) I would just add the line: >RewriteCond %{HTTP_REFERER} !^http://www.totalchoicehosting.com/forums [NC] I've seen shorter more complex hot link protections about. Why is this so long for? Short and complex is fine if you I) 100% understand it and II) It does not go wrong. Often laying something out simply whilst may take 5 minutes first time around, saves you so much time in the future. Arrrg, help, its all gone wrong, I forgot to have a second window open and I can't do or see anything. Now what??? Not to worry, please submit a help ticket and wait for us to fix it. Well thats the end of my 1st possible help topic, please let me know if its any good or just rubbish!
  17. Dirty Dancing (the film)
  18. Nice. Why is the town now a ghost town? Jim
  19. Demi Moore
  20. WWF
  21. I would disable norton and see what happens Jim
  22. Randy, I have started a support help desk ticket for you. Head Guru/Rick/Alan, please take a look. Randy, we should have this sorted out very soon for you, if you log into the help desk area, you should be able to see your ticket! Thanks Jim
  23. Hi, Its as sercue as your going to get without spending serious amounts of cash. Keep your passwords longer the 8 letters, and make sure it includes minimum of 2 numbers and 1 character. Make sure its not a name, place or anything which can connect to you personnelly. Jim
  24. Films
  25. And another thing, how long do you have to keep the 301 there for? Jim
×
×
  • Create New...