wu-wei
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress database error MySQL server has gone away for query UPDATEFYI, this error message is generated by the piece of garbage plugin, OptinSkin and its idiotic use of serialized data.
Forum: Plugins
In reply to: [Relocate Upload] Current status of this plugin?Hey alanft, thanks for finding the time to update this after all this time even though you don’t use it yourself any more. The latest svn is working for me on WP 3.5.1.
Forum: Plugins
In reply to: [Reed Write] Incompatible with PHP 5.4You can change line 433 to:
_rw_remove_menu($menu, $_rw_type['post_title']);and on line 450, the function definition to:
function _rw_remove_menu(&$_rw_menu, $_rw_title){This changes the call-time pass by reference into an explicit part of the _rw_remove_menu() definition.
This is the only place that function is called so it won’t affect anything else.
Hi Mike-
Thanks for your efforts on this. I almost never use a common url for the contact for (e.g. /contact or /contact-us/) and we’re not seeing any spam inundation on our projects. *Except* the one contact form whose url is /contact/. That one gets hit a fair amount and I just haven’t gotten around to dealing with it since the server side spam detection does a good job of flagging it. I’ll go install 3.1.6.1
Anyway… folks, if you’re having ongoing issues please see Mike’s earlier responses in this thread. He covers all of the major vectors for spam and gives good suggestions. My personal experience is again:
* don’t use a common url for your contact form
* consider putting a deny entry for your contact form into robots.txt
* in my opinion, captcha is just about useless these days.Forum: Plugins
In reply to: [Custom Content Type Manager] Front End LinkYour question in pretty vague. You may be able to use the built-in Summarize Posts widget for your needs. CCTM comes with one widget:
http://code.google.com/p/wordpress-custom-content-type-manager/wiki/Post_Widget which may also work for you.The wiki and specifically the FAQ are great places to start.
Forum: Plugins
In reply to: [Custom Content Type Manager] Rewrite Slug – What's It Supposed To Do?This functionality is working for me (0.9.6.7) WP 3.5. I have a CCT of ‘clients’ with a rewrite slug of ‘design’. Each client is available at /design/client-name/. Changes to the rewrite slug are reflected. As a test I enabled archives in the advanced tab of the CCTM settings page for clients after which an archives page started being generated at /design/.
I know the rewrite slug for an individual client was working in 3.4.x, not sure if the archive page was.
If there’s anything you’d like to know about my settings, I’m happy to followup.
I can see the WP_query getting mixed up if you’re trying to share the same slug with your taxonomy and CCT. I wonder if you need to flush the rewrite rules after disabling your custom taxonomy?
Forum: Plugins
In reply to: [Custom Content Type Manager] Display FULL posts below each otherI don’t think there’s any solution that doesn’t require your own code. You’ll probably need to iterate over get_posts() in one of your template files.
See: http://codex.wordpress.org/Template_Tags/get_posts
For instance:
$myPosts = get_posts(array(‘post_type’ => ‘your-content-type’);
At some point during The Loop you’ll want to get your custom fields either via:
$meta = get_post_custom($myPost->ID);
or
print_custom_field()In the CCTM settings page, each content type has a link to ‘View Sample Templates’ That sample code will probably help too.