Hi,
Check that your SERVICES table is set to MyISAM and not INNODB (which is
the default I think in Mysql 5.5+)
$ mysql -h rivserver_ip_or_name -u root -p
$> use Rivendell;
$> show create table SERVICES;
You'll get a big mess of SQL splurged out, scroll down to here:
`CLOCK166` char(64) DEFAULT NULL,
`CLOCK167` char(64) DEFAULT NULL,
PRIMARY KEY (`NAME`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 |
If its not MyISAM try this:
$> alter table SERVICES ENGINE=MyISAM;
Then redo your grids and see if it sticks.
Regards,
Wayne Merricks
The Voice Asia
On 23/10/13 03:56, Pedro Picoto (TSF/tec) wrote:
Grids don't update
To better help understand the problem:
http://youtu.be/PGP_UcR5vMM
_______________________________________________
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
_______________________________________________
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev