Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: , by (Guest)
Developer Last Online: Jan 1970 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 07-21-2001 Last Update: Never Installs: 0
 
No support by the author.

On this forum I saw much more scripts, which show on non vb pages information about vb. But all of these marketed as additive to vb, use their own configuration files and consequently need for additional adjustment. Want to offer script, which all data takes from vb, including style, template, can move necessary template and function from vb and show other (non vb) of the page through vb interface

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 07-22-2001, 10:49 PM
Devels
Guest
 
Posts: n/a
Default

Installation:
1. Download attached file(statistics.zip).
2. Unzip file (finish as open.php file)
3. Put this file on your vbulletin directory
4. Sit back and relax, while Win... (Oh, it is not good ), ok, next..

Included functions or "As I can use it?"
1. If you want to see any template on your page write in non vb page (must is *.php page)
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? tpl=needed_template"; ?>
  • full.server.address = server address, where you install this script.
  • vbdirectory = directory, where you install vb on this server
  • needed_template = name template what you want see.
2. If you want to see header with included style and meta (all header) vb you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=header"; ?>
optional you can write title on this page as
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=header&vbtitle=your_title"; ?>
  • your_title = words, what you want view on title
3. If you want to see footer on non vb pages you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=footer"; ?>
4. If you want to see logincode, you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=login"; ?>
Note: This output not included in < table > tag (have view as < tr >..... < / tr >) you must include it itself
Example : < table >code include here < / table >
5. If you want to see forum jump select box you write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=forumjump"; ?>
Note: you must create in directory, where you want include this function new directory "images" (or other name, as name vb forum images directory) and copy from vb images directory file "go.gif" in this new created directory.
6. If you want to see code buttons, smilies or icons for use this code on other pages (example guestbook and other), you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=code"; ?>
<? include "http://full.server.address/vbdirectory/open.php? ac=smilies"; ?>
<? include "http://full.server.address/vbdirectory/open.php? ac=icons"; ?>
7. If you want to see sample style for include it on non vb pages, you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=style"; ?>
8. If you want to see last posted messages on your non vb page, write plz
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=lastpost"; ?>
Note: Default numper last messages is 5, for change it number write:
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=lastpost&limit=your_number"; ?>
  • your_number = number messages to view on this include
Note: Default width table is 100%, plz insert this include in other table which assign necessary parameters.
All view as table: [poster name(as link to this post)][post data]
9. If you want to see last active threads on your non vb page, write plz
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=lastthread"; ?>
Note: Default numper last messages is 5, for change it number write:
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=lastthread&limit=your_number"; ?>
  • your_number = number threads to view on this include
Note: Default width table is 100%, plz insert this include in other table which assign necessary parameters
All view as table: [title thread(as link to this thread)][post data, name poster, image to last post]
Note: you must create in directory, where you want include this function new directory "images" (or other name, as name vb forum images directory) and copy from vb images directory file "lastpost.gif" in this new created directory.
10. If you want to see the most active writers on your non vb page, write plz
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=maxactive"; ?>
Note: Default numper last messages is 5, for change it number write:
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=maxactive&limit=your_number"; ?>
  • your_number = number writers to view on this include
Note: Default width table is 100%, plz insert this include in other table which assign necessary parameters.
All view as table: [poster name(as link to him info)][number sended post, him activity]
11. If you want to see other, non vb page in full vb style(header, footer, style), write plz
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? in=your_page"; ?>
  • your_page = name your page
Note: You can include sub directories as:
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? in=your_dir/your_page"; ?>
  • your_page = name your page
  • your_dir = name your directory
Note: not include as your_dir/your_file.php, script make ".php" itself!!!
Note: not probe include pages from other sites!! your_dir is directory on YOUR server!!!
Quote:
Want good luck.
P.S Forgive for my english, my native language is php
Reply With Quote
  #3  
Old 07-23-2001, 01:31 AM
Kengan's Avatar
Kengan Kengan is offline
 
Join Date: Nov 2001
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Devels
Installation:
1. Download attached file(statistics.zip).
2. Unzip file (finish as open.php file)
3. Put this file on your vbulletin directory
4. Sit back and relax, while Win... (Oh, it is not good ), ok, next..

Included functions or "As I can use it?"
1. If you want to see any template on your page write in non vb page (must is *.php page)
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? tpl=needed_template"; ?>
  • full.server.address = server address, where you install this script.
  • vbdirectory = directory, where you install vb on this server
  • needed_template = name template what you want see.
2. If you want to see header with included style and meta (all header) vb you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=header"; ?>
optional you can write title on this page as
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=header&vbtitle=your_title"; ?>
  • your_title = words, what you want view on title
