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

Showing results 1 to 25 of 35
Search took 0.00 seconds.
Search: Posts Made By: ZERO <ibis>
Forum: vBulletin 4.x Template Modifications 08-14-2014, 04:45 PM
Replies: 18
Add-On Releases - Gift Subscriptions
Views: 6,603
Posted By ZERO <ibis>
It does exist and is in the root directory for...

It does exist and is in the root directory for your vbb install. Also I am not sure if the one posted by the OP works or not but the one that I linked a few years back still works fine even on the...
Forum: vBulletin 4.x Add-ons 09-12-2011, 05:25 AM
Replies: 539
Views: 517,857
Posted By ZERO <ibis>
It would be more practical to store it as it will...

It would be more practical to store it as it will reduce load when requested if the value is already computed. For many users being able to show the actual id in the profile is useful. Admins use it...
Forum: vBulletin 4.x Add-ons 09-09-2011, 09:23 PM
Replies: 539
Views: 517,857
Posted By ZERO <ibis>
Is there any way this mod could automatically...

Is there any way this mod could automatically place a users steam id into a custom profile field. This would be a great help for those of us that already have many mods that use a players...
Forum: Community Lounge 09-09-2011, 04:44 AM
Replies: 87
Views: 20,870
Posted By ZERO <ibis>
We recently switched to cloudflare to mitigate a...

We recently switched to cloudflare to mitigate a ddos attack and it worked great. Other than an increase in the speed of the website users have not even noticed it was there. It has been less than a...
Forum: vB4 Design and Graphics Discussions 06-13-2011, 01:44 AM
Replies: 6
Views: 1,003
Posted By ZERO <ibis>
That only allows me to change some things. No...

That only allows me to change some things. No options to control highlighting color over buttons, the color of the sides of the editor nor the new java popup boxes. To make matters worse I can not...
Forum: vB4 Design and Graphics Discussions 06-12-2011, 03:30 AM
Replies: 6
Views: 1,003
Posted By ZERO <ibis>
CKEditor StyleVars

I updated to 4.1.4 not realizing that the editor was changed. Now I can not figure out any way to edit its style. The default colors clash with my forums style and thus the inability to fix this is a...
Forum: vB4 Programming Discussions 05-23-2011, 06:50 PM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
Oh they were declared with a global statement....

Oh they were declared with a global statement. They just did not work despite that but worked fine in other hooks...

Just a very strange glitch I never expected variables that were declared in a...
Forum: vB4 Programming Discussions 05-23-2011, 05:26 PM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
Interesting that must mean that the issue is the...

Interesting that must mean that the issue is the variable that I was storing 16 in as that is the only difference. I will hard code in all numbers even for constant variables. In theory this should...
Forum: vB4 Programming Discussions 05-22-2011, 06:08 PM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
I will make that change when I can but I can say...

I will make that change when I can but I can say it is not what is going wrong as that still outputs 6 as it should. I even bypassed it completely by just hardcoading $sbaid=6; in its place for a few...
Forum: vB4 Programming Discussions 05-22-2011, 05:27 PM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
Oh I had it generating txt files that outputted...

Oh I had it generating txt files that outputted the values being passed to ensure they were working. I even had ones for various parts of the functions so I know it runs fine until it gets into that...
Forum: vB4 Programming Discussions 05-22-2011, 12:40 AM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
Could this be the problem: ...

Could this be the problem:

foreach($sbusergroups as $sbgroup)
{
$sbgroupint = intval($sbgroup);

Once again the code will run fine it it is fed $userdata->fetch_field('membergroupids')
...
Forum: vB4 Programming Discussions 05-22-2011, 12:32 AM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
The above did nothing. No errors either. ...

The above did nothing. No errors either.

--------------- Added 1306027999 at 1306027999 ---------------

For reference the following query runs fine:

$sbquery = $db->query_read("
SELECT "...
Forum: vB4 Programming Discussions 05-22-2011, 12:27 AM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
Invalid SQL: SELECT...

Invalid SQL:

SELECT vbb_membergroupids
FROM vbb_user
WHERE vbb_user.userid = 1;

MySQL Error : Unknown column...
Forum: vB4 Programming Discussions 05-22-2011, 12:21 AM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
I tried: $sbmemgroups = $sbrow2['" ....

I tried:

$sbmemgroups = $sbrow2['" . TABLE_PREFIX . "user.membergroupids'];

and

$sbmemgroups = $sbrow2['user.membergroupids'];

both did nothing and did not produce any errors.
Forum: vB4 Programming Discussions 05-22-2011, 12:06 AM
Replies: 16
Views: 1,091
Posted By ZERO <ibis>
[SOLVED] SQL Help

I am running into a strange problem where the function below is not working:

*Note that $userid is feeding the correct value

$sbquery2 = $db->query_read("
SELECT " . TABLE_PREFIX ....
Forum: vB4 Programming Discussions 05-17-2011, 07:35 PM
Replies: 4
Views: 540
Posted By ZERO <ibis>
function function($userid, $findstuff = true,...

function function($userid, $findstuff = true, $sbaid = "", $sbmemgroups = "")
{
global $db, $vB_Groups, $sB_Groups, $sB_Names, $sB_Server, $sbaidfield;

if ($findstuff)
{
$sbquery =...
Forum: vB4 Programming Discussions 05-17-2011, 07:04 PM
Replies: 4
Views: 540
Posted By ZERO <ibis>
Tried (updated as I attempt multiple...

Tried (updated as I attempt multiple combinations):
(if one produces an error it will be indicated, otherwise does nothing)

function($vbulletin->userinfo['userid']);
...
Forum: vB4 Programming Discussions 05-17-2011, 03:27 AM
Replies: 0
Views: 380
Posted By ZERO <ibis>
Trigger a profile save

I want to trigger a users profile to "update" in that it does the same thing as pressing the save button on the users profile data which triggers the useradmin_update_save hook.

Does anyone know...
Forum: vB4 Programming Discussions 05-17-2011, 02:14 AM
Replies: 4
Views: 540
Posted By ZERO <ibis>
paidsub hook

I am trying to use the paidsub_build and paidsub_delete hooks to run a function however I can not seem to get it to work. I think that I am not getting the userid the correct way below is what I have...
Forum: vB4 General Discussions 04-01-2011, 07:51 PM
Replies: 6
Views: 401
Posted By ZERO <ibis>
Wait, how would I set the forums to use a...

Wait, how would I set the forums to use a different style?

Ok I realized that I can set each subforum and force but then I would think that it would mess up the pm section too then and other parts...
Forum: vB4 General Discussions 04-01-2011, 07:32 PM
Replies: 6
Views: 401
Posted By ZERO <ibis>
I am having the same problem. It appears that for...

I am having the same problem. It appears that for one the only way to even allow it to work is to enable users being able to change the style (which I do not want to do). Then you can change the...
Forum: vBulletin 4.x Add-ons 03-10-2011, 06:44 PM
Replies: 220
Views: 72,681
Posted By ZERO <ibis>
I am definitely going to keep tabs on this mod. I...

I am definitely going to keep tabs on this mod. I just wish the payout was smaller to help out us little sites.
Forum: vBulletin 4.x Template Modifications 02-24-2011, 12:05 AM
Replies: 43
Views: 12,651
Posted By ZERO <ibis>
This does the trick for the latest version :up:

This does the trick for the latest version :up:
Forum: vBulletin 4.x Template Modifications 02-23-2011, 10:58 PM
Replies: 60
Views: 20,489
Posted By ZERO <ibis>
Thanks!

Thanks!
Forum: Community Lounge 02-23-2011, 10:47 PM
Replies: 36
Views: 4,278
Posted By ZERO <ibis>
Opening up possibilities can really help a kid do...

Opening up possibilities can really help a kid do things you nor they would ever imagine. When I was 12 I wanted a gaming computer but rather than get that my dad told me I could have more money if I...
Showing results 1 to 25 of 35

 
Forum Jump

All times are GMT. The time now is 08:12 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.01626 seconds
  • Memory Usage 2,051KB
  • 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
  • (41)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