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

Reply
 
Thread Tools
XenvB4 (Formerly ProjectvB4) Details »»
XenvB4 (Formerly ProjectvB4)
Version: 1.0.1, by ChrisTERiS ChrisTERiS is offline
Developer Last Online: Sep 2021 Show Printable Version Email this Page

Category: Major Additions - Version: 4.2.5 Rating:
Released: 07-09-2020 Last Update: 11-06-2020 Installs: 13
DB Changes Uses Plugins Auto-Templates
Additional Files Is in Beta Stage  
No support by the author.

Quote:
  1. Works with "Forum only" vBulletin version. Suite version still is not supported.
  2. RTL support is currently limited.
  3. I can't guarantee that it will works with any 3nd party addon. No errors but the templates will not be responsive.
XenvB4 (formerly ProjectvB4) is not just a responsive style, but a full framework adding new features to vBulletin 4.2.5
  • Responsive, mobile first design
  • Redesigned important pages
    • Forumlist
    • Threadlist
    • Showthread
    • User Profile
  • New Modern Features
    • Modal profile popup
    • Search Panle
    • User menu Panel
    • Navigation Panel
    • Advanced Footer
    • Forum Cover Photo
    • Forum Icon
    • Facebook style Profile Cover Photo
  • Included Add-on Modules
    • Donations
    • Mailinglist
    • Memberlist
    • Cookies
    • GDPR Compliance
    • Legal Agreements

Installation



XenvB4 installation is pretty easy if you follow the instructions below, step by step.
  1. If you've installed any version (Alpha or Beta) of ProjectvB4, uninstall it !!
  2. Unizip the file and upload all the files and folders from upload/ folder, to the directory where you've installed vBulletin. ATTENTION !!! If you've renamed your admincp/ directory, or if you've the admin files in a different directory, then you need to upload everything from admincp/ to your real admin directory.
  3. Go to your admincp and first import the new style from Styles & Templates-> Download/Upload Style-> Import Style
    1. Browse and select the style/xenvb4-style.xml from your computer
    2. Let "Create a New Style" as is
    3. Just in case, is better to set "Ignore Style Version" to YES
    4. Let other settings as is
    5. Click Import
  4. XenvB4 comes with a set of plugins and templates, so you need to import the product file. Select Plugins & Products-> Manage Products
  5. Click Add/Import Product and select product-xenvb4.xml from your computer. Is good to set "Allow Overwrite" to YES.

Configuration



If XenvB4 installation was successful is time to configure it. First of all you must complete the follow steps which are important for XenvB4 operation.
  1. XenvB4 add the default forum icon and forum cover to your existing forums, but you need to update the cache to see them working. If you don't do this, all your existing forums will not show any icon or cover. Goto Admincp-> Maintenance-> General Update Tools and Rebuild Forum Information.
  2. Now is time to set User Profile Avatar and Cover Photo. I never understood the reason why these dimensions are not Global but per Usergroup. So you must edit one by one all your Usergroups and modify Picture Uploading Permissions with the values:
    1. Can Upload Profile Pictures : YES
    2. Can Upload Animated Profile Picture : NO
    3. Profile Picture Maximum Width : 1200
    4. Profile Picture Maximum Height : 340
    5. Profile Picture Maximum File-Size : 1024000
    6. Can Upload Custom Avatars : YES
    7. Can Upload Animated Avatar : NO
    8. Custom Avatar Maximum Width : 150
    9. Custom Avatar Maximum Height : 150
    10. Custom Avatar Maximum File-Size : 200000
  3. Back to Maintenance-> General Update Tools and Rebuild Custom Avatar Thumbnails
  4. At xenvb4/images/ you can overwrite the default images. Even if it's ok to use images with different dimensions, I highly recommend to use the default dimensions:
    1. email_logo.png (119 X 46)
    2. footer_logo.png (250 X 60)
    3. noavatar.png (150 X 150)
    4. nocover.png (1200 X 340) for both forum cover and profile cover.

Core Modifications



Depending on your configuration, may there are some changes that you need to do in core files. Unfortunately vBulletin license does not allows distribution of core files, so you must modify them on your own.

