Title: Lyyn's Replies | WordPress.org

---

# Lyyn

  [  ](https://wordpress.org/support/users/lyyn/)

 *   [Profile](https://wordpress.org/support/users/lyyn/)
 *   [Topics Started](https://wordpress.org/support/users/lyyn/topics/)
 *   [Replies Created](https://wordpress.org/support/users/lyyn/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/lyyn/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/lyyn/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/lyyn/engagements/)
 *   [Favorites](https://wordpress.org/support/users/lyyn/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Tools for Twitter] Tweets not automatically downloading](https://wordpress.org/support/topic/tweets-not-automatically-downloading/)
 *  [Lyyn](https://wordpress.org/support/users/lyyn/)
 * (@lyyn)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/tweets-not-automatically-downloading/#post-4479872)
 * Perhaps it has something to do with varnish. Since my host installed that on 
   his servers, my tweets aren’t downloading anymore. Not only tweets but all WP-
   Cron are broken, I think.
 * Any workaround?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Counterize] Counterize ne compte plus les visites](https://wordpress.org/support/topic/counterize-ne-compte-plus-les-visites/)
 *  Thread Starter [Lyyn](https://wordpress.org/support/users/lyyn/)
 * (@lyyn)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/counterize-ne-compte-plus-les-visites/#post-4374837)
 * I found the solution. I think it’s because my hoster has changed something with
   Apache, the variable $_SERVER[‘REMOTE_ADDR’] which is used for getting the IP
   of the visitor sent always “127.0.0.1” which is in exclusion list.
 * I had to use $_SERVER[‘HTTP_X_FORWARDED_FOR’] for getting the real IP.
 * So, in **counterize.php**, from around the line 1250, I changed this :
 *     ```
       if( isset( $_SERVER['REMOTE_ADDR'] ) )
       {
           $remoteaddr = apply_filters( 'counterize_server_remote_addr', $_SERVER['REMOTE_ADDR'] );
       }
       ```
   
 * to this :
 *     ```
       if( isset( $_SERVER['REMOTE_ADDR'] ) )
       {
           if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
               // Fix
               $remoteaddr = apply_filters( 'counterize_server_remote_addr', $_SERVER['HTTP_X_FORWARDED_FOR'] );
           }
           else {
               $remoteaddr = apply_filters( 'counterize_server_remote_addr', $_SERVER['REMOTE_ADDR'] );
           }
           /*echo('<pre style="visibility: hidden;">');
           print_r($_SERVER);
           echo('</pre>');*/
       }
       ```
   
 * It now works fine, but idk if this is viable.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Counterize] Counterize ne compte plus les visites](https://wordpress.org/support/topic/counterize-ne-compte-plus-les-visites/)
 *  Thread Starter [Lyyn](https://wordpress.org/support/users/lyyn/)
 * (@lyyn)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/counterize-ne-compte-plus-les-visites/#post-4374815)
 * k, sorry in advance, it’s going to be engrish more than english 😡
 * Since the 24th november, my Counterize plugin doesn’t work : it doesn’t count
   anymore the visit for both bots and humans. I think it’s because of some plugin’s
   updates, but when I turn on the error’s display, it doesn’t show anything related
   to Counterize.
 * What I tried:
    **– Show the errors:** as explained above, nothing seems to be
   linked with Counterize **– Refresh user-agent list:**** Nothing has changed –
   Flush the database with the plugin’s tools: Nothing changed too. – Add an entry
   manually with a SQL query : It works, Counterize shows my new entry. – Deactivate
   the plugin, go on the blog and browse some pages, reactivate and rebrowse : Absolutely
   none new entry.
 * What can I do?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom About Author] Error Adding Custom Author](https://wordpress.org/support/topic/error-adding-custom-author/)
 *  [Lyyn](https://wordpress.org/support/users/lyyn/)
 * (@lyyn)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/error-adding-custom-author/#post-3504168)
 * I have the same issue, I can’t add a custom author. I use “Better WP Security”
   which changes the prefix of the database, can it be the source of the issue?
 * WP v. 3.5.1 /// Plugin v. 1.5.4

Viewing 4 replies - 1 through 4 (of 4 total)