Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Version Check 1.7

Working for 2.2?

Comments

  • Options
    RiverRiver MVP
    edited July 2016

    It may not work correctly!

    Depending on your php setup - there is a problem here in at least 2 views.

    several short tags within both versioncheck.php and vc-phpinfo.php

    has several short tags. <? avoid them. use <?php instead.

    <?
    they should be changed to 
    
    <?php
    

    otherwise you may not get complete info.

    Ideally these should be changed so it will work in all configurations.

    after you make these changes you will probably see Phpinfo correctly and the versions as well.

    see http://php.net/manual/en/language.basic-syntax.phptags.php

    PHP also allows for short open tag <? (which is discouraged since it is only available if enabled using the short_open_tag php.ini configuration file directive, or if PHP was configured with the --enable-short-tags option).

    Pragmatism is all I have to offer. Avoiding the sidelines and providing centerline pro-tips.

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP

    Thanks for that I think I got them all… <3

Sign In or Register to comment.