Syed Jahanzaib – Personal Blog to Share Knowledge !

May 9, 2016

Radius Manager Table Missing Errors

Filed under: Radius Manager — Tags: , , , — Syed Jahanzaib / Pinochio~:) @ 11:57 AM

Error # 1

Unknown column ‘pm_sagepay’ in ‘field list’

After install or upgrade radius manager, you may see following error when you click on Home / Settings

 

123

It is caused by in-correct table name pm_netcash where as RM searches for `pm_ sagepay`. Issue following command to solve it.

Login to mysql, and change db to radius.

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

Make sure to change mysql password. This will alter the in.correct table name to correct one and then you will be able to access the menu correctly.


Error # 2

Unknown column in ‘pm_netcash’ in ‘field list’

[Updated 27th-Feb-2017]

If you see following error

pm_netcash-error-in-radius-manager

Then follow this …

login to mysql, change db to radius, and alter the table. full commands are as below …

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

Done. Now refresh ACP page in browser and all will be fine Insha Allah.

 

Regard’s
Syed Jahanzaib