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
Comment #1
j0nathan commentedHi,
Maybe related to #749418: permissions
Comment #2
FrankT commentedin my case I can't reproduce it any more, the menu entry appeared in the meantime (maybe cache issue?).
Comment #3
Alcaparra commentedme too
Comment #4
Oscar Illada commentedsame issue........
i install the module, but in such time the user interface disappear,
Thanx
Comment #5
lucidus_neil commentedI 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.
Comment #6
schultetwin commentedSame problem here.
Comment #7
omerida commentedi 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 ...
Comment #8
FrankT commentedMeanwhile 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...
Comment #9
mchelenSame 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.
Comment #10
mchelenIt 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.
Comment #11
sinasalek commentedSame here. I tried cleaning cache several times but i still can't see the menu!
Comment #12
sinasalek commentedI'm also receiving many page not founds for page like "supercron/run-autocron-c0083040b6b5882938c634c265e71a40"
Comment #13
sinasalek commentedI installed it on another site and it seems ok. I think that there is a conflict with another module!
Comment #14
MisterSpeed commentedThe 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.
Comment #15
MisterSpeed commentedComment #16
mchelenSame problem still occurs after upgrade to 2.x and has the same workaround to fix (change bootstrap to 0 and clear cache).
Comment #17
travisc commented6.1.4.dev works for me if your in a bind.
Comment #18
justinlevi commentedI can also confirm that after installation I could not reach any admin UI page after enabling the module.
Comment #19
smitchell360 commented+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).
Comment #20
cor3huis commentedRelated duplicate #983510: Permissions disappear
Try this in the mean time until the issue is fixed in the code:
Comment #21
olidem57 commentedI 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
Comment #22
parasolx commentedseriously.. 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.