MichaelH
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Returning to 3.1.4Probably just putting the 3.1.4 files in place should work as there was little change to the database for 3.2.
Backup your database and files before doing anything. See WordPress Backups
Forum: Installing WordPress
In reply to: trouble viewing websiteSee if one of these help:
Solution 1
If allowed by your host, putting this in an .htaccess file will solve the problem:
DirectoryIndex index.html index.htm index.phpSolution 2
Some hosts allow you to make a change, via their hosting control panel, to the DirectoryIndex. It’s typically described as Indexes or Index documents, but may also require you to type something like
DirectoryIndex index.html index.htm index.php
or specify index.php as an index type file.Solution 3
Instruct Apache to treat index.php as an index file. If you own the server, or have access to the http.conf file, simply modify the DirectoryIndex line in httpd.conf to:
DirectoryIndex index.html index.htm index.phpSolution 4
Contact your hostForum: Fixing WordPress
In reply to: shortcode – display post by nameAccording to http://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters how about using the post slug with this change:
$args = array( 'name' => $post, );Forum: Fixing WordPress
In reply to: Pages not workingSee if updating (or changing) your permalink structure resolves:
Administration > Settings > PermalinksForum: Alpha/Beta/RC
In reply to: Bug – Fullscreen Mode Doesn't Work in HTML ModeFullscreen mode works in both Visual and HTML for me with FF 5.0. Using the Twenty Eleven Theme.
Sometimes it takes disabling all plugins and then enabling them one-by-one to find which is causing the conflict. Once you find the conflict then see if there is an update for the plugin or find out if the author is working to make the plugin compatible with 3.2 😉
Forum: Fixing WordPress
In reply to: Where do Page/Post ID's come from?On your Edit Post screen make sure under Screen Options that the Revisions box is check and then you will see the Revisions module at the bottom of the Edit Post screen.
Look at plugins such as http://wordpress.org/extend/plugins/better-delete-revision/ for more assistance with getting rid of revisions.
http://codex.wordpress.org/Editing_wp-config.php#Post_Revisions discusses how to disable revisions.
Forum: Fixing WordPress
In reply to: Display posts from one category onlyIf category 1 is what you want then should be able to do:
<?php query_posts('cat=1'); ?>If you don’t know the category id, something like this example from http://codex.wordpress.org/Function_Reference/query_posts
query_posts( array ( 'category_name' => 'The Category Name', 'posts_per_page' => -1 ) );Forum: Fixing WordPress
In reply to: Fatal error with 3.2 download (cannot access dashboard)Backup your wp-content/arras folder, then delete that folder, then WordPress should fallback to the twenty eleven theme. Then you can work on solving the problem with the arras theme.
Forum: Fixing WordPress
In reply to: Narrow delimitation of the authorsMight look at http://wordpress.org/extend/plugins/capa/
Forum: Plugins
In reply to: Related post plugin for WP 3.1.3Why not upgrade your WordPress to Version 3.2 and try http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/ which is now at version 3.3.1.
Forum: Everything else WordPress
In reply to: WordPress.com sharing features in .orgYou are welcome. Marking this resolved for now. Good luck.
Forum: Fixing WordPress
In reply to: Display posts from one category onlyMaybe look at a plugin that provides a shortcode so you don’t have to mess with your page templates.
Forum: Everything else WordPress
In reply to: WordPress.com sharing features in .orgAt the bottom of that link you provided it mentions using this plugin:
Forum: Fixing WordPress
In reply to: Is rollback to 3.1.4 possible?As there is almost no change to the database structure from 3.1.4 to 3.2, you could try restoring the 3.1.4 WordPress files available at http://wordpress.org/download/release-archive/
Before doing that, backup both your WordPress files and your database.
Please note that I’ve had no problem upgrading several sites to 3.2.
See if the instructions here help you resolve the problem: