🇭🇺Hungary martonadam
I tried again: probably the tokens I tried with earlier returned an empty string, with the right tokens the naming and saving works fine.
I manually created the realname table based on realname.install
CREATE TABLE `speleoar_drup677`.`drspa_realname` (`uid` INT UNSIGNED NOT NULL DEFAULT '0' , `realname` VARCHAR(255) NOT NULL DEFAULT '' , `created` INT UNSIGNED NOT NULL DEFAULT '0' , PRIMARY KEY (`uid`)) ENGINE = InnoDB;
ALTER TABLE `drspa_realname`
ADD CONSTRAINT `drspa_realname_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `drspa_users` (`uid`);
COMMIT;
After this, the page does not crash and the Realname setting is available,.
🇭🇺Hungary martonadam
I manually created the realname table based on realname.install
CREATE TABLE `speleoar_drup677`.`drspa_realname` (`uid` INT UNSIGNED NOT NULL DEFAULT '0' , `realname` VARCHAR(255) NOT NULL DEFAULT '' , `created` INT UNSIGNED NOT NULL DEFAULT '0' , PRIMARY KEY (`uid`)) ENGINE = InnoDB; ALTER TABLE `drspa_realname`
ADD CONSTRAINT `drspa_realname_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `drspa_users` (`uid`);
After this, the page does not crash and the Realname setting is available, however, it does not take tokens into account, only the normal string (this is also registered in the database) and all usernames are this string.
🇭🇺Hungary martonadam
martonadam → created an issue.