Viewing 14 replies - 1 through 14 (of 14 total)
  • Same thing is happening to me. You discover any quick fix?

    Thread Starter Aaron

    (@aaronlutze)

    Unfortunately I just edited the .htaccess file and entered in the redirections manually!

    E.g.

    Redirect 301 /old-page.php /new-page/

    Luckily my site only had less then 10 pages to redirect, hate to have 50 or 100 pages to redirect manually…

    Hopefully there is a solution!

    vashmyvindows

    (@vashmyvindows)

    I’m getting the same. When I turned on WP debug I see:

    WordPress database error: [Table ‘dbname.customprefix_redirects’ doesn’t exist]
    SELECT * FROM customprefix_redirects WHERE status != 404 ORDER BY id DESC

    dawnrae

    (@dawnrae)

    I’m having the exact same issue.

    elving

    (@elving)

    Same here…

    eggplantstudios

    (@shawneggplantstudiosca)

    Hi all – Problem with creating the tables for the redirects when the plugin is first activated. A fix will be out today 🙂

    taylerv

    (@taylerv)

    I updated the plugin and I’m still getting the invalid destination url error.

    eggplantstudios

    (@shawneggplantstudiosca)

    Please de-activate and re-activate the plugin

    elving

    (@elving)

    I’ve tried version 2.2.2 and 2.2.6 and still get this error. I also tried to deactivate/activate the plugin and then I tried to re-install it, but I still get the same error.

    taylerv

    (@taylerv)

    Same as elving — I have deactivated and reactivated the plugin and still get the same error.

    James Reed

    (@thelettuce)

    Didn’t work for me either, so go into SQL and create the table yourself.

    CREATE TABLE IF NOT EXISTS wp_redirects (
      <code>id</code> mediumint(9) NOT NULL AUTO_INCREMENT,
      <code>url_from</code> varchar(256) NOT NULL DEFAULT '',
      <code>url_to</code> varchar(256) NOT NULL DEFAULT '',
      <code>status</code> varchar(12) NOT NULL DEFAULT '301',
      <code>type</code> varchar(12) NOT NULL DEFAULT 'url',
      <code>count</code> mediumint(9) NOT NULL DEFAULT '0',
      UNIQUE KEY <code>id</code> (<code>id</code>)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

    that should sort it out!

    eggplantstudios

    (@shawneggplantstudiosca)

    Hmm… hold tight. The plugin creates the tables on activation – but it seems like there are some bugs. Will fix soon. Sorry about this!

    dropshot

    (@dropshot)

    Just tried this one out. Get the same erros. Any news?

    Any progress on this?

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

The topic ‘Invalid Destination URL’ is closed to new replies.