This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.

shadowhand
shadowhand

This issue just came up after installing from Git source code. Logged into the backend and went to the users page. I received an error that the a column was missing in my SQL statement. Went to the DB and the column was there, so I looked closer to the SQL statement and saw that the table prefix was missing in the "group_concat" portion of the statement.
The source of the error was around line 278 of modules/backend/widgets/Lists.php.
The line reads:

$table =  $this->model->makeRelation($column->relation)->getTable();

It needs to be changed to:

$table =  DB::getTablePrefix().$this->model->makeRelation($column->relation)->getTable();

There may be more places like it.

Last updated

1-1 of 1

You cannot edit posts or make replies: the forum has moved to talk.octobercms.com.