Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > TBDev
Reply
  #1  
Old 22nd November 2019, 19:48
elvira's Avatar
elvira elvira is offline
Senior Member
 
Join Date: Jan 2008
Slovenia
Posts: 172
Default Crazyhour
hello all,


what can be wrong here


Click the image to open in full size.





Code:
         if (isset($CURUSER)) {
   $transfer_filename  = $BASEURL['cache'].'/transfer_crazyhour.txt';
   $crazyhour_filename = $BASEURL['cache'].'/crazy_hour.txt';
   $crazyhour_cache = fopen($crazyhour_filename,'r+');
   $crazyhour_var = fread($crazyhour_cache, filesize($BASEURL['cache'].'/crazy_hour.txt'));
   fclose($crazyhour_cache);
   $cimg = '<img src=\''.$BASEURL.'pic\cat_free.gif\' alt=\'FREE!\' />';
   if ($crazyhour_var >= sqlesc(get_date_time()) && $crazyhour_var < sqlesc(get_date_time()) + 3600) { // is crazyhourmkprettytime(strtotime($leechwarnuntil) - gmtime()) 
       echo"<table width='50%'><tr><td class='colhead' colspan='3' align='center'>
       w00 Vrijeme je za slobodne sate! Zavrsava u ".mkprettytime($crazyhour_var - time)."</td></tr>
       <tr><td width='42px' align='center' valign='middle'>". $cimg."</td>
       <td><div align='center'>Svi torrenti su FREE/SLOBODNI i upload statistika se UTROSTRUCUJE!</div></td>
       <td width='42px' align='center' valign='middle'>".$cimg."</td></tr></table><br />";
        if (is_file($transfer_filename))
            unlink($transfer_filename);
    }
    elseif ($crazyhour_var < sqlesc(get_date_time()) + 3600 && !is_file($transfer_filename)) { //== crazyhour over
        $transfer_file_created = fopen($transfer_filename, 'w');
        fclose($transfer_file_created);
        $crazyhour['crazyhour_new']       = mktime(23, 59, 59, date('m'), date('d'), date('y'));
        $crazyhour['crazyhour']['var']    = mt_rand($crazyhour['crazyhour_new'],  ($crazyhour['crazyhour_new'] + 86400);
        $fp = fopen($crazyhour_filename, 'w');
        fwrite($fp, $crazyhour['crazyhour']['var']);
        fclose($fp); 
        write_log('Naslednji slobodni sati u '.gmdate('Y-m-d H:i', $crazyhour['crazyhour'] ['var'])); 
        echo"<table cellpadding='3'><tr><td class='colhead' colspan='3' align='center'>"." Crazyhour will be ".get_date_time($crazyhour['crazyhour']['var'], '')." -------------- ".mkprettytime(strtotime($crazyhour['crazyhour']['var'] - gmtime()))." remaining till Crazyhour</td></tr></table><br />";
        }
        else // make date look prettier with countdown etc even :]
        echo"<table cellpadding='3'><tr><td class='colhead' colspan='3' align='center'>"." Crazyhour will be ".get_date_time($crazyhour_var, '')."  ".mkprettytime(strtotime($crazyhour_var - gmtime()))." remaining till Crazyhour</td></tr></table><br />";
        }



Thanks for help
Reply With Quote
  #2  
Old 23rd November 2019, 13:42
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Default
what is it your trying to do and what core are you using 08 09 ?
Reply With Quote
  #3  
Old 23rd November 2019, 13:48
elvira's Avatar
elvira elvira is offline
Senior Member
 
Join Date: Jan 2008
Slovenia
Posts: 172
Default
its for 08 and if you can see on picture not show me a date
Reply With Quote
  #4  
Old 23rd November 2019, 14:15
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Default
did you 0777 crazyhour.txt and folder to 0777 ill look into it
Reply With Quote
  #5  
Old 23rd November 2019, 14:19
elvira's Avatar
elvira elvira is offline
Senior Member
 
Join Date: Jan 2008
Slovenia
Posts: 172
Default
yes have to 0777 crazyhour.txt and transfer_crazyhour.zxz
Reply With Quote
  #6  
Old 23rd November 2019, 15:17
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Default
You are missing a few files from what i can see ill post up when done a demo on server do not worry fix be done for you
Reply With Quote
  #7  
Old 23rd November 2019, 15:33
elvira's Avatar
elvira elvira is offline
Senior Member
 
Join Date: Jan 2008
Slovenia
Posts: 172
Default
ok, you will post today
Reply With Quote
  #8  
Old 23rd November 2019, 15:56
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Default
Pm me all your files on this upload them some where so i can download em
Reply With Quote
  #9  
Old 23rd November 2019, 16:31
elvira's Avatar
elvira elvira is offline
Senior Member
 
Join Date: Jan 2008
Slovenia
Posts: 172
Default
This code is for TBDev09 some changes we must make to work on TBDev 08


announce.php


Code:
    if ( strtoupper( substr(PHP_OS, 0, 3) ) == 'WIN' )
      {
        $file_path = str_replace( "\\", "/", dirname(__FILE__) );
        $file_path = str_replace( "/include", "", $file_path );
      }
      else
      {
        $file_path = dirname(__FILE__);
        $file_path = str_replace( "/include", "", $file_path );
      }
      
    define('ROOT_PATH', $file_path);

and this



Code:
$BASEURL["cache"] = ROOT_PATH.'cache';

and this too


Code:
        $crazyhour = crazyhour_announce();
       if ($upthis > 0 || $downthis > 0)    
       mysql_query("UPDATE users SET uploaded = uploaded + ".(!$crazyhour?"$upthis":"$upthis*3").(!$crazyhour?", downloaded = downloaded + $downthis ":'')." WHERE id=$userid") or err("Tracker error 3");

then in fuctions.php add


Code:
         if (isset($CURUSER)) {
   $transfer_filename  = $BASEURL['cache'].'/transfer_crazyhour.txt';
   $crazyhour_filename = $BASEURL['cache'].'/crazy_hour.txt';
   $crazyhour_cache = fopen($crazyhour_filename,'r+');
   $crazyhour_var = fread($crazyhour_cache, filesize($BASEURL['cache'].'/crazy_hour.txt'));
   fclose($crazyhour_cache);
   $cimg = '<img src=\''.$BASEURL["pic_base_url"].'cat_free.gif\' alt=\'FREE!\' />';
   if ($crazyhour_var >= TIME_NOW && $crazyhour_var < TIME_NOW + 3600) { // is crazyhour
       $htmlout .="<table width='50%'><tr><td class='colhead' colspan='3' align='center'>
       w00t It's Crazyhour! Ends in ".mkprettytime($crazyhour_var - TIME_NOW)."</td></tr>
       <tr><td width='42px' align='center' valign='middle'>". $cimg."</td>
       <td><div align='center'>All torrents are FREE and upload stats are TRIPLED!</div></td>
       <td width='42px' align='center' valign='middle'>".$cimg."</td></tr></table><br />";
        if (is_file($transfer_filename))
            unlink($transfer_filename);
    }
    elseif ($crazyhour_var < TIME_NOW + 3600 && !is_file($transfer_filename)) { //== crazyhour over
        $transfer_file_created = fopen($transfer_filename, 'w') or die('no perms?');
        fclose($transfer_file_created);
        $crazyhour['crazyhour_new']       = mktime(23, 59, 59, date('m'), date('d'), date('y'));
        $crazyhour['crazyhour']['var']    = mt_rand($crazyhour['crazyhour_new'], ($crazyhour['crazyhour_new'] + 86400));
        $fp = fopen($crazyhour_filename, 'w');
        fwrite($fp, $crazyhour['crazyhour']['var']);
        fclose($fp); 
        write_log('Next Crazyhour is at '.date('F j, g:i a T', $crazyhour['crazyhour'] ['var'])); 
        $htmlout .="<table cellpadding='3'><tr><td class='colhead' colspan='3' align='center'>"." Crazyhour will be ".get_date($crazyhour['crazyhour']['var'], '')."  ".mkprettytime($crazyhour['crazyhour']['var'] - TIME_NOW)." remaining till Crazyhour</td></tr></table><br />";
        }
        else // make date look prettier with countdown etc even :]
        $htmlout .="<table cellpadding='3'><tr><td class='colhead' colspan='3' align='center'>"." Crazyhour will be ".get_date($crazyhour_var, '')."  ".mkprettytime($crazyhour_var - TIME_NOW)." remaining till Crazyhour</td></tr></table><br />";
        }    }
Reply With Quote
  #10  
Old 23rd November 2019, 16:35
Napon Napon is offline
Banned
 
Join Date: Feb 2016
P2P
Posts: 522
Default
i need to make a function to call on the
crazyhour_announce time start and end of date also a mysql too for this to work with the cache too
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 10:25. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.