paulwillis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trouble getting previous and next links workingTo answer my own question I needed…
&paged='.$paged.'in my query so…
<?php $my_query = new WP_Query('category_name=' .single_cat_title( '', false ).'&posts_per_page=9'); while ($my_query->have_posts()) : $my_query->the_post(); ?>…became…
<?php $my_query = new WP_Query('category_name=' .single_cat_title( '', false ).'&posts_per_page=9&paged='.$paged.''); while ($my_query->have_posts()) : $my_query->the_post(); ?>Forum: Fixing WordPress
In reply to: Re run the upgrade processOK, this worked, upgrade.php ran and updated the database, as I would have expected because it was basically wipe and reinstall everything.
Only trouble is now although my content is there I seem to have lost my stylesheets or something.
I’m not sure what is going on.
I think I’m going to wipe everything from the new server, install 2.2, move my site over, make sure it all works and then upgrade to 2.3.1
Thanks for you help anyway.
Forum: Fixing WordPress
In reply to: Re run the upgrade processI did drop the tables, in fact i dropped the whole database.
I should say my site appears to be working ok. It’s just that when I saw the 2.3.1 database after running upgrade.php the table structure was different.
After bringing my 2.2 database over and hitting upgrade.php again nothing changed. I’m just assuming that something isn’t quite right that will bite me later?