Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 28
Search took 0.00 seconds.
Search: Posts Made By: newhere
Forum: vBulletin 3.6 Add-ons 05-03-2007, 06:56 PM
Replies: 3,111
Views: 721,498
Posted By newhere
Ah, that's because there were not any completed...

Ah, that's because there were not any completed challegnes. I thought it might show pending ones... guess not.
Forum: vBulletin 3.6 Add-ons 05-03-2007, 06:34 PM
Replies: 3,111
Views: 721,498
Posted By newhere
Is ther some additional template mod I need to...

Is ther some additional template mod I need to make in order to get "Recent Challegnes' to appear beneath "News and Events" in the arcade main page?

I am not seeing the Recent Challenges below...
Forum: vBulletin 3.6 Add-ons 04-21-2007, 05:23 AM
Replies: 3,111
Views: 721,498
Posted By newhere
Two questions: Am I supposed to see...

Two questions:

Am I supposed to see everyone's recent challenges? I don't see challenges for anyone else. Are those supposed to be public?

Also I have a user complaining about a new high score...
Forum: vBulletin 3.6 Add-ons 04-13-2007, 01:51 AM
Replies: 258
Major Additions - vBonjour - Portal System
Views: 63,374
Posted By newhere
Oh I see, you are doing a regex replace to remove...

Oh I see, you are doing a regex replace to remove the tags from the preview.. why is that?

My solution is to only remove tags if the preview is larger than the allowed number of characters. Then...
Forum: vBulletin 3.6 Add-ons 04-13-2007, 01:25 AM
Replies: 258
Major Additions - vBonjour - Portal System
Views: 63,374
Posted By newhere
This is a pretty nice mod. Thanks. A decent...

This is a pretty nice mod. Thanks. A decent alternative to paying for vBadvanced just for a little homepage.

One question I have though, I notice in my news articles, someone posted a thread with...
Forum: vBulletin 3.6 Add-ons 04-12-2007, 08:25 PM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Either way (with your code or with mine), I get a...

Either way (with your code or with mine), I get a horizontal scroll bar when someone posts a shout which is too long.
Forum: vBulletin 3.6 Add-ons 04-11-2007, 11:02 PM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
This might be due to the additional td tags. ...

This might be due to the additional td tags.

You could try removing the td tags from the first step in the mod and instead place the

<date>...</date>

tags just before the username.
Forum: vBulletin 3.6 Add-ons 04-11-2007, 08:11 PM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Cool. Thanks rj! I have not seen any of these...

Cool. Thanks rj! I have not seen any of these problems. As I say, the conversion all happens with javascript, (everyone gets the same UTC value sent to their client) so I would guess any problems...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 02:12 PM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Can you try to debug this by removnig the "date"...

Can you try to debug this by removnig the "date" tags from:

<date>{$Shout['time']}</date>

so you have just:

{$Shout['time']}


And then see if users in different time zones receive the...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 07:06 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Good bug. This: for(var i = 0;...

Good bug.
This:

for(var i = 0; i < matches.length; i++) {


Should be replaced with:

for(var i = 0; matches != null && i < matches.length; i++) {
Forum: vBulletin 3.6 Add-ons 04-10-2007, 06:45 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
I've just tried this and /prune is still working...

I've just tried this and /prune is still working for me. So I cannot recreate this on my server. Do you know if you have the latest version of the vbShout plugin installed? Or if this was a known...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 06:28 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Hmm, okay I didn't know about this command, I...

Hmm, okay I didn't know about this command, I just installed the shoutbox today. I'll look into this tomorrow if I can.

Thanks for your help and feedback.
Forum: vBulletin 3.6 Add-ons 04-10-2007, 06:03 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
I haven't seen this myself. If it's truly an AJAX...

I haven't seen this myself. If it's truly an AJAX bug, it may be related to the original mod. All this hack does is a small string replacement on whatever html the AJAX requests return before...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 04:03 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Cool, whatever works for you. Thanks for posting...

Cool, whatever works for you. Thanks for posting your variation. I hope others do the same. :)
Forum: vBulletin 3.6 Add-ons 04-10-2007, 03:45 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Sure I think that'll work.

Sure I think that'll work.
Forum: vBulletin 3.6 Add-ons 04-10-2007, 03:37 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
This isn't fully tested. There might be a bug...

This isn't fully tested.
There might be a bug in this.

before

if(hour > 12) {


you might want to add something like:
Forum: vBulletin 3.6 Add-ons 04-10-2007, 03:20 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
to get rid of the date and just have the time: ...

to get rid of the date and just have the time:


ret = ret + "[" + date.getHours() + ":" +
((date.getMinutes() < 10) ? "0" : "") +
...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 03:16 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
for 12 hour time with brackets: replace ...

for 12 hour time with brackets:

replace

ret = ret + (date.getMonth()+1) + "/" +
date.getDate() + "/" +
...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 03:01 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
You can format the date however you want if you...

You can format the date however you want if you know a bit of javascript:
From my post above
https://vborg.vbsupport.ru/showpost.php?p=1223786&postcount=10
Forum: vBulletin 3.6 Add-ons 04-10-2007, 02:54 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
It's kind of an ugly hack around this static html...

It's kind of an ugly hack around this static html nonsense. But it works. It was not acceptable to me to have no timestamp on shouts, and it was also not acceptable to have timezone constantly...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 02:45 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Sorry, I have a lot of custom code on my install....

Sorry, I have a lot of custom code on my install.
In that initial template edit, try setting font size="2" instead of size="1", or change the td attributes to otherwise match what your tables look...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 02:40 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
For formatting, you can change the function: ...

For formatting, you can change the function:
"replaceDates(s)"

Here:

ret = ret + (date.getMonth()+1) + "/" +
date.getDate() + "/" +
...
Forum: vBulletin 3.6 Add-ons 04-10-2007, 02:37 AM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Did you modify all the templates correctly?

Did you modify all the templates correctly?
Forum: vBulletin 3.6 Add-ons 04-09-2007, 10:00 PM
Replies: 56
Chat Modifications - Fix vbShout Timezone problem
Views: 10,318
Posted By newhere
Fix vbShout Timezone problem

This vbShout plugin: http://www.vbhackers.com/f76/ajax-flatfile-vbshout-2-1-a-4536/

Has a serious bug with Time Zone changing to that of the last person to post in the shout box.

Here is a fix...
Forum: ibProArcade Archive 04-08-2007, 11:23 PM
Replies: 1
Views: 854
Posted By newhere
Cannot install games from pnflashgames.com

Hello,
According to this:
https://vborg.vbsupport.ru/showthread.php?t=101554&highlight=iB+pro+arcade+games

I should be able to downlaod games from pnflashgames.com in PostNuke format and import...
Showing results 1 to 25 of 28

 
Forum Jump

All times are GMT. The time now is 09:10 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.03136 seconds
  • Memory Usage 2,042KB
  • 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
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (72)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.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/functions_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete