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

Showing results 1 to 25 of 327
Search took 0.01 seconds.
Search: Posts Made By: glennybee
Forum: vBulletin 4.x Add-ons 05-18-2022, 04:08 PM
Replies: 3,814
Show Thread Enhancements - [AJAX] Post Thank You Hack
Views: 914,822
Posted By glennybee
Just tried this on PHP 7.4 and it appears to be...

Just tried this on PHP 7.4 and it appears to be working good. Thanks for the update.
Forum: vBulletin 4.x Add-ons 01-31-2015, 04:38 PM
Replies: 2,355
Major Additions - DownloadsII
Views: 421,601
Posted By glennybee
Does anyone know if the standard vbulletin XML...

Does anyone know if the standard vbulletin XML sitemap generator includes this Downloads II mod?

Or do I need to install an addon or modify some code?
Forum: vB4 Programming Discussions 03-31-2013, 08:11 PM
Replies: 4
Views: 785
Posted By glennybee
So I need to connect to two databases at once...

So I need to connect to two databases at once then?

Both databases have the same username and password if that makes it easier.

So am I overcomplicating this?

Would this also work?

...
Forum: vB4 Programming Discussions 03-30-2013, 08:39 PM
Replies: 4
Views: 785
Posted By glennybee
I've managed to put this together but it's not...

I've managed to put this together but it's not working...


<?php
$dba = mysql_connect('localhost', 'username_vbtest', 'password') or die(mysql_error());
$sql = "
INSERT INTO...
Forum: vB4 Programming Discussions 03-25-2013, 08:27 PM
Replies: 4
Views: 785
Posted By glennybee
Help with MySQL query

Hi folks,

I was wondering if anyone could help me with a query please?

I have two mysql databases. The information is contained within the user table. db1 has information in 3 columns which I...
Forum: vBulletin 4.x Add-ons 03-21-2013, 07:21 PM
Replies: 3,814
Show Thread Enhancements - [AJAX] Post Thank You Hack
Views: 914,822
Posted By glennybee
Hi folks, I can appreciate there's lots of...

Hi folks,

I can appreciate there's lots of edits and versions floating around in this thread but I'll give it a go.

I'm using the version from this...
Forum: vB4 Programming Discussions 03-20-2013, 04:11 PM
Replies: 0
Views: 418
Posted By glennybee
Breadcrumb info in header template

Hello,

This is a little hard to explain...so here goes...

I want to put links to individual forums in the header template. I don't want to put the full url, just the variable plus the forum id....
Forum: vB3 General Discussions 02-17-2013, 07:17 PM
Replies: 5
Views: 1,163
Posted By glennybee
I've seen this before. To get round it I went...

I've seen this before. To get round it I went into the header template of the default style, saved it without making any edits, and the colours went back to normal.

I've seen this happen if you...
Forum: vB3 General Discussions 02-15-2013, 05:57 PM
Replies: 2
Views: 1,386
Posted By glennybee
Thanks very much Lynne, I was using the parent...

Thanks very much Lynne, I was using the parent forum id thinking that would cover all child forums but obviously doesn't and now I think about it, its obvious that it won't lol.

Sometimes it's the...
Forum: vB3 General Discussions 02-15-2013, 05:37 PM
Replies: 8
Views: 1,313
Posted By glennybee
Try this... <if...

Try this...


<if condition="can_moderate($foruminfo['forumid'] !== X)">
stuff here
</if>
Forum: vB3 General Discussions 02-15-2013, 05:23 PM
Replies: 2
Views: 1,386
Posted By glennybee
Query to show top posters in specific forums

Hi folks,

I'm trying to find out who are the top posters in the individual sections on my forum. I've been given this query but it returns 0 results. I'm not using a table prefix for the database....
Forum: Modification Requests/Questions (Unpaid) 02-06-2013, 04:45 PM
Replies: 19
Views: 1,792
Posted By glennybee
Yay!! sorted, all working good! Again......

Yay!! sorted, all working good!

Again... thanks a million
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 06:13 PM
Replies: 19
Views: 1,792
Posted By glennybee
Yeah its working so im mega happy. I just...

Yeah its working so im mega happy.

I just need to add the option to edit thread, this might be a bit more complicated if editing a post that isnt the first post of the thread.

Do you think i...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 05:55 PM
Replies: 19
Views: 1,792
Posted By glennybee
cheers mate, ive added it to the post table, as...

cheers mate, ive added it to the post table, as this seemed to be where the other columns were that were named in the error, should it be the thread table?

Its working now, but its not working...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 05:50 PM
Replies: 19
Views: 1,792
Posted By glennybee
So from looking at this i need to add the column...

So from looking at this i need to add the column "authorship" to the "post" database in mysql...

Off to figure out how to do that haha
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 05:40 PM
Replies: 19
Views: 1,792
Posted By glennybee
I think we're getting closer... database error...

I think we're getting closer... database error now

Database error in vBulletin 3.8.7:

Invalid SQL:
INSERT INTO post
(authorship, showsignature, allowsmilie, username, userid, title,...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 05:30 PM
Replies: 19
Views: 1,792
Posted By glennybee
ok now im getting this error when i hit submit...

ok now im getting this error when i hit submit new thread.

Fatal error: Call to a member function set() on a non-object in...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 05:04 PM
Replies: 19
Views: 1,792
Posted By glennybee
when i add... $newpost['authorship'] =...

when i add... $newpost['authorship'] = $vbulletin->GPC['authorship']

to newthread.php, i get this error when tryingto submit a new thread

Parse error: syntax error, unexpected T_VARIABLE...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 04:27 PM
Replies: 19
Views: 1,792
Posted By glennybee
I think i've made the right changes to the...

I think i've made the right changes to the class_dm_threadpost.php file so that it should be able to handle a 'authorship' variable, but didnt know wha tot do from there.

I dont know if im over...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 03:41 PM
Replies: 19
Views: 1,792
Posted By glennybee
I really appreciate your help, ive tried to...

I really appreciate your help, ive tried to follow your guide but im totally lost. i think its just way over my head, ive never done any php stuff before so i think i'll need to hand it over to an...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 12:53 PM
Replies: 19
Views: 1,792
Posted By glennybee
ok so this is my first time working with any of...

ok so this is my first time working with any of this so here is what ive done so far, ive managed to add the checkbox to the additional options by adding this code to the newthread template...

...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 11:46 AM
Replies: 19
Views: 1,792
Posted By glennybee
Adding a Miscellaneous Option on new thread post

Hi,

I am looking to add an option to the Miscellaneous Options part of a new thread post.

I have set up my forum so that members can claim authorship via their google plus profile of any...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 11:17 AM
Replies: 1
Views: 552
Posted By glennybee
I think because vbulletin is automatically adding...

I think because vbulletin is automatically adding rel="nofollow" to the outgoing link, it is ignoring the rel="author" tag that i am adding?

--------------- Added 1360066925 at 1360066925...
Forum: Modification Requests/Questions (Unpaid) 02-05-2013, 09:51 AM
Replies: 1
Views: 552
Posted By glennybee
adding rel="author" to profile page links

Hi guys,

I am trying to link to my google plus profile in the profile pages of my users, see....

http://www.moneymakingexperts.org/members/3-mme-s-alan/

I have managed to create live links...
Forum: vB3 Programming Discussions 09-03-2012, 06:30 PM
Replies: 1
Views: 613
Posted By glennybee
templatecache more than one template

Hi folks,

I have a plugin which uses $vbulletin->templatecache['navbar']. Some of my styles have the navbar options in the header template so the plugin doesn't work with these templates. Is there...
Showing results 1 to 25 of 327

 
Forum Jump

All times are GMT. The time now is 11:40 PM.


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.03071 seconds
  • Memory Usage 2,074KB
  • 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)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (31)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