I'm using the same module in multisite. For one site when I access the 'schedules' tab I get the following problems:

1) "Call to a member function delete_confirm_message() on a non-object in ...[path to crud.inc] on line 147"

2) in some pages I get the warning message:
"warning: Missing argument 1 for backup_migrate_crud_ui_delete() in ...[path to crud.inc] on line 132.

3) the 'profiles' tab gives a whitescreen

4) the 'destinations' tab give a timeout with improper redirect.

Any insight from the maintainers would be awesome before I try to figure out which module is incompatible.

Comments

tbenice’s picture

Status: Active » Closed (works as designed)

Cache clear solved this for me.

tbenice’s picture

Status: Closed (works as designed) » Active

OK, it started up again. Now I have the warning: Missing argument 1 for backup_migrate_crud_ui_edit() error so I'm moving this over to http://drupal.org/node/689080. Reopening

mjross’s picture

Clearing the browser cache? I tried that, but I still get the same delete_confirm_message() error.

Subscribing...

mjross’s picture

Here are more details: "List Profiles" is linked to admin/content/backup_migrate/profile/list, but goes to admin/content/backup_migrate/profile/list/delete, which causes "Fatal error: Call to a member function delete_confirm_message()...". Go back, and click "Create Profile", and get "warning: Missing argument 1 for backup_migrate_crud_ui_delete()..." Click on "List Schedules" and it works. Click "Create Schedule", and it goes to admin/content/backup_migrate/schedule/list/delete, and gets "Fatal error: Call to a member function delete_confirm_message()..." Click on "List Schedules" a second time, and it fails. Go to admin/content/backup_migrate/schedule/ or even admin/content/backup_migrate/, and get same "Fatal error".

I was able to get rid of the fatal "Call to a member function delete_confirm_message() on a non-object" error by adding some code to crud.inc, at line 135, just before the "return" statement:

    if ( ! is_object( $item ) ) {
        return null;
    }

But the other problems remain.

Without being able to list the existing profiles and schedules, they cannot be edited or deleted.

ronan’s picture

Status: Active » Fixed

I think this is the same as the issue caused by linking too deep using the admin menus module, which should be fixed int he latest dev. Please reopen if the latest dev doesn;t fix.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.