Skip to content
WJunction - Webmaster Forum

Search results

  1. W

    Does this log mean that my server disk is full?

    If you don't want to see this large KB-Blocks just type df -h for getting it in human readable format. (e.g. MB or GB) Check your logs if there are some you can dispose. if you have lot's of users coming to your site, disable access-log to save storage
  2. W

    HELP: Best html/css/php editor? (code editor)

    sublime2 or sublime3 you can literaly do everything with it. Even inline-compiling. you can install more plugins, like latex, ruby, java etc. (inkl. compile-calls) syntax-highlighting out of the box. XML-tag parsing, autocompletion, multi-cursor etc. i think it's much better than notepad++...
  3. W

    VPS Romania High-Traffic-VPS (one or multiple ones)

    yes there is. But i need one, who will ignore, dmca, brein or others. Since romania has till now ignored all of them, i've written i would go for them - but if there are other locations, just let me know. The Problem is really, that the risk is fairly high to receive dmca and probably their...
  4. W

    VPS Romania High-Traffic-VPS (one or multiple ones)

    Hi, i'm searching for some VPS systems. Preferable on Voxility Network. In total i need about 20TB traffic per Month. This can also be splittet on multiple VPS (which could be better) They will be used as reverse proxy (traffic already doubled above) an have to handle 1,5k - 2,5k users on...
  5. W

    Premium Plus KnownSRV.com - Virtual Private Servers from $20/mo! (Europe)

    Hi there, after using them for now 7 month, i like to write some little review. Well, let's start at the beginning. i was searching for a VPS with 2 IPs and some decent traffic-rate here in the forums. Knownserver made an offer and i willingly accepted it - thanks for this. Right after...
  6. W

    Good way to hide external referer links?

    ah. that's not a problem of my script, but from itunes itself. requests coming from anonym.to will be redirected to localhost. an alternative could be http://hideref.org/ or dereferer.info or dereferer.pw just google for dereferer services :)
  7. W

    Good way to hide external referer links?

    well. here it's all okay. and an anonym.to is in front of the https-url. - as expected
  8. W

    Good way to hide external referer links?

    do you have an example? iv'e just checked the script and it will work with https - as long, as it's a html link.
  9. W

    Good way to hide external referer links?

    hi, instead of writing if (anchors[i].href.indexOf("www.mydomain.com") != -1 write only if (anchors[i].href.indexOf("mydomain.com") != -1 the indexOf searches for the occurence of "mydomain.com" so subdomain.mydomain.com will also be found -1 is the default value if it wasn't found in a...
  10. W

    Good way to hide external referer links?

    just use a script like this on your page: <script> window.onload = function() { var anchors = document.getElementsByTagName("a"); for (var i = 0; i < anchors.length; i++) { if (anchors[i].href.indexOf("youdomain") != -1 ||...
  11. W

    Need heLp on load balancing and firewall

    Hi, i would propose the following setup: 1. Get rid of win XP machines 2. get a separat fileserver, that does not handle any connections with the internet (plus it's saver) 3. get a router-Software and configure it. So, depending on this propose i would suggest you use pfsense (my...
  12. W

    iFrame help

    A link would be nice. so we can write a small script that will get everything you want.
  13. W

    iFrame help

    hum. you probalby won't want to use iframes - since they are shit. Write a small php-script which will curl (or any other technology to get a website) the site and kill all the unneccessary code or just load the infos you want - since this is probably much faster. Parse the information in...
  14. W

    Please help me with a little fix

    Hi, so your script does the following. Google will spider your affilate-link. (http://www.mydomain.com/out/name) then google will geht the header-setting of nofollow and noindex, so the spider should stop there and not going any further, leaking pagerank etc. nofollow wil say the...
  15. W

    Please help me with a little fix

    The " are the standard-value the fgetcsv will use. So it's essentially the same as my second idea :) So using that will work fine, of course ^^
  16. W

    Please help me with a little fix

    you can try escaping the , like http://www.affiliatedomain.com/track/gTk2NzMwdjQ6sTc\,24/ or enclose your settings with .e.g ' then you have to change the following line: while( $data = fgetcsv( $f ) ) { to while( $data = fgetcsv( $f, ",","'" ) ) { then your file should look s.th. like...
  17. W

    FileCloud.cc - PPS 75% Sales & 75% Rebills - Daily Payout - $100 Startup Bonus

    Can you please upgrade my account to prem? username: wedge1001
  18. W

    Questions About Renting A Colocation Data Center

    1) this is a rack: more or less a cabinet stuffed with servers. no. A rack only means, you will get a space in this rack. Depending on the offer, you will get a whole one (like the picture above) or a small one (20Units) or a shared rack - which means you will get some Units in this big one...
  19. W

    Problem With Cloudflare Need Help??

    hi just add it normally. A Record with Name and IP for routing-informations MX-Record with Name pointing to an A-Record for mail-settings. CNAME if you want to point another-domain to the same IP, already specified by an A-Record. Cloudflare don't have any entries, since the domain already...
  20. W

    CPU limits on windows server?

    no. normally windows don't set any limits. But Windows won't priorise your encoding the highest possible way. So you encoding-process will be stopped, if there is a process that needs to be done and has a higher priority. On top of this, encoding-speed can vary depending on the content of the...
Back
Top Bottom