Trying to change a users password (not admin) and getting: Error Can't execute SQL.
HESK version
3.2.2 - Update available
Update HESK
PHP version
7.3.31 (MySQLi)
MySQL version
10.1.48-MariaDB
/hesk_settings.inc.php
Exists, Writable
/Jfkg1reSdifneDkdo
Exists, Writable
/cache
Exists, Writable
Cannot execute SQL msg on password change
Moderator: mkoch227
Re: Cannot execute SQL msg on password change
If you turn Debug mode ON in Admin > Settings > Help desk > Features then try again, what does the error say?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Cannot execute SQL msg on password change
MySQL said:
Unknown column 'notify_overdue_my' in 'field list'
Unknown column 'notify_overdue_my' in 'field list'
Re: Cannot execute SQL msg on password change
See this: viewtopic.php?f=13&t=6771
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Cannot execute SQL msg on password change
Did that
Got thisUpgraded from Mods for Hesk in the past, I presume?
Try this:
1. backup existing database
2. run this on your database in phpMyAdmin (your host should have it):
CODE: SELECT ALL
ALTER TABLE `hesk_users` ADD COLUMN `notify_overdue_my` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1' AFTER `notify_overdue_unassigned`
I can confirm I did have mods for hesk and removed it some time ago per the directions provided.MySQL returned an empty result set (i.e. zero rows). (Query took 0.0353 seconds.)
ALTER TABLE `hesk_users` ADD COLUMN `notify_overdue_my` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1' AFTER `notify_overdue_unassigned`
Re: Cannot execute SQL msg on password change
Does changing the password work now?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Cannot execute SQL msg on password change
Well well, yes it does! I've never been very good at reading SQL output lol Thanks!