Current version of PHP?

Discussion in 'HTML / PHP / JavaScript / CSS' started by arneboye, Jan 27, 2010.

  1. Hi guys,

    Which version of PHP is currently installed on DASP?

    I am contemplating installing Joomla 1.5.15 in conjunction with SQL Server 2008.

    Joomla presently requires at least PHP v.4.3.10 and recommends v.5.2+ ....and has a "Do not use PHP 4.3.9, 4.4.2 or 5.0.4" comment.

    Please advice,
    Arne
     
  2. Ramses

    Ramses Guest

    I think it's using version 5 of PHP, but you could use the a phpinfo file to determine the exact version
     
  3. dmitri

    dmitri DiscountASP.NET Staff

    PHP Version 5.2.6 to be exact
     
  4. Bruce

    Bruce DiscountASP.NET Staff

    for you reference, you can check the version of php by running phpinfo()
     
  5. mjp

    mjp

    You're getting a php error because checkversion.php isn't a valid php file.

    Code:
    {\rtf1\ansi\ansicpg1252\cocoartf949\cocoasubrtf540
    {\fonttbl\f0\fmodern\fcharset0 Courier;\f1\froman\fcharset0 Times-Roman;}
    {\colortbl;\red255\green255\blue255;}
    \paperw11900\paperh16840\margl1440\margr1440\vieww9000\viewh8400\viewkind0
    \deftab720
    \pard\pardeftab720\ql\qnatural
    
    \f0\fs24 \cf0 <?
    \f1 \
    
    \f0 phpinfo(); 
    \f1 \
    
    \f0 ?>}
    Change that to this:

    PHP:
    <?
    phpinfo();
    ?>
    and it will work.
     

Share This Page