vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Countdown Timer for your users (https://vborg.vbsupport.ru/showthread.php?t=107596)

Mum 02-01-2007 04:30 PM

Just watching for success stories with 3.6.4 before i install :)

Fitone 02-12-2007 06:41 PM

This is a TOTAL newb question but where can i find the "forum/includes' ?

Fitone 02-12-2007 06:59 PM

Ok I found it on my server and uploaded the .php file and also uploaded the .xml file through VB however the countdown option is not appearing it my edit options.

Any ideas? Is is supposed to work with 3.6?

Mum 02-13-2007 09:34 PM

I haven't heard of any success stories yet, i'm still waiting!!

blind-eddie 02-16-2007 12:38 AM

Any news yet?

Tom_S 02-16-2007 09:12 AM

Same issues with errors on install with 3.6.4..uninstalled and waiting for upgrade

gobears20 04-27-2007 09:00 PM

Will this work with Version 3.6.5?

airborneCAL 05-11-2007 02:35 AM

Quote:

Originally Posted by gobears20 (Post 1236679)
Will this work with Version 3.6.5?

I'm curious as well.

R-n-R 05-11-2007 02:47 AM

I would like to know as well.

WAHMama 05-17-2007 03:29 PM

I just tried to install this and as soon as I did I received database error whenever attempting to access a thread. I could see the main board and the forums but entering individual threads was an issue. Have uninstalled and will wait for further information.

I am running 3.6.7

PinkLiquorice 06-10-2007 12:34 PM

I am running 3.6.7 uploaded it as prompted and although it is in my usergroup bit and I have enabled it from there there is nothing showing in the usercp

SBlueman 06-24-2007 10:41 PM

Getting this DB error:
Quote:

Database error in vBulletin 3.6.5:

Invalid SQL:
SELECT field0 FROM userfield WHERE userid='580';;

MySQL Error : Unknown column 'field0' in 'field list'
Error Number : 1054
Date : Sunday, June 24th 2007 @ 07:40:49 PM
Script : http://gridironfans.com/forums/showt...=29692&page=16
Referrer : http://gridironfans.com/forums/showthread.php?p=172063
IP Address : 71.198.190.172
Username : SteveRobWhatever
Classname : vb_database

Aeolian 09-29-2007 03:48 PM

is this MOD dead? :|

Mum 09-30-2007 07:17 AM

The mod writer hasn't been on since Jun 06 so i d say so :(

jdelasko 11-13-2007 02:38 AM

Wish I would have read this entire thread before I installed. Same story... doesn't show up in userCP in V 3.6.4

Uninstalled.

Great idea though. Wish someone would fix this.

craiovaforum 11-18-2007 06:38 PM

I have been using this plugin for some time now. Just now I stumbled upon something that it seems I have overlooked in the past.
The file "/includes/plugins_usercountd.php" gets parsed every time postbit_display_complete is called. Meaning that if you look at a thread with 50 posts per page that file will be parsed 50 times. Luckily the script includes no database queries :)
This has probably little effect if you use a php opcode cache like xcache, apc etc. On systems that don't use an opcode cache for php this plugin will generate plenty of unneeded overhead.

I'm seriously thinking of removing this plugins from my forums because of this even if it didn't visibly affect me so far (probably because I have always used xcache). My board recently hit the 1 million post milestone so every bit of gained performance is valuable from now on.

nyunyu 12-08-2007 07:03 PM

I installed this hack. After giving permission to usergroup, I tried to test it out.
Unfortunately it work with an error..see attachment.

How can I fix this? I use vB 3.6.8.

Tom_S 12-08-2007 08:10 PM

Maybe because it is for version 3.5.4?:rolleyes:

nyunyu 12-09-2007 09:41 AM

I understand if some mod for 3.6.x doesnt have backward compatibility with lower version but 3.5.4 mod cannot be used for 3.6.8? Hmm...can the coder replied so that I can know for sure if this mod cannot be used with 3.6.8?

Tom_S 12-09-2007 03:11 PM

Why don't you do like I do and everyone else. On the top right of this mod there is a link that says "About the Developer" click that link. It says he/she has not been on here since 3 Jul 2006. Now I would pretty much say your chances are pretty slim. Your best bet is getting another member to help you.

nyunyu 12-09-2007 03:24 PM

ah..I missed that part...

~nyu click uninstall~

FoReX 01-28-2008 01:00 AM

not working 3.6.8. i installed and i can't see any section in editprofile page. can anyone update to 3.6.8.

UncoderMom 05-30-2008 11:37 AM

