Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Found the fix via webarchive.org:

    Travelogue 2.0
    ===============
    Just spent an hour trying to get the travelogue v2.0 wordpress theme to work.

    Had the “blah blah in upgrade-functions.php line blah blah” error when i went to activate the theme.

    Seached on the web for answers, came to your site. However your blog has seem to have dissappeared, and along with it, any answers you might have.

    So I looked myself. I hate doing php, but I found the problem, and fixed it.

    First off, go back to the default theme, then if the table “wp_t2” exists in the wordpress database, you will have to drop it.

    Then change the following two files:

    in travelogue2\functions.php
    change line 102 from

    $table_name = $table_prefix . “travelogue2”;
    to
    $table_name = $table_prefix . “t2”;

    in travelogue2\plugins\travelogue2-install.php
    change
    $sql = “CREATE TABLE “.$table_name.” (
    name text NOT NULL,
    value text NOT NULL,
    description text NOT NULL
    );”;
    to
    $sql = “CREATE TABLE “.$table_name.” (
    name varchar(20) NOT NULL,
    value text NOT NULL,
    description text NOT NULL,
    PRIMARY KEY (name)
    );”;

    And volia, you should see your website.
    Problem was caused by the travelogue database not having a primary key or unique column, and the functions.php file checking for the wrong table to see if travelogue had been installed or not.

    Did it.

    I’m using version 1.5.2 just in case anyone wonders.

    Problem hasn’t gone away. I’ve given up trying. I’ve done everything listed here and everything I can find at Flickr’s support forums and I have nothing to show for it.

    I use this plugin as well. All I’d like to is remove this part: (22 days). Suggestions please? Thanks so much!

    To clarify: All I want is the date and the event, like this:

    October 20 – Football game
    October 22 – Share Distribution

    Etc.

    I just deactivated that plugin again and my page loaded quickly. Don’t know why it didn’t work the first time.

    I’m having this problem too. I deactivated plugins, removed recently added themes, deleted recently added code. Nothing works. My page takes forever to load and the WP admin panel is no better.

Viewing 7 replies - 1 through 7 (of 7 total)