Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorescaping
    • CommentTimeFeb 18th 2009
     
    Is it possible to have multiple instances of Plogger running. I have attempted to install Plogger on two domains hosted by Godaddy and when I run _install.php on the second domain I get 'Plogger is already installed.'
    •  
      CommentAuthorkimparsell
    • CommentTimeFeb 18th 2009
     
    Are you installing both of them into the same database? If so, then you will have to change the database table prefix for the second gallery. Right now, the table prefixes are the same (set in plog-globals.php), so the second install is looking at the database and seeing that it is already populated, thus the 'Plogger is already installed' message.

    Open plog-globals.php and look for the following line:

    define('TABLE_PREFIX','plogger_');
    Change 'plogger_' to 'plogger1_' and upload the changed file to your server in the folder where you have the files for the second gallery. Then try to install the second gallery again, and you should be good to go.
    • CommentAuthorescaping
    • CommentTimeFeb 18th 2009
     
    Thanks for the quick response, I'll make the change.