Articles

Collapse
  •  
  • Time
  • Show
Clear All
new posts

  • vB5 How To: Add a signature divider

    vB5 How To: Add a signature divider

    AS OF 5.1.3 THIS IS NO LONGER REQUIRED, SIGS HAVE A DIVIDING LINE BY DEFAULT

    By default, vB5's signatures do not have a dividing line to separate them from the post they are under.

    On longer posts this can make it difficult for users to distinguish where the post ends and the signature starts.

    To add a dividing line that matches the general styling, add this to the template css_additional.css:
    Code:
    .post-signature {
        border-top: 1px dotted {vb:stylevar
    ...
    Go to post
    Last edited by Mark.B; Sat 18 Oct '14, 1:06am.

  • vB5 How To: Add forum names into Today's Posts / New Topics

    vB5 How To: Add forum names into Today's Posts / New Topics

    One major thing that has been missing in vB5, has been the name of the forum in the Today's Posts / New Posts results. You are told the name of the topic, who started it, when it was started, who made the most recent post, etc...but you are not told what forum it's in.

    For many, this is essential, as they only want to read threads in forums they are interested in.

    Well, here's how to add this back in.

    First, add this to the template css_additional.css
    ...
    Go to post

  • vB5 How To: Allow pinch and zoom on mobile devices

    vB5 How To: Allow pinch and zoom on mobile devices

    To make the vB5 default style "zoomable" on mobile devices:

    Find this in the header template:
    Code:
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1, maximum-scale=1" />
    Change the "maximum-scale" value to a higher number, such as 3:
    Code:
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1, maximum-scale=3" />
    Go to post

  • What is Site Builder

    What is Site Builder

    One of the major features in vBulletin 5 is a feature called Site Builder. It allows you to control the configuration of each individual page on your site. You can create custom layouts for forums, the front page, blogs, etc... There are a few limitations but it gives you a lot of freedom. You can have all forums use one layout or make individual layouts for each one. If an ad unit isn't working in one location just drag and drop it into a new location. Need to make a new Forum quickly? You can...
    Go to post

  • Internet Brands Acquires Forum Runner

    Internet Brands Acquires Forum Runner

    Mobile technology has revolutionized the way that many people experience the internet. In fact, it is predicted that mobile will become the primary mode of internet access for the majority of the world's
    Go to post
    Last edited by Wayne Luke; Fri 14 Mar '14, 12:53pm.

  • How to Alert and Redirect users to Mobile App

    How to Alert and Redirect users to Mobile App

    Here are instructions on how to display an alert on your users phone when they attempt to browse your site from their phones browser.

    open up the "header" template and at the very bottom add this code:

    Code:
    <body onload="iPhoneAlert( );">
    then open up "headinclude" template and at the very bottom add this code:

    Code:
    <script type="text/javascript">
    function iPhoneAlert( )
    {
    if ( navigator.userAgent.match(/iPhone/i)
    ...
    Go to post
    Last edited by Wayne Luke; Thu 11 Nov '21, 2:00pm.

  • Install App in Android Emulator

    Install App in Android Emulator

    Don't have an Android device and want to see your vBulletin Mobile Suite app before it gets published? Then use the Android Emulator!

    Below is a tutorial on how to run your apk file in the Android emulator. Note: Extra step for Windows 7/Vista users! All the way at bottom of the post!

    For Mac Users check the second comment made by Lynne below.

    Thank you so much to botskool for basically helping me compile this article!
    ----------------------------------------------------------------------- ...
    Go to post

  • Installing Your App on your iPhone

    Installing Your App on your iPhone

    So you got the new Mobile Suite, compiled your App and submitted to Apple but don't wanna wait for Apple to Approve it and get in the store which can take like 6 weeks... You wanna use your app NOW... well you can here is the instructions... * Login to your iOS Provisioning Portal > Devices > Add Device > enter your Phones UID to get your phones UID connect to iTunes in the Phone Summery page click on serial number and while change to UID. * go to Provisioning > Distribution tab > N...
    Go to post

  • Recovering App Crash Reports

    Recovering App Crash Reports

    In order to help diagnose bugs and error reports it would be very helpful if you submitted the bug and crash reports generated by the apps in your JIRA issue report. These crash reports will be located within your Apple App Store or Android Marketplace developer's sites. Below, we have outlined the steps to recover these. Once recovered, you will need to either copy and paste them into the JIRA issue report as a comment or attach the resulting file to the JIRA Issue Report.

    iOS Issue...
    Go to post

  • 11. Creating an Android Market Account

    11. Creating an Android Market Account

    This article tells you how to create your Android Markey Account. This is the first step in getting your vBulletin App submitted to Google for Approval. ...
    Go to post
There are no articles in this category.
 
  • Time
  • Show
Clear All
new posts
Please log in to your account to view your subscribed posts.

Latest Articles

Collapse

  • Understanding MySQL's Table Status Output
    by Wayne Luke

    AdminCP → Maintenance → Diagnostics → System Information MySQL's SHOW TABLE STATUS command helps gather information about tables in a database. When executed, it provides a detailed overview of various metrics related to each table in the database. This information can be valuable for database administrators and developers to optimize performance, troubleshoot issues, and better understand their databases' structure. Let's delve into the output of MySQL's SHOW TABLE STATUS command and underst...

    Thu 22 Feb '24, 10:13am
  • vbevent.php
    by Wayne Luke
    (vBulletin 6+) This script will handle running the vbulletin offline events (Such as sending notifications for a post). This avoids having users trigger AJAX calls when hitting the site. It also avoids the problem where the background tasks fail to run because there is not enough traffic to trigger all of the scripts in a timely fashion. To use do the following: Copy the script from the do_not_upload directory of your vBulletin files to your web server. Preferably outside of the web root directory. S...
    Mon 8 Jan '24, 10:28am
  • vbcron.php
    by Wayne Luke

    This script will handle running the vbulletin schedule tasks (see the Scheduled Tasks menu in the Admincp). This avoids having users trigger ajax calls when hitting the site. It also avoids the problem where the scheduled tasks fail to run because there is not enough site traffic to trigger all of the scripts in a timely fashion.

    To use do it the following

    1. You will find this script in your do_not_upload directory. Copy the script to your web server. Preferably outside of the w...
    Mon 8 Jan '24, 10:24am
  • Changing your site's favicon
    by Wayne Luke
    The favicon allows you to extend your brand identity to the browser tab. This can often be the only thing a user sees if they have many tabs open. The favicon is a special 16 X 16 icon that the browser automatically looks for in the root directory of your site. vBulletin also ships with one in its root directory. If vBulletin is installed in the root directory of your site, you can overwrite the provided icon to change it for your users. However, you will need to remember to do this with every version...
    Tue 21 Nov '23, 10:39am
  • Common Mime Types
    by Wayne Luke
    vBulletin allows the upload of file attachments. Servers and browsers generally recognize the type of file using two methods; file extensions and MIME types. This document is to allow you to match extensions with MIME types so they are properly handled by browsers. table {width: 80%; margin-left:auto; margin-right:auto} table td:first-child { text-align:center} tr:nth-child(even) {background: #CCC} tr:nth-child(odd) {background: #FFF} th{ color: white; background: black; }​​ Media Images ...
    Tue 21 Nov '23, 10:30am
  • About .htaccess
    by Wayne Luke
    .htaccess is a configuration file for the Apache Web Server. It allows you to customize how your server works. Depending on how your hosting provider has the server configured, you can redirect people to different locations, secure directories and files, tell browsers how long to cache files, update PHP variables, and more. vBulletin comes with a pretty extensive .htaccess file that does a these things for you. Location vBulletin comes with a file named htaccess.txt in the original download. When ...
    Mon 11 Sep '23, 11:57am

Article Tags

Collapse

administration (1) beginner (3) calendar (1) cloud (1) Custom (1) database (2) Google (1) how-to (2) howto (1) how to (1) https (1) Intermediate (4) MYSQL (2) performance (2) recovery tools (1) security (2) seo (1) server information (1) sftp (1) ssl (1) style (1) tls (1) tutorial (4) vb5howto (5) vbcloud (1)
Working...