mazalien
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Permalink / htaccess RC3Macmanx, I have tried that for dozens of times and every time the same problem. I have also set up an another wp-installation of rc3 in a different database, a complete new installation with some dummy-posts and categories, and there is the problem the same. When putting 1.5.2. back in the “dummy” database then the permalinks works just fine.
Forum: Installing WordPress
In reply to: Wordpres 2.0 200 OK errorSchestowitz, I have figured out the solution. You suggested to duplicate the database. What I did was the following. I had of course backups from my databases and from htaccess. So I deleted the complete wordpress in the database and deleted all files in the directorys and reinstalled it with a fresh download. Then with phpmyadmin I performed a query with only the posts and category’s. And that worked very well after I ran /wp-admin/upgrade.php again and put the old htaccess file back. Uptill now no problems after those actions.
See it at https://weblog.mazalien.nl/Forum: Installing WordPress
In reply to: Wordpres 2.0 200 OK errorSchestowitz, thanks for reply, I already did that. Have a look at https://www.mazalien.nl/blog That installation works fine. So I cannot find out what the problem is.
Forum: Everything else WordPress
In reply to: Multi-User Feed Aggregator SoftwareForum: Themes and Templates
In reply to: Excluding Pages on Blix ThemeThere is not much room in the Blix theme menu. In my case I made pages wich I wanted in the menu first, and while doing so they get a very low ID-number in the wordpress-database.
Then I added the following selector into the function BX_get_pages : a€?AND ID<19 a€?
So the number a€?19 a€? depends on the IDa€?s of your own website.The altered code of the function BX_get_pages in the file BX_functions.php :
‘function BX_get_pages($with_content = ”)
{
global $wpdb;
$query = “SELECT ID, post_title, post_name FROM ” . $wpdb->posts . ” WHERE post_status=’static’ AND ID < 19 ORDER BY menu_order ASC “;
if ($with_content == “with_content”) {
$query = “SELECT ID, post_title,post_name, post_content FROM ” . $wpdb->posts . ” WHERE post_status=’static’ AND ID < 19 ORDER BY menu_order ASC”;
}
return $wpdb->get_results($query);
}’Not a very great solution, but it Works fine for me.
greetings
Mazalien