Website running on managed WP unreachable after latest automatic upgrade
-
The issue here was the GROUP_CONCAT has a default length of 1024 or so. Setting session variable
SET group_concat_max_len=10000
fixes the issue. -
The issue here was the GROUP_CONCAT has a default length of 1024 or so. Setting session variable
SET group_concat_max_len=10000
fixes the issue. -
@girish I had the same problem today following a Worpress update. I think the problem comes from the Civicrm plugin which has many tables. I restored with the last backup and disabled the automatic update, but that's not a solution.
-
@girish I had the same problem today following a Worpress update. I think the problem comes from the Civicrm plugin which has many tables. I restored with the last backup and disabled the automatic update, but that's not a solution.
-
It seems civicrm does not use WP's
table_prefix
at all. Well, I pushed a new package which simply ignore civicrm tables.@girish Ignoring the civicrm tables works.
However, I have the same kind of problem with an integration of MRBS in Wordpress for authentication. As the tables were properly renamed during the update, I simply set the ad hoc variable (
$db_tbl_prefix = "wp_mrbs_";
) in the configuration file and it works.But I guess there are other use cases where renaming tables causes problems.
-
@girish Ignoring the civicrm tables works.
However, I have the same kind of problem with an integration of MRBS in Wordpress for authentication. As the tables were properly renamed during the update, I simply set the ad hoc variable (
$db_tbl_prefix = "wp_mrbs_";
) in the configuration file and it works.But I guess there are other use cases where renaming tables causes problems.
@jeau Good to know, thanks!
We have to do this migration since WordPress it says it doesn't support not having a table prefix. See:
-
@jeau Good to know, thanks!
We have to do this migration since WordPress it says it doesn't support not having a table prefix. See: