• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

backup error plesk 10.0.1.1

E

epcow

Guest
How can i fix the following error off the plesk backup manager?

<?xml version="1.0" encoding="UTF-8"?>
<execution-result status="error">
<object name="backup" type="backupowner">
<message severity="error" code="msgtext">Unable to create dump: 'undef' value passed to XmlNode::setAttribute for 'conhelp' at /usr/local/psa/PMM/agents/shared/XmlNode.pm line 103.

</message>
</object>
</execution-result>
 
The issue can be related to database inconsistency - for some reason 'dns_zone' table got 'ttl_unit' equal 300, whereas it can be either:

'second' => 1,
'minutes' => 60,
'hours' => 3600,
'days' => 86400,
'weeks' => 604800

Try to check it with

select id,ttl_unit from dns_zone where ttl_unit not in (1,60,3600,86400,604800);
 
when i run the following command
mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa

select id,ttl_unit from dns_zone where ttl_unit not in (1,60,3600,86400,604800);

the result is Empty set (0.00 sec).
 
Last edited by a moderator:
error: Unknown object type

i also get a error Unknown object type when i look at a backup task that is started with a cron job.
 
I can say only that 'conhelp' is something related to localization. More detailed investigation directly on your server is required. Very difficult to find a reason only by forum's discussions... Therefore I suggest you contact support team or wait - maybe someone else will help you.
 
I'm with a similar issue here. The problem is a domain missconfigured by something related to an installed app from the app vault that was not correctly cleared and now makes the backup system to crash while trying to track the directory where that application is stored. I'm working on solving this problem. When I have something I'll write again.
 
Back
Top