1.- HTML Emails
If you want to replace Text emails with HTML emails, you must edit the file: includes/class_mail.php
Line 285
Replace:
Code:
$headers .= 'Content-Type: text/plain' . iif($encoding, "; charset="$encoding"") . $delimiter;
With:
Code:
 	
$headers .= 'Content-Type: text/html' . iif($encoding, "; charset="$encoding"") . $delimiter;
Line 294
Replace:
Code:
	
$this->message = $message;
With
Code:
 	
$this->message = str_replace("{message_bodytext}", nl2br($message), $vbulletin->options['xenvb4_mail_template']);
PS: If you already did these changes before when you installed ProjectvB4, the only change on this file is line 294

2.- Editor Emoticons
If you want to hide the emoticons from the right side of the editor to earn some space in mobile view (emoticon will still be available from the button menu), you must edit the file includes/functions_editor.php. Open it with a text editor (not Word and similar), and change line 551
From:
Code:
 	
$usesmiliebox = true;
To:
Code:
 	
$usesmiliebox = false;
3.- Poll icon in Forum/Thread lists
To replace the Poll icon with a FA icon, your need to edit the file includes/functions_forumlist.php line 592
From:
Code:
 	
return array('iconpath' => vB_Template_Runtime::fetchStyleVar('imgdir_misc') . "/poll_posticon.gif", 'title' => $vbphrase['poll']);
To:
Code:
 	
return array('iconpath' => '<i class="fa fa-bar-chart" aria-hidden="true" title="'.$vbphrase['poll'].'" style="float:left; margin-right:7px; color:green; font-size:18px;"></i>');

Download Now

File Type: zip XenvB4_ver_1_0_1.zip (2.18 MB, 60 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
5 благодарности(ей) от:
Hostboard, puertoblack2003, RaYdeN.ADM, yin9

Comments
  #122  
Old 01-08-2021, 04:35 PM
iA1 iA1 is offline
 
Join Date: Jul 2018
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by cdoyle View Post
On my site, the check boxes work when within a thread. And looks like I'm able to delete posts etc.

But I also just noticed, when viewing all posts within a forum, the check boxes work, but I don't seem to have any way to do anything with them. I don't have any inline options. Guess I never noticed that before.
I wanted to resolve this issue before releasing the updated version. So far I couldn't figure it out.
Reply With Quote
  #123  
Old 02-12-2021, 12:25 PM
cdoyle cdoyle is offline
 
Join Date: Oct 2004
Posts: 462
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Have you had any luck with this?
This is such a great mod, hope it's able to be kept alive.
Reply With Quote
  #124  
Old 02-12-2021, 08:11 PM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I seen the sights were taken down, assuming he is more focused on that CMS he made.

@christeris, if you have abandon this project I would love to pick it up.
Reply With Quote
Благодарность от:
iA1
  #125  
Old 02-13-2021, 07:00 PM
ChrisTERiS's Avatar
ChrisTERiS ChrisTERiS is offline
 
Join Date: Dec 2019
Location: Thessaloniki, Greece
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dr.CustUmz View Post
I seen the sights were taken down, assuming he is more focused on that CMS he made.

@christeris, if you have abandon this project I would love to pick it up.
Months ago I gave permissions to iA1 who wanted to continue supporting XenvB4 version. Don't know if he does it or not. For XenvB3, I was in the early steps so I abandoned it.


And no I didn't focused in my CMS, actually even if it's 100% ready I never released it. I've serious health issues plus the fact that I'm already 65yo, are things that limit my action time.
Reply With Quote
Благодарность от:
iA1
  #126  
Old 02-13-2021, 08:16 PM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ChrisTERiS View Post
Months ago I gave permissions to iA1 who wanted to continue supporting XenvB4 version. Don't know if he does it or not. For XenvB3, I was in the early steps so I abandoned it.


And no I didn't focused in my CMS, actually even if it's 100% ready I never released it. I've serious health issues plus the fact that I'm already 65yo, are things that limit my action time.
Im sorry to hear that chris, I have ALMOST all of your products, and love your work. You remind me of myself in a way lol, always starting something awesome but never quite finishing it because another awesome idea pops up lol.

I would hate for your products to plunder down into the unknown of the internet though if something were to happen to you, and would love to continue the development of your vb3 series products.

Wish I had any sort of name for myself before Lionel passed, maybe I could have gotten vbCart un ioncubed from him and have it still be something (the most expensive and best product I ever bought and cant even use now because I lost the files I had before I tried un ioncubing it)
Reply With Quote
Благодарность от:
Manoel J?nior
  #127  
Old 02-14-2021, 02:21 AM
iA1 iA1 is offline
 
Join Date: Jul 2018
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just have some updates in the style, most of which are already mentioned in the previous posts here. The inline mod could not be fixed, I tried a lot but I am not sure why it does not work.

I am attaching the updated style file here.

Dr.CustUmz, sure you can add also contribute. This is more like a collaborative effort. Everyone can suggest improvements and bug fixes, and can contribute in making it a perfect upgrade for vB4.

Chris, I hope you get well soon. Keep up your spirits! I am sure you are strong enough to overcome any illness.
Attached Files
File Type: xml xenvb4_v2-style.xml (303.6 KB, 16 views)
Reply With Quote
  #128  
Old 02-14-2021, 04:53 AM
Dr.CustUmz's Avatar
Dr.CustUmz Dr.CustUmz is offline
 
Join Date: Aug 2013
Location: USA
Posts: 647
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by iA1 View Post
I just have some updates in the style, most of which are already mentioned in the previous posts here. The inline mod could not be fixed, I tried a lot but I am not sure why it does not work.

I am attaching the updated style file here.

Dr.CustUmz, sure you can add also contribute. This is more like a collaborative effort. Everyone can suggest improvements and bug fixes, and can contribute in making it a perfect upgrade for vB4.

Chris, I hope you get well soon. Keep up your spirits! I am sure you are strong enough to overcome any illness.
I would be working on the vb3 version
Reply With Quote
  #129  
Old 02-16-2021, 07:56 AM
x iJailBreak x's Avatar
x iJailBreak x x iJailBreak x is offline
 
Join Date: Jan 2011
Location: United Kingdom
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dr.CustUmz View Post
Im sorry to hear that chris, I have ALMOST all of your products, and love your work. You remind me of myself in a way lol, always starting something awesome but never quite finishing it because another awesome idea pops up lol.

I would hate for your products to plunder down into the unknown of the internet though if something were to happen to you, and would love to continue the development of your vb3 series products.

Wish I had any sort of name for myself before Lionel passed, maybe I could have gotten vbCart un ioncubed from him and have it still be something (the most expensive and best product I ever bought and cant even use now because I lost the files I had before I tried un ioncubing it)
I *might* have the un-ioncubed vBCover sources somewhere, if it's of any use to you. I will have to check I haven't deleted it first!

EDIT: Still got them. If anyone needs them for whatever reason, shoot me a PM and I'll see what I can do to help.
Reply With Quote
Благодарность от:
Dr.CustUmz
  #130  
Old 04-20-2021, 11:28 AM
cdoyle cdoyle is offline
 
Join Date: Oct 2004
Posts: 462
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has anyone done any updates to this mod recently? Any other sites out there using it?
Reply With Quote
  #131  
Old 05-26-2021, 08:10 PM
cdoyle cdoyle is offline
 
Join Date: Oct 2004
Posts: 462
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Real bummer that this mod died so quickly, it was a great modern take on VB4x.
Was looking forward to the addons to go with it (classifieds and the newsletter options).

But it looks like it's been abandoned as it's been a good while since any updates have been done.

Thanks to those that helped me tweak it some to make it work a little better on my forum.

Are there any other live sites out there using it?
Here's mine
https://www.caraudiocentral.net/forums/
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 11: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.05640 seconds
  • Memory Usage 2,378KB
  • Queries Executed 29 (?)
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
  • (8)bbcode_code
  • (6)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
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (8)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (5)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)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_postinfo_query
  • fetch_postinfo
  • 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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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