Hi,

Something very strange:
I have back up and migrate running under 2 different websites.
Website 1 is working perfectly fine.

Website 2 is problematic. I upgrade from version 2.8 to version 3.0 and since then all 'Operations' buttons are missing. I can add destinations, sources, profiles etc, but I cannot delete, modify or export them anymore...

The links under the Operations columns are simply missing.

I already uninstalled it, deleted the files from the module, reinstalled, cleared cache, rebuild access permissions etc and nothing seems to work.

Am I missing something?

See attached screenshot for details.

Thanks!

CommentFileSizeAuthor
2015-04-18_133404.jpg95.75 KBbjorndeclerck
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

bjorndeclerck’s picture

Update: I downgraded to version 2.8 > Uninstalled version 3.0, hard deleted all module files, cleared cache and installed 2.8 and now I have the buttons.

But running on an older version :-s

When I check for upgrades in Drupal, Backup and Migrate doesn't come up in the list to upgrade. Is my assumption correct that a manual upgrade is required from 2.8 to 3.0 ?

Thanks!

bjorndeclerck’s picture

Priority: Normal » Major
ronan’s picture

When I check for upgrades in Drupal, Backup and Migrate doesn't come up in the list to upgrade. Is my assumption correct that a manual upgrade is required from 2.8 to 3.0

Since the 2.x branch is still marked as supported, the Drupal upgrade system will not tell you about the 3.x branch if you're currently on the 2.x branch.

I really can't tell you what's happening on your server with the 3.x version. I haven't heard of anyone else having this issue. Very weird.

mtoscano’s picture

Hi,
having the same problem here, the same on two different websites running on the same server.
Operations links are gone, except that for Saved Backups page, where they are present.
The behaviour is the same as here https://www.drupal.org/node/2276373, as I have seen them once for a fraction of a second on the slowest website.

bjorndeclerck’s picture

HI All,

I found and solved the issue (with a workaround).

I use the BigWig theme that contains a module called BigWig Tools.

In the module folder, there is filename called 'admin.js' stored on this path:
sites/all/modules/bigwig_tools/pe_slider/js/admin.js

Row 6 of this file shows the following:

e('table td a:contains("export")').parent().remove();

The TD that is generated in Backup & migrate that shows the operations links contains the word 'export' and is therefore removed by this JS.

As I have no clue what the intention is of this piece of JS, I just replaced the code with this one, and all worked!

e('table td a:contains("exportttt")').parent().remove();

Hopefully this can help you resolve this very specific issue...

Regards,
Bjorn

couturier’s picture

Status: Active » Closed (works as designed)

It sounds like the manual fix in comment #5 is viable. Otherwise, the issue cannot be reproduced to identify the problem in the code. Please re-open and re-file under the current 7.x-3.2 version if this is still an issue.