• Hi, When I tried creating an entry for schedule backup, I got the following error.

    “Table ‘alfajerfm_wp.wpp5_xcloner_scheduler’ doesn’t exist”

    I installed the plugin the normal way and did not run any table optimisation plugins.

    Thanks.

Viewing 1 replies (of 1 total)
  • Have you tried reinstalling the plugin? If that doesn’t work, you can execute this query to create the missing table

    CREATE TABLE wpp5_xcloner_scheduler (
    id int(11) NOT NULL AUTO_INCREMENT,
    name varchar(255) NOT NULL,
    recurrence varchar(25) NOT NULL,
    params text NOT NULL,
    start_at datetime,
    remote_storage varchar(10) DEFAULT NULL,
    hash varchar(10) DEFAULT NULL,
    status int(1) NOT NULL,
    last_backup varchar(100) DEFAULT NULL,
    PRIMARY KEY (id)
    )

    Hope it helps.

Viewing 1 replies (of 1 total)

The topic ‘Schedule Backup Error’ is closed to new replies.