michaelctorres / clients-oriented-ftp

Automatically exported from code.google.com/p/clients-oriented-ftp
0 stars 0 forks source link

POST INSTALLATION #506

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
i've installed ProjectSend on our server using WAMP 2.5

After a successful installation, clicking on the link to the administrator 
login page redirects me to the initial setup page.

Did I miss anything in the installation process?

Original issue reported on code.google.com by matt.sar...@gmail.com on 20 Nov 2014 at 2:19

GoogleCodeExporter commented 8 years ago
If you had change the table prefix you have the same issue than I. The quick 
solution is comment out this lines in the header-unlogged.php.

/*if (!is_projectsend_installed()) {
    header("Location:install/index.php");
    exit;
}*/

Original comment by itivig...@gmail.com on 20 Nov 2014 at 6:11

GoogleCodeExporter commented 8 years ago
You can fix this in includes/functions.php line 24 by adding in the table 
prefix constant.
Change line 24 to:
$this_table = $database->query("SHOW TABLES LIKE '".TABLES_PREFIX."$table'");

Original comment by acerbus...@gmail.com on 1 Dec 2014 at 11:40