Delete layout from montage view

Discussions related to the 1.36.x series of ZoneMinder
Post Reply
tucker88
Posts: 4
Joined: Sun Jan 28, 2024 5:00 pm

Delete layout from montage view

Post by tucker88 »

Hi,

Maybe I'm just too stupid and at risk of repeating this viewtopic.php?t=29234&sid=1c56fa34e3490 ... cdc432504e, but how can I delete a layout that I created myself?
Or maybe just rename it. Made a spelling boo boo and would like it to go away.

Thanks!
User avatar
iconnor
Posts: 2912
Joined: Fri Oct 29, 2010 1:43 am
Location: Toronto
Contact:

Re: Delete layout from montage view

Post by iconnor »

I never got around to adding that functionality.

You have to go to mysql and change it using sql.

mysql -u zmuser -p zm
select * from MontageLayouts;
DELETE FROM MontageLayouts where Name='bad name';
or
UPDATE MontageLayouts set Name='Good Name' WHERE Name='Bad Name';
tucker88
Posts: 4
Joined: Sun Jan 28, 2024 5:00 pm

Re: Delete layout from montage view

Post by tucker88 »

Ok, love that :lol:
I'll make sure the operators know not to create something too funny:P
Post Reply