Hi/Salam,

I got many of the messages related to below error of database table. after upgrading DMA Softlab Radius Manager from 4.1.5 to 4.1.6 or updating the theme.



Unknown column 'pm_netcash' in 'field list'

Below is the fix for this error. Make sure to change SQL passoword.

mysql -u root -pYOUR_MYSQL_PASSWORD
use radius;
ALTER TABLE `rm_settings` ADD `pm_netcash` INT NOT NULL;
exit

Unknown column `pm_ sagepay` in 'field list'


Below is the fix for this error. Make sure to change SQL passoword.


mysql -uroot -pSQLPASS
use radius;
ALTER TABLE `rm_settings`  CHANGE `pm_netcash` `pm_sagepay` TINYINT( 1 ) NOT NULL ;


Post a Comment

 
Top