na3s
Forum Replies Created
-
Forum: Plugins
In reply to: [Flutter] [Plugin: Flutter] Has development stopped on this project?Don’t use Magic Fields and definitely do not try to migrate from flutter to Magic Fields. After 10+ attempts it’s obvious that there are serious problems in the development of this plugin. It’s a WordPress hack and it’s data relation via post_meta values has been replaced by core functionality. DO NOT USE THIS PLUGIN, YOU WILL REGRET IT! (I definitely regret it, just lost 1.5 years worth of data relationships, they will now have to be manually re-related by hand using custom taxonomies (the right way)… [$2000 approximately…O_o])
Forum: Alpha/Beta/RC
In reply to: Custom Post Types in 2.9?Forum: Themes and Templates
In reply to: get_posts(‘tag=XXXX&category=NNNN’) Doesn’t retrieve anythingOops. Feel stupid, you used array_intersect, how that passed by me is unknown. I humble myself.
Forum: Themes and Templates
In reply to: get_posts(‘tag=XXXX&category=NNNN’) Doesn’t retrieve anythingHas this issue been resolved yet? I am on 2.7 and still having this problem. And JFTrichard, that above code does not work, that is a “CAT OR TAG” statement, whereas, what is needed is a “CAT AND TAG” statement.
Forum: Plugins
In reply to: twitter tools 1.5.1a won’t authenticate at twitter*bump, I am still experiencing this problem on 2.7.1, I have tried all suggested fixes. Is it possible that something other than API is triggering this error? Maybe hosting environment?
Forum: Fixing WordPress
In reply to: all posts have the same comments.. HELPI was using Custom Widgets Plugin, Disabling this plugin worked for me, but it is likely that it wasn’t the plugin, probably the custom widgets that I did create.
Forum: Fixing WordPress
In reply to: Query Post Kills Post Rating and Comment Form?Use get_posts and a foreach loop. Query_posts will mess up your Loop.
Forum: Fixing WordPress
In reply to: all posts have the same comments.. HELPWeird. An echo of $post->ID before the_content() yields expected results, but if I echo $post->ID after the_content(), it gives me the ‘phantom’ ID of a particular post on every page, ID=468. This is the ID that the comments are using, and why all comments posted are posted to this page.
My first suspect is get_posts and/or query_posts corrupting the loop, but there are no get_posts/query_posts on within this template, or ran at all before the loop.
Is it possible that there’s some problems with the_content()? Anybody have a solution, or any ideas what may be causing this?
Forum: Fixing WordPress
In reply to: all posts have the same comments.. HELPI have this same issue, and cannot locate the source. I was using a comment callback in order to customize the appearance of comments. (listed pings and comment separate) I was sure this was the issue, but when I uploaded the ‘default’ comment.php and reverted my customization, the error still persists.
My template is 100% from scratch, custom work for a client. I have a feeling this may be caused by a plugin … if I discover anything I will post back here.
Hmmm… What should I do mitcho? My deadline is rapidly approaching. Guess I’m going to write up an uninstall function for ya, in my opinion, every plug-in needs one. I’ll reply if I have any questions.
I personally think these errors occured from some backwards compatibility and the fact that I was going back and forth between plugins, it is obviously an edge case scenario. I am using the most recent version, and problem still occurs. If you get any ideas of what could help, let me know.
Hey mitcho, well not corruption, just errors. See below. Any uninstall in the near future? Client is on a tough server that doesn’t allow me to connect to SSH and doesn’t have PhpMyAdmin… should I start writing an uninstall?
[Wed Feb 18 10:08:29 2009] [error] [client 209.125.40.68] WordPress database error Duplicate key name ‘yarpp_title’ for query ALTER TABLE wp_5knalt_posts ADD FULLTEXT
yarpp_title
(post_title
) made by require_once, do_action, call_user_func_array, yarpp_upgrade_check, referer: https://thenatureofexistence.com/wp-login.php?redirect_to=http%3A%2F%2Fthenatureofexistence.com%2Fwp-admin%2Fedit-pages.php
[Wed Feb 18 10:08:29 2009] [error] [client 209.125.40.68] WordPress database error Duplicate key name ‘yarpp_content’ for query ALTER TABLE wp_5knalt_posts ADD FULLTEXTyarpp_content
(post_content
) made by require_once, do_action, call_user_func_array, yarpp_upgrade_check, referer: https://thenatureofexistence.com/wp-login.php?redirect_to=http%3A%2F%2Fthenatureofexistence.com%2Fwp-admin%2Fedit-pages.phpI did go back and forth between the stable build and the beta… This is possibly what caused DB corruption.
None of the beta’s have ever worked for me! I remember at one point it did work, at the very beginning. but then things started going haywire, the pool wouldn’t load, errors, and YARPP not returning any posts. How do I uninstall YARPP So I can reinstall!!!! I do not have access to phpmyadmin on this server and I reallllly don’t feel like navigating sql in SSH. ??
Forum: Fixing WordPress
In reply to: How to query multiple meta values under one meta keyIn response to your first post, it wasn’t working because you were using ‘&’ where you should ahve been using ‘,’
like so:
<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query(‘cat=18,42&meta_key=rating&meta_value=8,9,10′.’&paged=’.$paged); ?>