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
I think it's using version 5 of PHP, but you could use the a phpinfo file to determine the exact version
php info Hi! I tried: http://www.printingreen.co.uk/checkversion.php that includes <?php phpinfo (); ?> to run php info and I get an error 404, what's wrong? no PHP installed on the server? Thank you for your reply, Hervé
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.