We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get tables created and move to next step
Impossible to finlize fresh install but tables are created on DB
Operating system:
Web server:
Database: MariaDB
PHP version: 8.1 or 8.2
Teampass version: Last one in master (today)
Teampass configuration file:
Updated from an older Teampass or fresh install: PLEASE attach to this issue the file /includes/config/tp.config.php.
/includes/config/tp.config.php
Browser:
Insert your webserver log here mod_fcgid: stderr: PHP Fatal error: Uncaught mysqli_sql_exception: Table 'database.teampass_processes_tasks' doesn't exist in /home/httpd/vhosts/domain.tld/install/install.queries.php:1294, referer: https://domain.tld/install/install.php mod_fcgid: stderr: Stack trace:, referer: https://domain.tld/install/install.php mod_fcgid: stderr: #0 /home/httpd/vhosts/domain.tld/install/install.queries.php(1294): mysqli_query(Object(mysqli), 'ALTER TABLE `te...'), referer: https://domain.tld/install/install.php mod_fcgid: stderr: #1 {main}, referer: https://domain.tld/install/install.php mod_fcgid: stderr: thrown in /home/httpd/vhosts/domain.tld/install/install.queries.php on line 1294, referer: https://domain.tld/install/install.php #### Log from the web-browser developer console (CTRL + SHIFT + i)
Insert the log here and especially the answer of the query that failed.
The text was updated successfully, but these errors were encountered:
@e-door-ch Thank you for this report. Indeed, there is one error. In file ./install/install.queries.php Find
./install/install.queries.php
$mysqli_result = mysqli_query( $dbTmp, 'ALTER TABLE `' . $var['tbl_prefix'] . 'processes_tasks` ADD KEY `task_id_idx` (`task_id`);' );
Replace by
$mysqli_result = mysqli_query( $dbTmp, 'ALTER TABLE `' . $var['tbl_prefix'] . 'background_subtasks` ADD KEY `task_id_idx` (`task_id`);' );
Sorry, something went wrong.
3.1.2
0d5534a
Fix for #4172
No branches or pull requests
Steps to reproduce
Expected behaviour
Get tables created and move to next step
Actual behaviour
Impossible to finlize fresh install but tables are created on DB
Server configuration
Operating system:
Web server:
Database:
MariaDB
PHP version:
8.1 or 8.2
Teampass version:
Last one in master (today)
Teampass configuration file:
Updated from an older Teampass or fresh install:
PLEASE attach to this issue the file
/includes/config/tp.config.php
.Client configuration
Browser:
Operating system:
Logs
Web server error log
Insert the log here and especially the answer of the
query that failed.
The text was updated successfully, but these errors were encountered: