desertmagic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Query Post from Different Database Table.Did you ever find a solution to this? Does anyone have any ideas? The closest thing I’ve found was this article:
http://www.corvidworks.com/articles/wordpress-content-on-other-pagesForum: Fixing WordPress
In reply to: Exclude posts from WP_Query?You were really close. Use cat= followed by a negative sign and whatever category id you want to exclude.
new WP_Query(“showposts=10&cat=-22,-12,-6”)
Forum: Fixing WordPress
In reply to: Visual Editor problem ( 2.6.3 )I had the same problem, with the exact same error. I checked my new WordPress install and compared it with an older install that I had updated to 2.6.3.
It appears that the new install is missing the wp-includes/js/tinymce folder, along with several other js folders. I’m not sure why these folders were not uploaded with the first install, but it happened twice, because I reinstalled WordPress the first time the tinymce didn’t work.
I uploaded the tinymce file, and the subfolders didn’t upload. So I went in and uploaded those too. So try uploading just those missing folders in the js file and make sure the subfolders upload too.
Forum: Plugins
In reply to: [Plugin: phpbb_recent_topics] Activating in 2.6 doesnt workI have the same problem. Any ideas on how to get this plugin to work with WordPress 2.6?
Update: I got this to work. I had to go in and issue a SQL command to give read access to my WordPress database user because I am running two databases (one for WordPress and the other for PHPBB3). Instructions for this are included on the Installation instructions.
Forum: Fixing WordPress
In reply to: Permalinks not working. both 2.51 & 2.6I upgraded to 2.6.2 hoping the permalink issue would go away. It didn’t. I have a linux server and any permalink with %postname% in it is not working-shows 404 error. Never had this issue previous to 2.6 release.
Forum: Fixing WordPress
In reply to: WordPress 2.6.1 Error 404s with PermalinksSame exact issue here using Linux hosting. WordPress is in a subfolder called blog. I tried all documented changes and nothing worked. All pages go to 404 when any permalinks other than default are enabled.
Forum: Fixing WordPress
In reply to: Permalinks in 2.6.1 still not workingOkay, I messed around with 2.6.1 and this is how I got my pretty permalinks to work again. Previously I was using %postname% and it broke. Tried using index.php/%postname%/ and that didn’t work.
Solution:
Use custom structure: %PATHINFO%/This will yield the following permalink:
Forum: Fixing WordPress
In reply to: Permalinks in 2.6.1 still not workingAdd me to the list. My permalink structure was %postname% and now all pages are going to a 404.
Forum: Fixing WordPress
In reply to: Display random post by cat namehttp://codex.ww.wp.xz.cn/Template_Tags/get_posts#Random_posts
For those too lazy to follow the link:
<ul><li><h2>A random selection of my writing</h2> <ul> <?php $rand_posts = get_posts('numberposts=5&orderby=rand'); foreach( $rand_posts as $post ) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> </li></ul>Thanks Samboll. I understand I won’t see any effect. But I’m running a membership site with WordPress housed within amember. Amember is not syncing with WordPress because of the auth_key, secure_auth_key and logged_in_key . I already added the info to amember, so I just want to make sure there’s nothing else I need to do with auth_key, secure_auth_key and logged_in_key besides just adding them to wp-config? I’m going to submit to amember too, but their site is down…so any help is appreciated.
Forum: Installing WordPress
In reply to: 2.6 unable to login, tried everythingTry clearing your cache and cookies. Then actually close the browser all together. Reopen the browser and you should be able to log in.
Forum: Plugins
In reply to: Adding header/sidebar/footer to a simple plug-inForum: Fixing WordPress
In reply to: Display rss feeds in article?I don’t know about a plugin, but here’s how to pull feeds.
http://codex.ww.wp.xz.cn/Function_Reference/wp_rss
http://codex.ww.wp.xz.cn/Function_Reference/fetch_rssIf you want to run this PHP in a post, you might try:
http://www.nosq.com/blog/2006/01/runphp-plugin-for-wordpress/Forum: Fixing WordPress
In reply to: SEO 301 RedirectThis is the code the worked for me:
RewriteCond %{HTTP_HOST} ^domain\.com RewriteRule (.*) http://www.domain.com/$1 [R=301,L]Change the word ‘domain’ to your actual domain name for each line. I inserted into my the htaccess file, which already had some stuff in it. So the final code looked like this:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^domain\.com RewriteRule (.*) http://www.domain.com/$1 [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress