FreePgs.com Forum

FreePgs Related => Support Requests => Topic started by: Motorbikeman on June 21, 2006, 09:24:07 PM

Title: Blind newbie question
Post by: Motorbikeman on June 21, 2006, 09:24:07 PM
Well, I'm definately a newbie and I must be blind as I can't find what I'm looking for. I'm having a spot of bother trying to get Joomla to run and I need to know what the server environment is, e.g: PHP, mySQL and Apache versions. I'd be most gratefull if someone could point me in the direction of the relevent info.

Many thanks in advance
Title: Re: Blind newbie question
Post by: webzone (archived) on June 21, 2006, 09:57:59 PM
The server runs Apache 2.0.54 with PHP 5.0.4 and MySQL 4.1.20.

You can always find the latest web server information using the phpinfo(); (http://www.php.net/function.phpinfo) function (example of the output (http://mdeaudelin.yi.org/fpgs/phpinfo/)). The database server info is available through phpMyAdmin (http://system.freepgs.com/pma/).
Title: Re: Blind newbie question
Post by: Motorbikeman on June 21, 2006, 10:45:27 PM
Cheers  ;D
Title: Re: Blind newbie question
Post by: sixthcrusifix on June 22, 2006, 03:53:40 AM
you can stick this somewhere to see yoru specs:


      <table style="color:#CCCCCC; background:#000000">
    <tr>
     <td><u>Aspect</u></td>

     <td><u>Your Specs</u></td>
    </tr>
    <tr>
     <td>PHP Version</td>

     <td bgcolor="<?php if (version_compare($phpversion'4.1.0') == -1) echo "red"; else echo "green"?>">
     <?php echo phpversion(); ?></td>
    </tr>
    <tr>
     <td>magic_quotes_sybase</td>

     <td bgcolor="<?php if(get_cfg_var("magic_quotes_sybase")) echo "red"; else echo "green"?>">
     <?php if(get_cfg_var("magic_quotes_sybase")) echo "activated";
     else echo 
"deactivated"?>
</td>
    </tr>
    <tr>
     <td>upload_max_filesize</td>

     <td bgcolor="<?php if(!get_cfg_var("upload_max_filesize")) echo "red"; else echo "green"?>">
     <?php echo get_cfg_var("upload_max_filesize"); ?></td>
    </tr>
   
   </table>