Hey, I got something shown when activating debug:
First page shows (after pressing login)
Code:
...
Site Debug mode: CB redirection without empty output
During its normal operations Community Builder often redirects you between pages and this causes potentially interesting debug information to be missed. When your site is in debug mode (global Joomla config is site debug ON), some of these automatic redirects are disabled. This is a normal feature of the debug mode and does not directly mean that you have any problems.
Click this link to proceed with the next page (in non-debug mode this is automatic): https://www.dkdb.dk/
...
'task' => 'login',
)
Second page shows:
Code:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 130968 bytes) in <span>/</span>home<span>/</span>dkdbdk/public_html/components/com_comprofiler/plugin/user/plug_cbconditional/cbconditional.class.php on line 75
Increasing the maxmem to 192:
Code:
Fatal error: Allowed memory size of 201326592 bytes exhausted (tried to allocate 130968 bytes) in <span>/</span>home<span>/</span>dkdbdk/public_html/components/com_comprofiler/plugin/user/plug_cbconditional/cbconditional.class.php on line 75
Increasing it to 256MB:
Code:
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 130968 bytes) in <span>/</span>home<span>/</span>dkdbdk/public_html/components/com_comprofiler/plugin/user/plug_cbconditional/cbconditional.class.php on line 75
And increasing it to 512MB:
Code:
Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 130968 bytes) in <span>/</span>home<span>/</span>dkdbdk/public_html/components/com_comprofiler/plugin/user/plug_cbconditional/cbconditional.class.php on line 75
So something is wrong with the cb_conditional, the version installed is 3.0.13.
Disabling the plugin let's the user login correctly.