• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

e-mail Notifications error

AndyD.

New Pleskian
Hello,

i get the following error :

Fehler: Unable to create notification: Unable to create Note object: Note: unable to select: no such row in the table
and
Fehler: Benachrichtigung kann nicht aktualisiert werden: Unable to create Note object: Note: unable to select: no such row in the table

in tools&settings -> Email Notifications

i run plesk 12.00.18#7 and i have upgrade from 11.5.30

how can i fix this error

regards

Andy
 
Looks like uncompleted successfully upgrade. Try to use bootstrapper repair procedure.
 
Hello,
this don't fix the Problem

Trying to find psa database... version is 012000018
Version is OK, no need to create psa database.

....

Trying to set psa database version to 012000018... done
===> Cumulative upgrade and repair of Plesk database (revertable stage) has been completed.
Database is up-to-date
===> Cumulative Plesk upgrade and repair (final stage) has been started.
Upgrade or repair for 'core' (stage 'post') is not required
===> Preparing Plesk upgrade (final stage).

regards

Andy
 
Be sure that you have the same structure of Notifications table in Plesk database:

mysql> desc Notifications;
+---------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| status | varchar(1) | NO | | NULL | |
| send2admin | varchar(1) | NO | | NULL | |
| send2reseller | varchar(1) | NO | | NULL | |
| send2client | varchar(1) | NO | | NULL | |
| send2dlu | varchar(1) | NO | | NULL | |
| send2email | varchar(1) | NO | | NULL | |
| email | varchar(255) | NO | | NULL | |
| subj | varchar(255) | NO | | NULL | |
| note_id | int(10) unsigned | YES | MUL | NULL | |
+---------------+------------------+------+-----+---------+----------------+
10 rows in set (0.00 sec)

And Notes table:

mysql> desc Notes;
+-------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| text | text | NO | | NULL | |
+-------+------------------+------+-----+---------+----------------+
2 rows in set (0.00 sec)
 
Last edited:
Hello,

it's the same structure

mysql> desc Notifications;
+---------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| status | varchar(1) | NO | | NULL | |
| send2admin | varchar(1) | NO | | NULL | |
| send2reseller | varchar(1) | NO | | NULL | |
| send2client | varchar(1) | NO | | NULL | |
| send2dlu | varchar(1) | NO | | NULL | |
| send2email | varchar(1) | NO | | NULL | |
| email | varchar(255) | NO | | NULL | |
| subj | varchar(255) | NO | | NULL | |
| note_id | int(10) unsigned | YES | MUL | NULL | |
+---------------+------------------+------+-----+---------+----------------+
10 rows in set (0.01 sec)

mysql> desc Notes;
+-------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| text | text | NO | | NULL | |
+-------+------------------+------+-----+---------+----------------+
2 rows in set (0.01 sec)
 
Back
Top