vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   i am having a strange problem with schedule task (https://vborg.vbsupport.ru/showthread.php?t=141496)

dip1232001 03-08-2007 04:29 PM

i am having a strange problem with schedule task
 
can anyone tell me how to stop a schedule task cause i have just added a schedule task and for that when ever it runs the usergroup id gets changed to banned id or some thing else can any one tell how to stop that schedule task?

i have added a php file in corn folder with these codes

Quote:

<?php
/**
* VBulletin Torrent Tracker v3.0 for XBT v1.0 FINAL - VBXBT_Mod_2_VBTT 3.0 user/torrent/files transfer
* Coded by Toolmanwill
**/

error_reporting(E_ALL & ~E_NOTICE);

if (!is_object($vbulletin->db))
{
exit;
}


// ban users with low ratio

$vbulletin->db->query_write("UPDATE `user` SET `can_leech` = 0, `usergroupid` = 55 WHERE (`uploaded` / `downloaded`) < 0.25 AND `downloaded` > 1073741824 ");

// lift ban on users who improved ratio

$vbulletin->db->query_write("UPDATE `user` SET `can_leech` = 1, `usergroupid` = 55 WHERE (`uploaded` / `downloaded`) > 0.50 AND `downloaded` > 1073741824 ");


?>
i think the problem is in this code

Quote:

// ban users with low ratio

$vbulletin->db->query_write("UPDATE `user` SET `can_leech` = 0, `usergroupid` = 55 WHERE (`uploaded` / `downloaded`) < 0.25 AND `downloaded` > 1073741824 ");

// lift ban on users who improved ratio

$vbulletin->db->query_write("UPDATE `user` SET `can_leech` = 1, `usergroupid` = 55 WHERE (`uploaded` / `downloaded`) > 0.50 AND `downloaded` > 1073741824 ");
can any one sort it out or rewrite it ......any kind of help i will be glad.. and one thing more if i wanna add more than one usergroup id then what should be the code look like...


All times are GMT. The time now is 08:01 AM.

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.01705 seconds
  • Memory Usage 1,709KB
  • 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
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)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