Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
The Ultimate Random Header Mod Details »»
The Ultimate Random Header Mod
Version: 1.0.0, by Jaxel Jaxel is offline
Developer Last Online: Sep 2013 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.8.x Rating:
Released: 04-27-2009 Last Update: 04-27-2009 Installs: 53
Template Edits
Additional Files  
No support by the author.

This mod has been rewritten for vB4x here: https://vborg.vbsupport.ru/showthread.php?t=240629

THIS SCRIPT DOES NOT USE JAVASCRIPT!

I wrote this mod for my own website last year (http://www.8wayrun.com/). I was looking for a way to create a random header situation, while also letting people select the random header through their UserCP and FORCE a header depending on what forum they are on. If you go to my website (http://www.8wayrun.com/), a random character will appear on your header, if you ctrl+refresh, a new character will show up... if you go to our character specific forums, the character in the random header will be FORCED to the character of that specific forum... I have done my best to make this script as simple as possible.

Product Demo:
http://www.8wayrun.com/
http://www.8wayrun.com/customstyles/...der/header.php
Installation Procedure:
  1. Create a dedicated folder on your server where you will be putting your random images.
  2. Put the included "header.php" script into the folder you created previously in step 1.
  3. Put the images you want randomized into the folder you created previously in step 1.
Optional Switches:
  1. OPTIONAL: If you want, you can set this script to FORCE a header on specific forum. Its simple, when naming the files for your random images, simply name the file as the forum ID of that forum. So if you want a specific image forced when viewing forum 38, name the file 38.png.
    .
  2. OPTIONAL: If you want, you can let users SELECT which header they want on places where the script would normally randomize.
    1. Create a new "Single-Selection Menu" profile field in your adminCP, set title and description to whatever you want. If you use numbered filenames like those in step 2, you may want to use the description field to let people know what they are selecting. (see screenshot)
    2. For each selection option, enter an image's filename WITHOUT the extension, so wolves.png will be just "wolves".
    3. Set Default: None
    4. Field Required: No
    5. Field Editable: Yes
    6. Private Field: No
    7. Field Searchable on Members List: No
    8. Show on Members List: No
    9. Display Page: Options: Other
    After you submit, this field will be given a name (ex: field9). Make sure to remember this name.
    .
  3. OPTIONAL: Open up the included "header.php" script and go to the section flagged "// VALIDATE CURRENT IMAGE DATA, CHECK FID, CHECK PID". By default, the image randomizer will find ANY image with the JPG, PNG or GIF extension. However, the FORCED and SELECT settings will always look for PNG images. If you would like to change this to either JPG or GIF, you must change the two isntances of PNG to the appropriate format. Only ONE filetype is usable with the FORCED or SELECT options.
    .
  4. The script has a heirarchy of importance when searching for images. The first thing it will look for is the FORCED image from step 1. If it doesn't find a forced image, it will use the user defined image in step 2. If the user doesn't have a defined image, it will pick an image at random from the folder it resides in.
Usage Procedure:
  1. Anywhere you want to use this random script, just link to this script, instead of an image.
    • <img src="DIRECTORY/header.php?fid=$forumid&pid=$bbuserinfo[field9]" />
    • <table background="DIRECTORY/header.php?fid=$forumid&pid=$bbuserinfo[field9]"></table>
    .
  2. The text in BLUE above is the switch for forcing an image based on the forumid. If you don't want to force images depending on the forum, you dont need to include that switch.
    .
  3. The text in RED above is the switch for forcing an image based on user control panel selection. If you don't want to give users the option to select an image manually, you dont need to include the switch. Notice that this switch has a variable called "field9"; this may not be the same in your forum. This variable should be changed to the field name I had you make note of in a previous step.
Don't forget to click INSTALL!

If you want to donate, I'm all for it... as I'm an unemployed computer programmer...

Download Now

File Type: php header.php (1.3 KB, 252 views)

Screenshots

File Type: jpg 1.jpg (247.0 KB, 0 views)
File Type: jpg 2.jpg (199.8 KB, 0 views)
File Type: jpg 3.jpg (213.7 KB, 0 views)

Show Your Support

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

Comments
  #2  
Old 04-28-2009, 12:43 PM
John Henry John Henry is offline
 
Join Date: Apr 2009
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how nice

but where is the header.php?

btw. it would be cool if it COULD use more extensions at once... like you said, now it just can either .jpg OR .png or.... but it would be awesome if it could do all at once.

since I am waiting for the header.php... could you just answer me the question... will it pick ALL the images from the folder (with the right extensions e.g. .jpg) or just if I name them like "1.jpg", "2.jpg" etc.?

edit: found this up there... thanks... even mentioning my example

Regards,
John Henry
Reply With Quote
  #3  
Old 04-28-2009, 12:59 PM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You can get it to take more than one file type for the RANDOMIZER by adding the following in the
// DEFINE VALID EXTENSIONS AND CONTENT TYPES area...

$extList['gif'] = 'image/gif';
$extList['jpg'] = 'image/jpg';

However, the FORCED and the USER SELECTION options will only display the SINGLE filetype defined in the
// VALIDATE CURRENT IMAGE DATA, CHECK FID, CHECK PID area.
Reply With Quote
  #4  
Old 04-28-2009, 01:02 PM
John Henry John Henry is offline
 
Join Date: Apr 2009
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Jaxel View Post
You can get it to take more than one file type for the RANDOMIZER by adding the following in the
// DEFINE VALID EXTENSIONS AND CONTENT TYPES area...

$extList['gif'] = 'image/gif';
$extList['jpg'] = 'image/jpg';

However, the FORCED and the USER SELECTION options will only display the SINGLE filetype defined in the
// VALIDATE CURRENT IMAGE DATA, CHECK FID, CHECK PID area.
thanks, that's a good compromise!

vote for motm

the only thing I am worrying is, what happens if you use some Seo Component (like me)... will this "user selects header..." thing be possible, as the ID is "different"... i mean, in database it isn't different (is it?) but you don't see the id in the sections...
Reply With Quote
  #5  
Old 04-28-2009, 01:06 PM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

add an HTACCESS file to the directory turning the rewrite engine off... thats what I did on my forum and it works fine. Besides, the data is being pulled from the $forumid and $bbuserinfo... SEO and modRewrite has no access to that information; if they changed those, your forum wouldn't work.
Reply With Quote
  #6  
Old 04-28-2009, 01:16 PM
DobieGillis? DobieGillis? is offline
 
Join Date: Feb 2009
Posts: 538
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

that is so cool. Just checked your site. Noice!
Reply With Quote
  #7  
Old 04-28-2009, 01:34 PM
Sweeks Sweeks is offline
 
Join Date: Jul 2008
Posts: 633
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice work, will look into this soon
________
Medical marijuana strains
Reply With Quote
  #8  
Old 04-28-2009, 02:52 PM
The Realist's Avatar
The Realist The Realist is offline
 
Join Date: Oct 2001
Location: UK
Posts: 842
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works a treat thanks

See www.sattalk.co.uk for a working independent demo.

Regards
Reply With Quote
  #9  
Old 04-28-2009, 10:09 PM
ArnyVee's Avatar
ArnyVee ArnyVee is offline
 
Join Date: Mar 2008
Posts: 944
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Jaxel, I was hoping that you'd share how that works!

I'm definitely going to work with this one in the near future. Thanks for sharing! :up:
Reply With Quote
  #10  
Old 04-29-2009, 01:25 AM
as7apcool as7apcool is offline
 
Join Date: Feb 2009
Posts: 194
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks 4 this good work
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 02:03 PM.


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.05428 seconds
  • Memory Usage 2,331KB
  • Queries Executed 24 (?)
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
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)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
  • (4)postbit_attachment
  • (10)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
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete