• Resolved andreaslindgren

    (@andreaslindgren)


    Hi

    I have moved from another backup plugin to xcloner. It has worked good, but for one of my websites i can′t create a scheduled backup. I get this error message.

    “Table ’dbname.wp_xcloner_scheduler’ doesn’t exist”

    It seems like a database table is missing for xcloner. I have tried to disable all plugin except xcloner and reinstall the plugin, but i still get the same error message.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try and run this query manually in phpmyadmin:

    CREATE TABLE wp_scheduler_table (
    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)

    )

    That is the missing table of xcloner, please ley us know if you get any errors.

    • This reply was modified 5 years, 9 months ago by XCloner.
    • This reply was modified 5 years, 9 months ago by XCloner.
    Thread Starter andreaslindgren

    (@andreaslindgren)

    Thank you for fast answer.

    I tried this, it created a table, but xcloner still says that table doesn’t exist
    I was not getting any error when i created the table.

    My bad, the correct table name should be wp_xcloner_scheduler , so try and rename the created table to that.

    Thread Starter andreaslindgren

    (@andreaslindgren)

    Thank you

    Now it is working without problem.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can′t create schedule backup’ is closed to new replies.