csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: fresh install, 16.8-second server response timeA list of things you can start with:
- Ping the server from your connection to rule out connection issues to the server
- Use browser developer tools like the network panel in Google Chrome. Look for any assets that are taking a long time to load and slowing down page load.
- Install the Debug Bar plugin and Debug Bar Extender. Then use the “Profiler” and “Queries” tabs to see if there are any high execution times or queries taking too long. Also check the memory usage at the top and ensure it isn’t too high.
If after all that, the problem still isn’t clear you need to start profiling your server which gets pretty complex. It may be easier to just upgrade your hosting. What are the hardware specs of your virtual server?
Forum: Fixing WordPress
In reply to: creating a wordpress web site instead of a blogWordPress is a blogging / content publishing platform. It would be possible to completely ignore the post functionality and just use the page functionality. Other than that i’m not sure what advice to give you, that’s just what it was designed to do.
Forum: Fixing WordPress
In reply to: creating a databasephpBB and WordPress are to separate and very different applications that were not designed to work with each other. If you found an easy way to integrate them I would be surprised. I don’t think you are missing anything, the task is just that complex.
Forum: Fixing WordPress
In reply to: Copy a plugin from a theme templateYou are going to have to be more specific.
Forum: Fixing WordPress
In reply to: BBpress topic replies: 47000 spam. How to delete them in phpmyadmin?There should be a section in phpMyAdmin where you can run sql statements, I think it’s called “SQL”.
Forum: Fixing WordPress
In reply to: BBpress topic replies: 47000 spam. How to delete them in phpmyadmin?Also note that this operation may take a few minutes to run depending on your sever, and will delete nearly 200k rows from you DB
Forum: Fixing WordPress
In reply to: BBpress topic replies: 47000 spam. How to delete them in phpmyadmin?You can use this statement to delete all replies and their connected meta:
DELETE A, B FROM wp_posts A INNER JOIN wp_postmeta B ON A.ID = B.post_id WHERE post_type = 'reply';Forum: Fixing WordPress
In reply to: BBpress topic replies: 47000 spam. How to delete them in phpmyadmin?Yes it it possible, but first back up your database.
Forum: Fixing WordPress
In reply to: Cannot add images to sliderSince this is a theme specific issue you should really talk to your theme developer for support. What theme are you using?
Forum: Fixing WordPress
In reply to: BBpress topic replies: 47000 spam. How to delete them in phpmyadmin?There is really no way to do this without deleting all replies, legitimate replies included. Unless you have a sure way to distinguish the spam replies from the good ones.
It may be conflicting with the WordPress query var “year”. Try changing the var name and see if it works.
Forum: Fixing WordPress
In reply to: Tell a user to loginIf you want something really simple you can add this to your functions.php in a child theme. If you don’t use a child theme and update your theme all changes will be lost. So if that is a concern please create a child theme.
add_action( 'wp_print_footer_scripts', function() { if ( !is_user_logged_in() ) { ?> <script type="text/javascript"> jQuery(document).ready( function($) { $('.rw-ui-stars').on( 'click', function() { window.alert( 'Please login to rate.' ); } ); } ); </script> <?php } }, 99 );Forum: Installing WordPress
In reply to: How to move a WordPress Domain from .com to .org?Do you have a host? Because you are going to need hosting first. Then they provide you with their Nameservers.
Forum: Installing WordPress
In reply to: How to move a WordPress Domain from .com to .org?Sorry I misunderstood your issue. This article may be more helpful: http://en.support.wordpress.com/domains/change-name-servers/
Forum: Installing WordPress
In reply to: How to move a WordPress Domain from .com to .org?See this article: http://en.support.wordpress.com/moving-a-blog/#moving-to-wordpress-org