Purchase OIOpublisher now for just $47.

Take control of your ad space.

Click here to purchase

    • CommentAuthorhoodgrown
    • CommentTimeJun 2nd 2008
     

    I'm using Wordpress 2.5 and the browser I'm using are Safari and Firefox...

    When I click on " OIOpublisher" in Safari i get the following
    Safari can’t open the page “http://www.hoodgrownonline.com/online/wp-admin/admin.php?page=oiopub-direct/index.php”. The error was: “Operation could not be completed. (kCFErrorDomainCFNetwork error 302.)” (kCFErrorDomainCFNetwork:302) Please choose Report Bugs to Apple from the Safari menu, note the error number, and describe what you did before you saw this message.

    When I click on this link in Firefox I get a blank page.

    The only way that i'm able to make any changes to to deactivate and then reactivate the plugin...

    I can then you use of OIOpublisher's other links with no problems..

    I don't want to have to deactivate/reactivate this plugin to use it....

    any ideas

    • CommentAuthorSimon
    • CommentTimeJun 2nd 2008
     
    Project Admin

    Step 1 - are you able to hit the uninstall button on the settings page? That will remove your settings, but keep the database tables in place.

    Step 2 - try a full uninstall, including the removal of all database tables, and any "oiopub" options in the wp_options table, plus deleting the plugin files. Then re-install.

    Step 3 - I'm out of ideas at this point. Never heard of this kind of behaviour, but if you want me to take a look at it, feel free to shoot me some temporary FTP details / blog admin access.

    • CommentAuthorhoodgrown
    • CommentTimeJun 2nd 2008
     

    i PM u the info...

    • CommentAuthorSimon
    • CommentTimeJun 2nd 2008 edited
     
    Project Admin

    I couldn't locate the source of the problem, so what I did was stick in a quick php redirect in the plugin index.php file. If you go to the main tab, it will direct you to settings.

    Not perfect, but should do the job for now.

    You'll also have to re-configure your settings, as I tried a full uninstall.

    • CommentAuthorhoodgrown
    • CommentTimeJun 2nd 2008
     

    thanks.. hey as long as it's working.. it's fine with me...
    so i should be careful when updating..?

    • CommentAuthorSimon
    • CommentTimeJun 3rd 2008
     
    Project Admin

    It might be worth opening up the index.php file and just saving the snippet of code I've added (look for $_GET['page']), so then if any future upgrades have the same problem, you can just stick that code back in.

    • CommentAuthorSimon
    • CommentTimeJun 5th 2008
     
    Project Admin

    For anyone experiencing the same problem, a quick fix is to put the code below into the plugin index.php file:

    //quick redirect
    if(is_admin() && $_GET['page'] == $oiopub_folder_name.'/index.php') {
    header("Location: admin.php?page=oiopub-settings.php");
    exit();
    }