Forum Replies Created

Viewing 5 replies - 46 through 50 (of 50 total)
  • Thread Starter mazalien

    (@mazalien)

    Macmanx, 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.

    Thread Starter mazalien

    (@mazalien)

    Schestowitz, 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/

    Thread Starter mazalien

    (@mazalien)

    Schestowitz, 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.

    Have a look on the website of FEED2JS . Nice rss/php/js software with lots of posibilities.
    Greetings
    MazAlien

    There 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

Viewing 5 replies - 46 through 50 (of 50 total)