XF 1.4 Version check

flowerpot132

Active member
So I just want to see what version of xenforo I am using and how that compares to the latest version. How do I do that please? Looked in licence area but nothing. Thanks
 
Look in the top left corner of the ACP.

upload_2015-6-7_12-17-27.webp

Other than the HYS forum and announcement thread, there isn't a list detailing changes between versions.
 
If you can't open install in browser because of missing files, look in library/XenForo/Application.php on one of first lines:
Code:
    /**
    * Current printable and encoded versions. These are used for visual output
    * and installation/upgrading.
    *
    * @var string
    * @var integer
    */
   public static $version = '1.5.12';
   public static $versionId = 1051270; // abbccde = a.b.c d (alpha: 1, beta: 3, RC: 5, stable: 7, PL: 9) e
 
Top Bottom