2bearstudio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Slow siteI did a GTmetrix page performance test, and found the server response time is terrible. 4.4s waiting time just to get server response, I am testing it from Vancouver, BC.
You can’t do much about this, but to change your hosting. Or contact your hosting company, and see if there is a problem with the very server that hosts your site.
Other than this, I found simply increasing memory limit for WordPress installation can have positive impact on performance. All you need to do, is to add following code in WP-CONFIG.PHP:
/** Increase WP memory limit **/ // Front-end define( 'WP_MEMORY_LIMIT', '256M' ); // Back-end define( 'WP_MAX_MEMORY_LIMIT', '512M' );There are other ways to improve your site performance. But as you mentioned, W3 Total Cache didn’t help. You need to solve server load problem first.
Forum: Fixing WordPress
In reply to: Find all copies of HTML stringMake a local copy of the installation, and then do a “folder search” using text editing tool like Sublime Text, TextMate, Notepad++, or other tool has folder search function.
Forum: Fixing WordPress
In reply to: Homepage images are not showing upThe image source shows
It is a timthumb.php problem. That’s all I can tell. You may want to contact your site developer or hosting provider for help?
Forum: Fixing WordPress
In reply to: Fatal Error when attempting to log in to wp-adminIf I were you, I would FTP to the server, and move / delete the “vr-visitas” folder from plugins folder.
Then give it another try.
Forum: Fixing WordPress
In reply to: category__not_in doesn't work in searchYou don’t say. I recently have exact same problem on one of my client’s website using one of WooTheme’s theme (Spectrum News).
No matter how I debug, the ‘category__not_in’ just not working. I fixed it like this:
while (in_array($post->ID, $exclude) ) the_post();Definitely want to know what is the real cause and proper fix.
Forum: Fixing WordPress
In reply to: 3.9.1 Fatal ErrorAs the error message says” memory … exhausted “. Copy & paste following code into wp-config.php:
/** Increase WP memory limit **/
define(‘WP_MEMORY_LIMIT’, ‘256M’);It make sense, and the solution works. But not the best solution.
1. There are over 175 posts for me to add this extra shortcode. It is not practical.
2. This is a repeated result, should be considered to be included in the plugin. Not leave it to the user.
3. It makes total sense to display the “Non-members will see this content” at first place, instead of leaving it blank.
This is very interesting. Thank you for clearing it up.
First time use PMP, I didn’t know what should it look like, but pointed to my client why there is blank. The client told me there was some message (like “This content is for …”), and he didn’t know why, when and how became blank.
Anyway, I found the code in membership.php, and hacked with my own message. Just wonder, if it is a good idea to add a hook there for developer to add custom information there.
Sorry. Still no solution.
It didn’t help. I tried before posting my question. And just tried again, not working.
Don’t know if I should open a new thread. But it didn’t work on my site. I disabled all plugin, leave only PMP activated, still no message what so ever.
Any idea?
Forum: Alpha/Beta/RC
In reply to: 3.7 Beta 1 automatic background update restore deleted themes@dion Thank you for the response. That makes perfect sense, and is also I would like to see in the final product. That’s what a mature product should be.
If you would like to know, when theme is not present, the automatic update causes load of error messages that fill up the apache error_log.
Forum: Alpha/Beta/RC
In reply to: 3.7 Beta 1 automatic background update restore deleted themes@jean-pierre If you are the developer, listen to your user. That’s the only thing I can say to you.
Forum: Alpha/Beta/RC
In reply to: 3.7 Beta 1 automatic background update restore deleted themes@ipstenu Good one. I am actually considering this option.
No. If it is manual update, we can delete it as part of manual update process.
If it is automatic update, I believe respecting user’s configuration/setup is better than dumping everything there.
Forum: Alpha/Beta/RC
In reply to: 3.7 Beta 1 automatic background update restore deleted themesIf I need, I only need one. I may build a site theming 2013 child theme. But I don’t need 2010, 2011, 2012 on my server.
Even if I keep, I keep them on development site. Which is definitely not the same server as production site.