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

Showing results 1 to 25 of 248
Search took 0.01 seconds.
Search: Posts Made By: sparklywater
Forum: vB3 Programming Discussions 02-26-2010, 07:32 AM
Replies: 1
Views: 781
Posted By sparklywater
Fixing a Firefox / wmode problem

I'm trying to apply the following code to fix a known problem with using wmode and Firefox. There is a fix that is described here:...
Forum: vB3 Programming Discussions 02-23-2010, 06:04 PM
Replies: 2
Views: 1,088
Posted By sparklywater
I found this script which works with text content...

I found this script which works with text content within a div:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script language="JavaScript">...
Forum: vBulletin 3.6 Add-ons 02-22-2010, 07:27 PM
Replies: 2,829
Major Additions - vB Ad Management 4
Views: 1,215,556
Posted By sparklywater
Like many others in this thread, I get this error...

Like many others in this thread, I get this error message at the top of each page when using the 'automatic refresh' feature:

Warning: mt_rand() expects parameter 2 to be long, string given in...
Forum: vB3 Programming Discussions 02-22-2010, 07:24 PM
Replies: 2
Views: 1,088
Posted By sparklywater
Refresh code in a div container every ten seconds

I want some code to automatically refresh on a page every ten seconds. The code is javascript and will be placed inside a div container. What's the simplest way to do this?
Forum: vBulletin 3.8 Add-ons 01-14-2010, 04:07 AM
Replies: 1,671
Views: 373,919
Posted By sparklywater
Is it possible to make a textbox field which only...

Is it possible to make a textbox field which only becomes compulsory to answer if the user has selected 'Other' as the option from a compulsory list of radio buttons? I want to allow the users to...
Forum: vB3 Programming Discussions 01-11-2010, 07:27 PM
Replies: 0
Views: 733
Posted By sparklywater
Security token for Google Adsense spider

Can someone please show me how to make a security token for the Google Adsense crawler 'Mediapartners-Google'? This token would be applied to login.php and would allow the Adsense spider to login to...
Forum: vB3 Programming Discussions 11-30-2009, 10:12 PM
Replies: 0
Views: 598
Posted By sparklywater
Displaying poll results only to those who have voted

poll results are currently displayed to everyone even before someone votes in a poll.

i want to change this so that the results only become visible after someone has voted on the poll. how can i...
Forum: vB3 Programming Discussions 11-21-2009, 08:08 PM
Replies: 6
Views: 1,074
Posted By sparklywater
Sorry I didn't notice the new vb4 section,...

Sorry I didn't notice the new vb4 section, thought it was the old one.

I did post in the mod thread, but sometimes it's better to ask here because there is broader range of knowledge from members...
Forum: vB3 Programming Discussions 11-21-2009, 07:41 PM
Replies: 6
Views: 1,074
Posted By sparklywater
I'm not using vB4, i'm using 3.7. The mod...

I'm not using vB4, i'm using 3.7. The mod otherwise works well, with ability to attach files to PMs. It's just this small permissions clash with the code above, which i can't figure out.
Forum: vB3 Programming Discussions 11-21-2009, 07:10 PM
Replies: 6
Views: 1,074
Posted By sparklywater
I tried removing the | but it made no difference....

I tried removing the | but it made no difference.
I didn't write the code myself.
Forum: vBulletin 3.6 Add-ons 11-21-2009, 05:17 PM
Replies: 297
Private Messages Enhancements - Private Messages Attachments
Views: 88,433
Posted By sparklywater
The following is the plugin code used for this...

The following is the plugin code used for this mod at hook location 'global_start':

if (THIS_SCRIPT == 'newattachment' AND $_REQUEST['type'] == 'pm')

