davidbibo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Recurring problem – can’t write new posts or edit old onesI was having the same problem – check out my post to see if it is helpful:
http://ww.wp.xz.cn/support/topic/121422?replies=4#post-585224
Forum: Fixing WordPress
In reply to: WYSIWYG Editor Broken after .htaccess changedI had been having this problem for a very long time and just tonight realized what was causing it for me.
When I originally started my blog, Options->Wordpress Address and Options->Blog Address were both configured as http://roguelystated.com
After a while, for reasons I now forget, I changed both to http://www.roguelystated.com. It wasn’t until now that I noticed I get the same error you describe above ONLY when I access my wp-admin through my old IE and Firefox bookmarks, which point to http://roguelystated.com/wp-admin and NOT to the newer http://WWW.roguelystated.com
I no longer get this error when I access wp-admin using the address as set in Options->Wordpress address and Options->Blog address.
Hope this works for you.
Forum: Plugins
In reply to: simple tagging – database problemPlease note the fix referenced here worked for me. Good luck to others struggling with this.
In case you have trouble with the embedded scrolling window on that page, here’s the fix:
Line 675:
$join .= ” LEFT JOIN {$this->info[‘stptable’]} AS stptags ON ({$wpdb->posts}.ID = stptags.post_id) “;change by adding the following line, preceding the $join line:
if(!ereg(‘stptags’,$join))so you end up with:
if(!ereg(‘stptags’,$join))
$join .= ” LEFT JOIN {$this->info[‘stptable’]} AS stptags ON ({$wpdb->posts}.ID = stptags.post_id) “;Cheers,
[email protected]Forum: Plugins
In reply to: simple tagging – database problemGreetings,
Using WP 2.2.
I have also posted this support question on the simpletagging support site.
Whenever users click on tags at the bottom of our posts, they’re successfully taken to a page with all of the posts for that tag but in the sidebar appears an error:
‘WordPress database error: [Not unique table/alias: ‘stptags’] SELECT SQL_CALC_FOUND_ROWS wp_posts.* FROM wp_posts LEFT JOIN wp_stp_tags AS stptags ON (wp_posts.ID = stptags.post_id) LEFT JOIN wp_stp_tags AS stptags ON (wp_posts.ID = stptags.post_id) WHERE 1=1 AND (post_type IN(‘page’, ‘post’) AND (post_status IN(‘static’, ‘publish’) OR post_status = ‘private’)) AND stptags.tag_name IN (‘Giuliani’) AND stptags.tag_name IN (‘Giuliani’) GROUP BY wp_posts.ID HAVING COUNT(ID) = 1 ORDER BY post_date DESC LIMIT 0, 10′
Example: http://roguelystated.com/tag/Giuliani
Thanks for any help you can provide,
David