Recent content by wanipiro

  1. wanipiro

    Hello from Bosnia

    Welcome to BHW!
  2. wanipiro

    Hello Black Hat World!

    Welcome to BHW!
  3. wanipiro

    Can wordpress handle 10,000,000 blog posts?

    check out this vid i recorded about 2 years ago, using 4gb ram but now 2gb ram is enough.
  4. wanipiro

    Can wordpress handle 10,000,000 blog posts?

    I have wp based site with more than 5 million posts and hosted on 2 vcpu + 2 gb ram and running fast. but, its only using 1 plugin (w3tc)
  5. wanipiro

    Display ads / text based on visitor country

    <?php $myip=$_SERVER['REMOTE_ADDR']; $string = file_get_contents("https://get.apigeoip.com/xml/".$myip); $xml = simplexml_load_string($string); $country=$xml->CountryCode; if (strpos($country, 'AD') !== false) { echo 'ADS Andorra'; } elseif (strpos($country, 'AE') !== false) { echo 'ADS United...
  6. wanipiro

    [sharing] Find You IP & Domain Info - php

    find your ip info: php code: <?php $myip=$_SERVER['REMOTE_ADDR']; $string = file_get_contents("https://get.apigeoip.com/json/".$myip); $json_a = json_decode($string,true); echo '<table>'; foreach ($json_a as $key => $value){ echo '<tr><td>'.$key . '</td><td> : ' ...
  7. wanipiro

    [Help] my lyrics site (4 years old, 2.5+ Million posts) but get little traffic

    here is analytics screenshot (data range: last 30 days)
  8. wanipiro

    [Help] my lyrics site (4 years old, 2.5+ Million posts) but get little traffic

    Hello, I'm kind of desperate now. it's almost 4 years ago i start this site. and even with more than 2.5 million lyrics, this site get very low traffic (around 700-1k unique hits/day) url: bit.ly/lyricsdb please advice me. what should i do to increase my traffic. thanks
  9. wanipiro

    Traffic suddenly cut off

    try to remove your browser cache and/or logout from google then recheck
Back
Top