Title: AlexiousRahl's Replies | WordPress.org

---

# AlexiousRahl

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/alexiousrahl/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/alexiousrahl/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebberZone Top 10 — Popular Posts] Duplicate Daily Popular Posts](https://wordpress.org/support/topic/duplicate-daily-popular-posts/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/duplicate-daily-popular-posts/#post-5621671)
 * Ok, I’ve set you as admin, you can now check up what’s wrong.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebberZone Top 10 — Popular Posts] Duplicate Daily Popular Posts](https://wordpress.org/support/topic/duplicate-daily-popular-posts/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/duplicate-daily-popular-posts/#post-5621655)
 * I tried, but it doesn’t work. It says:
 * “Failed to send your message. Please try later or contact administrator by other
   way.
    Please don’t use the form above for support requests”
 * Anyway, as you can see on our site ([http://www.worldsfactory.net](http://www.worldsfactory.net)),
   the problem remains. I don’t know what to do at this point, except switching 
   to another plugin counting views.
 * If you can help us in any way, I’ll be happy to grant you access to the backend
   so you can look up what’s wrong. Just register on the site and then tell me your
   nickname so that I can give you permissions.
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebberZone Top 10 — Popular Posts] Duplicate Daily Popular Posts](https://wordpress.org/support/topic/duplicate-daily-popular-posts/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/duplicate-daily-popular-posts/#post-5621607)
 * I had already updated at 2.0.3, but it didn’t change anything at all. If you 
   want I can give you admin access on the site, if you think it can be helpful.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebberZone Top 10 — Popular Posts] Duplicate Daily Popular Posts](https://wordpress.org/support/topic/duplicate-daily-popular-posts/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/duplicate-daily-popular-posts/#post-5621587)
 * I tried, but it didn’t seem to change anything. Check for yourself:
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Social Login] Plugin/Description page disappeared](https://wordpress.org/support/topic/plugindescription-page-disappeared/)
 *  [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/plugindescription-page-disappeared/#post-4570977)
 * That is the old changelog…The new update is 2.1.6, but there is no changelog 
   whatsoever. Miled, could you please let us know what’s new?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Occasional 403 – Forbidden Error – Any solutions?](https://wordpress.org/support/topic/occasional-403-forbidden-error-any-solutions/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/occasional-403-forbidden-error-any-solutions/#post-4487674)
 * Just to follow up that this keeps happening, especially when traffic is high.
   To get the site back online I can only rename .htaccess, but then only the homepage
   works and posts return 404. I saved the permalinks structure in WP and magically,
   everything worked again.
 * I think there’s something wrong with rewrite rules.
    I’ve found this solution
   on the Web – what do you think?
 * [http://stackoverflow.com/a/9050019](http://stackoverflow.com/a/9050019)
 * > A few years late, but I have a solution for the most recent version of WordPress,
   > which has this same issue (WordPress-generated .htaccess files break sites,
   > reuslting in 403 Forbidden error messages). Here’s that it looks like when 
   > WordPress creates it:
   > # BEGIN WordPress
   >  <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / 
   > RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond%{
   > REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
   > # END WordPress
   >  The problem is that the conditional doesn’t work. It doesn’t
   > work because the module it’s looking for isn’t .c, it’s .so. I think this is
   > a platform-specific, or configuration-specific issue, where Mac OS and Lunix
   > Apache installations are set up for .so AKA ‘shared-object’ modules. Looking
   > for a .c module shouldn’t break the conditional, I think that’s a bug, but 
   > it’s the issue.
   > Simply change the mod_rewrite.c to mod_rewrite.so and you’re all set to go!
   > # BEGIN WordPress
   >  <IfModule mod_rewrite.so> RewriteEngine On RewriteBase /
   > RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond%{
   > REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
   > # END WordPress
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Occasional 403 – Forbidden Error – Any solutions?](https://wordpress.org/support/topic/occasional-403-forbidden-error-any-solutions/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/occasional-403-forbidden-error-any-solutions/#post-4487638)
 * Yes, I have. They said that it is related to a permissions error.
    They suggested
   that it could have to do with a WordPress plugin.
 * I’m not sure which plugin could do such a thing, though.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Avatar Manager] Feature Request: Disable Gravatar Option](https://wordpress.org/support/topic/feature-request-disable-gravatar-option/)
 *  [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/feature-request-disable-gravatar-option/#post-4308938)
 * I second this. I would like to use the plugin but I also want to disable Gravatar
   use.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Peter's Collaboration E-mails] Doesn't work for "Authors"?](https://wordpress.org/support/topic/doesnt-work-for-authors/)
 *  [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/doesnt-work-for-authors/#post-3462407)
 * Yeah Peter, I totally agree with them.
 * The important thing to add is e-mail notification to “Post Notes” plugin, so 
   that all staff members can quickly be notified about what’s good and what’s wrong.
   Could you add this? Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Nobs • Share Buttons] Share on a pop-up window instead of another page](https://wordpress.org/support/topic/share-on-a-pop-up-window-instead-of-another-page/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/share-on-a-pop-up-window-instead-of-another-page/#post-3886347)
 * Yes, of course.
 * So, you are saying that adding pop-up window means that the plugin will not be
   so lightweight anymore? I hope not.
 * But thanks again!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Share bar (Digg Digg Alternative)] Not Posting to Facebook Or Twitter](https://wordpress.org/support/topic/not-posting-to-facebook-or-twitter/)
 *  [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/not-posting-to-facebook-or-twitter/#post-3753407)
 * It happens to me as well, but not only with this one.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to display YouTube videos in RSS feed?](https://wordpress.org/support/topic/how-to-display-youtube-videos-in-rss-feed/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/how-to-display-youtube-videos-in-rss-feed/#post-3863276)
 * But it’s not. My syndication is set to Full, and yet there’s no trace of the 
   video in my feed:
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] W3 Total Cache broke my website](https://wordpress.org/support/topic/w3-total-cache-broke-my-website/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [13 years ago](https://wordpress.org/support/topic/w3-total-cache-broke-my-website/#post-3750745)
 * Ok, my developer solved it for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] W3 Total Cache broke my website](https://wordpress.org/support/topic/w3-total-cache-broke-my-website/)
 *  Thread Starter [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [13 years ago](https://wordpress.org/support/topic/w3-total-cache-broke-my-website/#post-3750710)
 * I have deleted everything and I still got the message
 * > W3 Total Cache Error: some files appear to be missing or out of place. Please
   > re-install plugin or remove /home/worlds33/public_html/wp-content/advanced-
   > cache.php.
 * I’ve uploaded W3TC Files again and now I get
 * Warning: require_once(/home/worlds33/public_html/wp-content/plugins/w3-total-
   cache/lib/W3/Plugins.php): failed to open stream: No such file or directory in/
   home/worlds33/public_html/wp-content/plugins/w3-total-cache/inc/define.php on
   line 1379
 * > Fatal error: require_once(): Failed opening required ‘/home/worlds33/public_html/
   > wp-content/plugins/w3-total-cache/lib/W3/Plugins.php’ (include_path=’.:/usr/
   > lib/php:/usr/local/lib/php’) in /home/worlds33/public_html/wp-content/plugins/
   > w3-total-cache/inc/define.php on line 1379
 * Don’t really know what to do.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social] Comment from posts not auto posted using social](https://wordpress.org/support/topic/comment-from-posts-not-auto-posted-using-social/)
 *  [AlexiousRahl](https://wordpress.org/support/users/alexiousrahl/)
 * (@alexiousrahl)
 * [13 years ago](https://wordpress.org/support/topic/comment-from-posts-not-auto-posted-using-social/#post-3375968)
 * Excuse me, but what’s the point then exactly?
 * The comments broadcasted to Facebook/Twitter are already also available on the
   site. What should it “aggregate back”, exactly?

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

1 [2](https://wordpress.org/support/users/alexiousrahl/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/alexiousrahl/replies/page/2/?output_format=md)