{
$threadid = -1;
...
Forum: vB3 Programming Discussions 11-21-2009, 05:16 PM
Replies: 6
Views: 1,074
Posted By sparklywater
Conflict with attachment permissions

I'm using the following plugin code at hook location 'global_start' to make attachments work in PMs:

if (THIS_SCRIPT == 'newattachment' AND $_REQUEST['type'] == 'pm')

{
$threadid = -1;
...
Forum: vB3 Programming Discussions 10-25-2009, 01:20 PM
Replies: 3
Views: 642
Posted By sparklywater
Thank you :)

Thank you :)
Forum: vB3 Programming Discussions 10-25-2009, 01:02 PM
Replies: 3
Views: 642
Posted By sparklywater
Template conditional to exclude register page

Can someone please show me how to use a template conditional to exclude a specific page on the forum, such as the register page?

I looked in register.php and found this:

define('THIS_SCRIPT',...
Forum: vB3 Programming Discussions 10-04-2009, 11:38 AM
Replies: 1
Views: 708
Posted By sparklywater
Attachment URL doesn't end with file extension

If an mp3 file is uploaded as an attachment, it's variable URL is like this:

attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]&amp;d=$attachment[dateline]


However I'm ...
Forum: Modification Requests/Questions (Unpaid) 09-26-2009, 08:28 PM
Replies: 22
Views: 3,111
Posted By sparklywater
Hi, I'm using vB 3.7.2 and have not upgraded...

Hi,

I'm using vB 3.7.2 and have not upgraded to 3.8.4
Forum: vB3 Design and Graphics Discussions 09-25-2009, 03:03 PM
Replies: 4
Views: 847
Posted By sparklywater
Is there a way to count posts as a multiple of a...

Is there a way to count posts as a multiple of a number? Such as multiples of 10, ie. 10, 20, 30, 40... So the conditional would only apply if the post count is a multiple of 10...?
Forum: vB3 Design and Graphics Discussions 09-25-2009, 07:43 AM
Replies: 4
Views: 847
Posted By sparklywater
I would like to know this too.

I would like to know this too.
Forum: vB3 Programming Discussions 09-25-2009, 07:30 AM
Replies: 0
Views: 409
Posted By sparklywater
Conditional for adding code to full page of a thread

I want to add some code to a thread which only applies when the thread page being viewed has the maximum number of posts allowed in a single page of a thread. So for example, if the maxiumum number...
Forum: vB3 Programming Discussions 09-11-2009, 04:08 PM
Replies: 4
Views: 638
Posted By sparklywater
I changed disable_smilies settings to false in...

I changed disable_smilies settings to false in the file class_bbcode.php.

This is how i changed the original code to set $append_custom_tags to true but it didn't work:

#### parse message...
Forum: vB3 Programming Discussions 09-11-2009, 04:47 AM
Replies: 4
Views: 638
Posted By sparklywater
I've tried setting $append_custom_tags to true...

I've tried setting $append_custom_tags to true and disable_smilies to false, but the smilies still don't appear. Other types of bbcode formatting is working, such as bold text / font size, it's just...
Forum: vB3 Programming Discussions 09-09-2009, 02:44 PM
Replies: 4
Views: 638
Posted By sparklywater
Parsing smilies in a message

I'm trying to use the following code to parse smilies in a message / text, but the smilies don't appear. What am I doing wrong?

require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser...
Forum: vBulletin 3.5 Add-ons 09-09-2009, 02:39 PM
Replies: 306
Views: 126,908
Posted By sparklywater
How can I get smilies to appear in the display?...

How can I get smilies to appear in the display? the following code doesn't work:

require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin,...
Forum: vB3 Programming Discussions 09-08-2009, 03:44 PM
Replies: 4
Views: 468
Posted By sparklywater
okay thank you.

okay thank you.
Forum: vB3 Programming Discussions 09-08-2009, 11:57 AM
Replies: 4
Views: 468
Posted By sparklywater
I know, that's what I'm asking about...

I know, that's what I'm asking about...
Showing results 1 to 25 of 248

 
Forum Jump

All times are GMT. The time now is 12:25 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.02650 seconds
  • Memory Usage 2,070KB
  • 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
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (15)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