In the past I used supercron successfully. Now I switched to 1.4-beta1 (no errors during update, update.php has been run, too) and I'm missing my user interface.
Could you give me the path to the user interface (admin/...)? Is there any dependancy due to AJAX?

Comments

j0nathan’s picture

Hi,
Maybe related to #749418: permissions

FrankT’s picture

Status: Active » Closed (fixed)

in my case I can't reproduce it any more, the menu entry appeared in the meantime (maybe cache issue?).

Alcaparra’s picture

me too

Oscar Illada’s picture

Status: Closed (fixed) » Active

same issue........
i install the module, but in such time the user interface disappear,
Thanx

lucidus_neil’s picture

I just installed this morning and I'm experiencing the same thing. The weird part is that it sporadically works and shows the menu. Then, the permissions names disappear from the permissions screen and the menu items are not there.

schultetwin’s picture

Same problem here.

omerida’s picture

i had the same symptoms. I think its because in the system db table, bootstrap=1 for the supercron module. Its affecting when its loading during drupal startup in a way that the module doesn't really load (because of the if function_exists call in supercron.module)

I changed bootstrap to 0in the db, visited the modules list page, and then cleared caches. After that, the supercron UI returned. But who knows for how long ...

FrankT’s picture

Meanwhile I had the problem again. Due to the latest comment I only flushed my cashes and the supercron UI reappeared. I will see for how long...

mchelen’s picture

Same problem appeared, SuperCron was not listed on admin page, and going to admin/settings/supercron only showed the Site configuration submenu, which still didn't include SuperCron.
Repeatedly clearing the cache seems to have fixed the problem, and both the menu link and settings page now display properly.

mchelen’s picture

It disappeared again, and clearing cache didn't help. Then after setting bootstrap to 0 in the system table, and clearing caches again, the supercron settings appeared.

sinasalek’s picture

Same here. I tried cleaning cache several times but i still can't see the menu!

sinasalek’s picture

I'm also receiving many page not founds for page like "supercron/run-autocron-c0083040b6b5882938c634c265e71a40"

sinasalek’s picture

I installed it on another site and it seems ok. I think that there is a conflict with another module!

MisterSpeed’s picture

Version: 6.x-1.4-beta1 » 6.x-2.x-dev
Status: Active » Needs review

The new version should hopefully eliminate this problem altogether; we have removed all calls to an API function that tended to fail during the bootstrap phase.

MisterSpeed’s picture

Status: Needs review » Closed (fixed)
mchelen’s picture

Status: Closed (fixed) » Active

Same problem still occurs after upgrade to 2.x and has the same workaround to fix (change bootstrap to 0 and clear cache).

travisc’s picture

6.1.4.dev works for me if your in a bind.

justinlevi’s picture

I can also confirm that after installation I could not reach any admin UI page after enabling the module.

smitchell360’s picture

+1 Same here. Supercron admin seems to work immediately after installation. However, after running a few cycles, the admin UX is gone / unreachable. Going to look into that bootstrap0 clear cache idea).

cor3huis’s picture

Status: Active » Closed (duplicate)

Related duplicate #983510: Permissions disappear

Try this in the mean time until the issue is fixed in the code:

  • Change bootstrap to 0
  • clear cache
  • olidem57’s picture

    I found another way to solve this issue :

    Use a relative path in every include_once instead of the absolute path given by the drupal_get_path function, for example :
    use
    include_once('supercron-main.inc');
    instead of
    if (function_exists('drupal_get_path')) include_once(drupal_get_path('module', 'supercron') . '/supercron-main.inc');
    in supercron.module

    parasolx’s picture

    seriously.. after changing the bootstrap = 0 in the DB, supercron admin appear again.

    even comment #21 is already in the 2.x-dev version still admin disappear. but with changing bootstrap, it solved the problem.