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

Showing results 1 to 25 of 350
Search took 0.01 seconds.
Search: Posts Made By: shovel
Forum: vB3 Programming Discussions 03-10-2008, 07:21 PM
Replies: 21
Views: 2,681
Posted By shovel
Absolutely. Rather than modifying your documents,...

Absolutely. Rather than modifying your documents, leave them be and create a hook via the AdminCP.

Goto...
AdminCP -> (left menu) Products & Plugins -> Plugin Manager

Click "Add New Plugin"...
Forum: vB3 Programming Discussions 03-09-2008, 01:26 PM
Replies: 5
Views: 879
Posted By shovel
As far as I understood he wanted to insert a...

As far as I understood he wanted to insert a variable. Either way, I can see your point Dismounted. I tend to over think at times, it happens haha.
Forum: vB3 Programming Discussions 03-08-2008, 03:09 PM
Replies: 5
Views: 879
Posted By shovel
$template_hook[postbit_start] is a variable for...

$template_hook[postbit_start] is a variable for the comment within the HTML when the postbit template is rendered. If you would like to print something dynamically within that template, follow the...
Forum: vB3 Programming Discussions 03-07-2008, 02:49 PM
Replies: 5
Views: 880
Posted By shovel
Alright, well let's look at it this way. You...

Alright, well let's look at it this way. You navigate to the www. While logged off, what do the links look like on the index page? Are they all www or just the domain.com?
Forum: vB3 Programming Discussions 03-07-2008, 01:59 PM
Replies: 5
Views: 880
Posted By shovel
Do you have an .htaccess performing a rewrite on...

Do you have an .htaccess performing a rewrite on the domain?
Forum: vB3 Programming Discussions 03-05-2008, 02:59 PM
Replies: 4
Views: 784
Posted By shovel
Actually with the implementation of the...

Actually with the implementation of the hook/plugin system you can process PHP code dynamically through the AdminCP. Goto..

AdminCP -> Plugins & Products -> Plugin Manager

If you add a plugin,...
Forum: vB3 Programming Discussions 03-05-2008, 02:01 PM
Replies: 4
Views: 784
Posted By shovel
Yeah you can run a regex against the posts, but...

Yeah you can run a regex against the posts, but to conserve process resources I'd probably run the regular expression on the creation of the post rather than on an entire set of data resulting in...
Forum: vB3 Programming Discussions 03-05-2008, 12:21 PM
Replies: 3
Views: 721
Posted By shovel
No I wouldn't think so.

No I wouldn't think so.
Forum: vB3 Programming Discussions 03-05-2008, 12:20 PM
Replies: 13
Views: 1,186
Posted By shovel
Using a GET request to pull the data is a bit...

Using a GET request to pull the data is a bit vulnerable. It'll open the site to attackers slowly but surely. POST is commonly used for situations like this. Why does it have to be GET, I'm just...
Forum: vB3 Programming Discussions 03-05-2008, 11:28 AM
Replies: 6
Views: 1,208
Posted By shovel
I'll keep my eye out for any ;) haha jk

I'll keep my eye out for any ;) haha jk
Forum: vB3 Programming Discussions 03-04-2008, 07:01 PM
Replies: 7
Views: 833
Posted By shovel
No problem. :)

No problem. :)
Forum: vB3 Programming Discussions 03-04-2008, 06:38 PM
Replies: 7
Views: 833
Posted By shovel
Remember to go ahead and bring in your back-end...

Remember to go ahead and bring in your back-end if you haven't..

require_once('./global.php');
require_once(DIR . '/includes/functions_newpost.php');
require_once(DIR ....
Forum: vB3 Programming Discussions 03-04-2008, 06:19 PM
Replies: 7
Views: 833
Posted By shovel
Make sure that your point that require_once()...

Make sure that your point that require_once() method to the appropriate directory, that was a bit taken right out of the vBulletin source.
Forum: vB3 Programming Discussions 03-04-2008, 06:11 PM
Replies: 3
Views: 694
Posted By shovel
Yes you can modify the style and templates that...

Yes you can modify the style and templates that reflect your forum design. You can find everything in your AdminCP under "Styles and Templates" on the top left menu.
Forum: vB3 Programming Discussions 03-04-2008, 06:08 PM
Replies: 3
Views: 721
Posted By shovel
Call a hook from "postbit_display_complete"...

Call a hook from "postbit_display_complete" location. Within that hook, use this call..

eval('$post[txtonlinestatus]= "' . fetch_template('postbit_txtonlinestatus') . '";');

This will allow you...
Forum: vB3 Programming Discussions 03-04-2008, 06:04 PM
Replies: 7
Views: 833
Posted By shovel
Try... require_once(DIR ....

Try...

require_once(DIR . '/includes/functions_wysiwyg.php');
$your_text = convert_wysiwyg_html_to_bbcode($your_text, false);
Forum: Modification Requests/Questions (Unpaid) 03-04-2008, 01:15 AM
Replies: 30
Views: 3,608
Posted By shovel
Who will be scanned and who chooses to be...

Who will be scanned and who chooses to be notified. Correct.
Forum: vB3 Programming Discussions 03-04-2008, 01:12 AM
Replies: 15
Views: 2,334
Posted By shovel
Oh come on Boofo, these are the best times lol...

Oh come on Boofo, these are the best times lol watching people learn to code.
Forum: vB3 Programming Discussions 03-03-2008, 10:40 PM
Replies: 6
Views: 1,208
Posted By shovel
I'd probably duplicate (roughly) the old users...

I'd probably duplicate (roughly) the old users table with a fresh vbulletin users table. It would take a little work, but it could happen.
Forum: vB3 Programming Discussions 03-03-2008, 10:39 PM
Replies: 15
Views: 2,334
Posted By shovel
global $vbulletin;

global $vbulletin;
Forum: Modification Requests/Questions (Unpaid) 03-03-2008, 03:48 PM
Replies: 30
Views: 3,608
Posted By shovel
Absolutely, yeah my thoughts are to add a...

Absolutely, yeah my thoughts are to add a transparent user group to the forum providing the permissions such as receiving PMs and posting guidelines (e.g. what forums can this functionality live...
Forum: Modification Requests/Questions (Unpaid) 03-03-2008, 03:01 PM
Replies: 30
Views: 3,608
Posted By shovel
I'm about 65% complete with this mod. I'm...

I'm about 65% complete with this mod. I'm finished with the lookup and insert methods for the hack at least. So far when you post a new thread or new reply (i think edits as well), the message is...
Forum: vB3 Programming Discussions 03-02-2008, 10:52 PM
Replies: 1
Views: 620
Posted By shovel
use... <!-- last10_threads_by_alshehi ...

use...


<!-- last10_threads_by_alshehi -->
<table cellpadding="2" cellspacing="3" style="border-collapse: collapse;border:1px solid #111;" id="AutoNumber1" width="100%">
<tr>
<td...
Forum: vB3 Programming Discussions 02-29-2008, 11:31 AM
Replies: 28
Views: 2,926
Posted By shovel
Great idea Marco. :) Thanks for the help, I...

Great idea Marco. :) Thanks for the help, I couldn't think of anything else to do except trial and error methods.
Forum: vB3 Programming Discussions 02-28-2008, 03:53 PM
Replies: 28
Views: 2,926
Posted By shovel
Here's another troubleshooting technique courtesy...

Here's another troubleshooting technique courtesy Elenna.
Showing results 1 to 25 of 350

 
Forum Jump

All times are GMT. The time now is 01:19 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.01922 seconds
  • Memory Usage 2,064KB
  • 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
  • (24)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