Yep... stopped working for me in 3.7.0. Shame really becuase this is something that was so very used on my forums.

Hope someone can update!!

UncoderMom 05-30-2008 11:52 AM

I think the problem is somewhere in here...

Someone wanna take a stab? The mod just says that it cant be redistributed with out giving credit. LOL doesnt say we can fix it if its broke.
PHP Code:

// ********************************************************************** \\

if ( ( $THIS_HOOK == "profile_updateoptions" ) AND ( $permissions["hc_usercountdown"] & $vbulletin->bf_ugp["hc_usercountdown"]["canusecountdown"] ) )
{
  
$vbulletin->input->clean_array_gpc('p', array( "countdownuserfield" => TYPE_STR,
                                                 
"cdsettings"         => TYPE_ARRAY ));

  
$cdsettings     $vbulletin->GPC["cdsettings"];
  
$cdprofilefield $vbulletin->GPC["countdownuserfield"];

  
$cddata["enabled"] = $cdsettings[$cdprofilefield "_enable"];
  
$cddata["day"]     = $cdsettings[$cdprofilefield "_day"];
  
$cddata["month"]   = $cdsettings[$cdprofilefield "_month"];
  
$cddata["year"]    = $cdsettings[$cdprofilefield "_year"];
  
$cddata["hour"]    = $cdsettings[$cdprofilefield "_hour"];
  
$cddata["minute"]  = $cdsettings[$cdprofilefield "_minute"];
  
$cddata["event"]   = $cdsettings[$cdprofilefield "_event"];
  
$cddata["overmsg"] = $cdsettings[$cdprofilefield "_overmsg"];

  
$vbuserfields[$cdprofilefield] = serialize$cddata );
  
$vbuserfields[$cdprofilefield "_set"] = "1";
  
$vbuserfields[$cdprofilefield "_opt"] = "";

  
$userdata->set_userfields$vbuserfields );



PBX1 06-06-2008 10:28 AM

Quote:

Originally Posted by UncoderMom (Post 1536142)
I think the problem is somewhere in here...

Someone wanna take a stab? The mod just says that it cant be redistributed with out giving credit. LOL doesnt say we can fix it if its broke.
PHP Code:

// ********************************************************************** \\

if ( ( $THIS_HOOK == "profile_updateoptions" ) AND ( $permissions["hc_usercountdown"] & $vbulletin->bf_ugp["hc_usercountdown"]["canusecountdown"] ) )
{
  
$vbulletin->input->clean_array_gpc('p', array( "countdownuserfield" => TYPE_STR,
                                                 
"cdsettings"         => TYPE_ARRAY ));

  
$cdsettings     $vbulletin->GPC["cdsettings"];
  
$cdprofilefield $vbulletin->GPC["countdownuserfield"];

  
$cddata["enabled"] = $cdsettings[$cdprofilefield "_enable"];
  
$cddata["day"]     = $cdsettings[$cdprofilefield "_day"];
  
$cddata["month"]   = $cdsettings[$cdprofilefield "_month"];
  
$cddata["year"]    = $cdsettings[$cdprofilefield "_year"];
  
$cddata["hour"]    = $cdsettings[$cdprofilefield "_hour"];
  
$cddata["minute"]  = $cdsettings[$cdprofilefield "_minute"];
  
$cddata["event"]   = $cdsettings[$cdprofilefield "_event"];
  
$cddata["overmsg"] = $cdsettings[$cdprofilefield "_overmsg"];

  
$vbuserfields[$cdprofilefield] = serialize$cddata );
  
$vbuserfields[$cdprofilefield "_set"] = "1";
  
$vbuserfields[$cdprofilefield "_opt"] = "";

  
$userdata->set_userfields$vbuserfields );



I don't think $vbuserfields is used anymore, however I'm not a coder so I could be wrong. I'd like to see this work in 3.7.x too, but it probably needs a complete rewrite.

tandy 12-11-2008 01:04 PM

It work fine for me with vb 3.8 rc1 without any modification.

DanTHEGREAT 12-20-2008 11:21 PM

It doesn't work with vb 3.8 rc2!! @_@

Jafo232 02-18-2009 08:54 PM

Here is one that does:

https://vborg.vbsupport.ru/showthread.php?t=205841

Cindyl10 03-07-2010 12:32 PM

I've uploaded and installed this and I'm using vBulletin 3.8.4 Patch Level 2; it looks like everything is done right, but it's not showing up under "edit options" in the user control panel. Does anyone know what I can do to make this work?


All times are GMT. The time now is 03:26 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.01449 seconds
  • Memory Usage 1,807KB
  • 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_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (29)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete