Search results

  1. roadhamster

    How can we reduce storage costs?

    Get yourself a dedicated server with lots of space. For 50 bucks a month you can get 2 or maybe 3 TB storage, a decent processor, lots of memory and a Gigabit network connection. Find the right bargain and you got unlimited traffic.
  2. roadhamster

    Find all old e-mails from an expired domain

    Just setup your emailserver with a catch-all email from that domain.Sooner or later emails will roll in if the former owner didn't change anything. Another option is to search archives like commoncrawl.org
  3. roadhamster

    WHM/Cpanel on un-managed VPS is driving me nutty, please help!

    Do you have a nameserver running om your VPS? Bind9 for instance for Linux VPS? You gotta have a DNS server running to respond to DNS-requests
  4. roadhamster

    Help: Abelohost VPS going offline constantly

    Check your logfiles, keep your eyes on server performance by something like htop, maybe there's not enough RAM and the server starts hanging itself. What are your server specs? CPU's, RAM, swap... Install htop and monitor the performance of your server. You say you can't SSH to your server, so...
  5. roadhamster

    ANYONE HERE THAT KNOWS ELECTRICITY ?

    The answer is C. With same potentials a bulb which draws 30 Watts has higher resistance than a bulb which draws 60 W. Less power = higher resistance with same potential.
  6. roadhamster

    Permanently Closed Marketplace Sales Thread

    How unlimited is unlimited? If I have, let's say, a database file which is 976GB, that wouldn't be a problem?
  7. roadhamster

    Embarrassing

    OP you shouldn't take meth anymore.
  8. roadhamster

    99 cent GoDaddy .coms

    Whats the fee the average hostingprovider charges for transferring a domain?
  9. roadhamster

    Need Help, I Lost all my Posts in My blog and Every content in it

    Check with phpmyadmin if your old database is still there, it should be.
  10. roadhamster

    How else can I increase my site speed?

    If your webpage need external resources you could add a dns-prefetch in your html code. While loading the page content it makes dns-requests to the external resources, and if the webpage needs the resources it already knows the ip's to these resources so it can skip the dns-requests. Check this...
  11. roadhamster

    Does Google index more than 1000 Pages from 1 Website ?

    Type in Google: site:pornhub.com It returns About 16.400.000 results
  12. roadhamster

    Possible to track people viewing images directly in real time?

    Or you could create a apache htaccess mod rewrite all your pic requests to a php file that serves your picture, but before it serves the picture it sends a request to GAnalytics
  13. roadhamster

    Possible to track people viewing images directly in real time?

    If you're running your own server on let's say Apache on Linux: from the commandline: tail-f /var/log/apache2/example.com.log It displays vistors in real-time. I can't think of another way as except your server logs, but they're not in real time. GoogleAnalytics won't track hits from pictures...
  14. roadhamster

    Do any of you suffer wrist/forearm pain from mouse use?

    You're sure it's from mouse use? Couldn't it be wanker's cramp?
  15. roadhamster

    What Would You Do If world war 3 happen?

    Buy popcorn, beer and watch CNN all day long.
  16. roadhamster

    Proxy to hide video server IP?

    You could start with the free Cloudflare option and see how it works out. When people check your website's IP it will give a Cloudflare IP. Your CMS is running on your own server/ webhost. Cloudflare is just a buffer-zone caching your website's content.
  17. roadhamster

    An expert in stoping scrapping bots frrom webkit 534 on a website

    Check the IP's, they're from Microsoft, the useragent says it's BingPreview, so in combination with a whois on the IP's it's the bingbot visiting your website, and yes, they're crawling your website for the bing-search index, they are known to scrape websites. Nothing to worry about. Another...
  18. roadhamster

    Proxy to hide video server IP?

    Cloudflare is a free service, a lot of torrent-sites use it to mask their real ip-addresses. All the other mentioned methods have to run on a server you own, so one way or the other, you also would be the owner of the proxy-servers. Other solution: try a dmca bulletproof offshore host.
  19. roadhamster

    An expert in stoping scrapping bots frrom webkit 534 on a website

    Are you using PHP? Probably wordpress? Is the webkit 534 a user agent? Put something like if(preg_match('/534/',$_SERVER['HTTP_USER_AGENT'])) { header('HTTP/1.1 500 Internal Server Error'); exit(); } in your header.php in wordpress It gives an http 500 error code and exits wordpress for them.
Back
Top