vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   CRON the enabling/disabling of a plugin (https://vborg.vbsupport.ru/showthread.php?t=131184)

dartho 11-10-2006 02:04 AM

CRON the enabling/disabling of a plugin
 
How could I set up a plugin to be automagically enabled/disabled in certain days/times?

dartho 11-14-2006 02:32 AM

Anyone? Bueller?

dartho 10-27-2007 01:07 AM

I've come back to this. I'm still looking for a way to schedule the activation of a plugin..

I've tried creating a PHP file which toggles the "active" status of a plugin directly in the database - but this seems to have no effect.

Any other suggestions where I may look would be appreciated.

Thanks

Marco van Herwaarden 10-27-2007 07:44 AM

did you also update the datastore?

dartho 10-27-2007 09:59 AM

um, no - I didn't. I'll go see if I can work it out now - any further guidance appreciated

Thanks!

--------------- Added [DATE]1193489532[/DATE] at [TIME]1193489532[/TIME] ---------------

OK- I had a look, and on the face of it - it seems too hard for my puny intellect to grasp.

I guess I could go with modifying the plugin so it's execution is dependent on say the existence of a flag file and cron the creation/deletion of the flag file as opposed to enabling/disabling the plugin itself...

Edit: works a treat!

|Jordan| 02-06-2008 06:50 AM

Quote:

Originally Posted by dartho (Post 1369617)
um, no - I didn't. I'll go see if I can work it out now - any further guidance appreciated

Thanks!

--------------- Added [DATE]1193489532[/DATE] at [TIME]1193489532[/TIME] ---------------

OK- I had a look, and on the face of it - it seems too hard for my puny intellect to grasp.

I guess I could go with modifying the plugin so it's execution is dependent on say the existence of a flag file and cron the creation/deletion of the flag file as opposed to enabling/disabling the plugin itself...

Edit: works a treat!

Any chance you can release it?

dartho 02-07-2008 12:05 AM

What I did was this:

Edit the plugin code and add the following:
Code:

$filename = "/path/to/forum/plugin.go";
if (file_exists($filename)) {


PLUGIN CODE


}

and then create 2 CRON jobs (I did it via cpanel) with the following as the command:
1.
Code:

date>/path/to/forum/plugin.go
and scheduled it to run when I wished to enable the plugin

2.
Code:

rm /path/to/forum/plugin.go
and scheduled it to run when I want the plugin disabled

You could probably create a php file and use vBulletin's Scheduled Tasks
to do the CRON for you. It ain't pretty, but t works


All times are GMT. The time now is 08:18 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01067 seconds
  • Memory Usage 1,725KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete