Thursday, 23 May 2024
  3 Replies
  452 Visits
0
Votes
Undo
Hello,

After SYNC all existing JOOMLA users are published automaticly. This is not desired (in my opinion).

This can be solved easily:
- Database, table _jma_subscribers.
Structure, state, change default 1 --> 0.

Final solution:
in install.mysql.utf8.sql:
`state` tinyint(1) NOT NULL DEFAULT '1', --> `state` tinyint(1) NOT NULL DEFAULT '0',

CREATE TABLE IF NOT EXISTS `#__jma_subscribers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`ordering` int(11) NOT NULL DEFAULT '0',
`state` tinyint(1) NOT NULL DEFAULT '0',

Regards,
Peter