kythin
Forum Replies Created
-
Forum: Plugins
In reply to: WP ecommerce product category title also shows as first product titleThis bug just hit me after updating to 3.8.9.1 and the ‘just call it but dont output it’ fix didn’t work for me, however I figured out another workaround.
Basically, the post object itself is plagued with the wrong post_title so using $post->post_title won’t work either. Instead, use this:
After this bit:
<?php while (wpsc_have_products()) : wpsc_the_product(); ?>add this:
<?php global $post; ?>Then where you want to use the title, use this:
<?= get_the_title($post->ID) ?>Forum: Fixing WordPress
In reply to: Fatal error: Out of memory (on install, and php is set to a 256M!)Woohoo, that’s great! Makes it all worth it! ??
Forum: Fixing WordPress
In reply to: Fatal error: Out of memory (on install, and php is set to a 256M!)FIXED.
Okay so the moral of the story is that when configuring WHM after installing it, if you’re running it on a VPS then do NOT run the “Memory Usage Restrictions” in Apache Config.
What that does is incorrectly limits the memory access of apache threads, mine had set it to 99meg (in total, for all of apache, not just php).
To fix it, I manually edited httpd.conf and removed the two lines right at the top that the script adds. RLimitMem and RLimitCPU. Then, restarted Apache and bam. Success!
Forum: Fixing WordPress
In reply to: Fatal error: Out of memory (on install, and php is set to a 256M!)Thanks tcbarrett, but I’ve also already tried setting the WP_MEMORY_LIMIT to everything up to 256M with no change ??
Here’s a dump of the phpinfo. For security reasons I’ve removed the references to the actual server I’m talking about here:
Forum: Fixing WordPress
In reply to: Fatal error: Out of memory (on install, and php is set to a 256M!)Also tried compiling Apache with and without suhosin, and when it was with it I tried setting the suhosin.memory_limit too.
Each time I changed the php.ini I also restarted apache as well before testing.
Running out of ideas… :S
Forum: Plugins
In reply to: [WordSpinner] [Plugin: WordSpinner] Spinning not always workingHiya, can you post a link directly to a page that the spinner isn’t working please?
What characters do you have set up as your left, right and split characters?
Do you have the latest version of the plugin?
Thanks ??
Forum: Plugins
In reply to: rtrim() to allow leading spaces with wordspinnerThat should be in the latest release, sorry I didn’t reply to this earlier. There’s about 5 different locations comments can be left about this plugin! haha
Forum: Plugins
In reply to: [WordSpinner] [Plugin: WordSpinner] Outputting rawIs it still doing it today? I wasn’t aware of any bug like the one you’re describing, and it seems fine for me, but if you can tell me more about what happened I might be able to recreate it.
Can you make sure the plugin is enabled and the spintax you’re using in the posts is the same characters as the settings? Is it in a widget or in a post, or a page?