3. If you want to see footer on non vb pages you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=footer"; ?>
4. If you want to see logincode, you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=login"; ?>
Note: This output not included in < table > tag (have view as < tr >..... < / tr >) you must include it itself
Example : < table >code include here < / table >
5. If you want to see forum jump select box you write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=forumjump"; ?>
Note: you must create in directory, where you want include this function new directory "images" (or other name, as name vb forum images directory) and copy from vb images directory file "go.gif" in this new created directory.
6. If you want to see code buttons, smilies or icons for use this code on other pages (example guestbook and other), you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=code"; ?>
<? include "http://full.server.address/vbdirectory/open.php? ac=smilies"; ?>
<? include "http://full.server.address/vbdirectory/open.php? ac=icons"; ?>
7. If you want to see sample style for include it on non vb pages, you must write
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=style"; ?>
8. If you want to see last posted messages on your non vb page, write plz
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=lastpost"; ?>
Note: Default numper last messages is 5, for change it number write:
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=lastpost&limit=your_number"; ?>
  • your_number = number messages to view on this include
Note: Default width table is 100%, plz insert this include in other table which assign necessary parameters.
All view as table: [poster name(as link to this post)][post data]
9. If you want to see last active threads on your non vb page, write plz
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=lastthread"; ?>
Note: Default numper last messages is 5, for change it number write:
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=lastthread&limit=your_number"; ?>
  • your_number = number threads to view on this include
Note: Default width table is 100%, plz insert this include in other table which assign necessary parameters
All view as table: [title thread(as link to this thread)][post data, name poster, image to last post]
Note: you must create in directory, where you want include this function new directory "images" (or other name, as name vb forum images directory) and copy from vb images directory file "lastpost.gif" in this new created directory.
10. If you want to see the most active writers on your non vb page, write plz
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=maxactive"; ?>
Note: Default numper last messages is 5, for change it number write:
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? ac=maxactive&limit=your_number"; ?>
  • your_number = number writers to view on this include
Note: Default width table is 100%, plz insert this include in other table which assign necessary parameters.
All view as table: [poster name(as link to him info)][number sended post, him activity]
11. If you want to see other, non vb page in full vb style(header, footer, style), write plz
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? in=your_page"; ?>
  • your_page = name your page
Note: You can include sub directories as:
PHP Code:
<? include "http://full.server.address/vbdirectory/open.php? in=your_dir/your_page"; ?>
  • your_page = name your page
  • your_dir = name your directory
Note: not include as your_dir/your_file.php, script make ".php" itself!!!
Note: not probe include pages from other sites!! your_dir is directory on YOUR server!!!

Want good luck.
P.S Forgive for my english, my native language is php
Looks cool ! let me try ! thanks !!
Reply With Quote
  #4  
Old 07-23-2001, 06:18 AM
orca's Avatar
orca orca is offline
 
Join Date: Oct 2001
Location: Switzerland
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Kengan, don't quote big messages. It's not very readable.
Reply With Quote
  #5  
Old 07-23-2001, 08:10 AM
dost dost is offline
 
Join Date: Oct 2001
Posts: 51
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice hack I'll try it.[QUOTE]P.S Forgive for my english, my native language is php
Reply With Quote
  #6  
Old 07-27-2001, 04:57 AM
Devels
Guest
 
Posts: n/a
Default

See this script in action on arabic page .
Reply With Quote
  #7  
Old 07-27-2001, 09:53 AM
RobAC RobAC is offline
 
Join Date: Oct 2001
Posts: 314
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Devels
See this script in action on arabic page .
Unfortunately, because the page is in Arabic, there's no way for non-Arabic users to really see this hack in action.
Reply With Quote
  #8  
Old 07-27-2001, 10:54 AM
the_sisko's Avatar
the_sisko the_sisko is offline
 
Join Date: Oct 2001
Location: Hamburg,Germany
Posts: 132
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sounds great and usefull. It's a great idea and esay to use. Will try it at home later.

Thx
Reply With Quote
  #9  
Old 08-01-2001, 09:34 AM
ArabicFox
Guest
 
Posts: n/a
Default

great
Reply With Quote
  #10  
Old 08-01-2001, 08:30 PM
Pilot Pilot is offline
 
Join Date: Oct 2001
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Looks good, can you put the documentation in the zip and include an example php page and also how to make it work in a HTML page with SSI please?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:13 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04710 seconds
  • Memory Usage 2,331KB
  • Queries Executed 23 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (32)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (6)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_imicons
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete