Hi all ,
Probably a stupid question , but as the tite says , where is this elusive php.ini file to be found ?
I want to make some suggested changes in it . We are hosted with IX Webhosting on a Linux setup .
Many thanks
DA
Where is the PHP.ini file ?
Re: Where is the PHP.ini file ?
When you only have "normally" webhosting without server access, you can't found php.ini
. The place for php.ini on server is depending from the used linux distribution.
You can only try to overwrite some defaults with an entry in .htaccess ...

You can only try to overwrite some defaults with an entry in .htaccess ...
Re: Where is the PHP.ini file ?
Hi cyberman ,
Thanks for that . It is not available to me than .
Can I change these recomended settings in th htaccess file ? , and how do I do it / ( smile )
Checking PHP memory limit (min 8M, recommend 16M)......................You have "8M"
Could not retrieve a value.... passing anyways
Checking max execution time (min 30s, recommend 45s),,,,,,,,,,,,,,,,,,,,,You have "30"
Checking max upload file size (min 2M)........................You have "2M"
Many thanks for your help
DA
Thanks for that . It is not available to me than .
Can I change these recomended settings in th htaccess file ? , and how do I do it / ( smile )
Checking PHP memory limit (min 8M, recommend 16M)......................You have "8M"
Could not retrieve a value.... passing anyways
Checking max execution time (min 30s, recommend 45s),,,,,,,,,,,,,,,,,,,,,You have "30"
Checking max upload file size (min 2M)........................You have "2M"
Many thanks for your help
DA
Re: Where is the PHP.ini file ?
Create a file named .htaccess and put it in the root of CMSms.DA wrote: Can I change these recomended settings in th htaccess file ? , and how do I do it / ( smile )
Write this inside .htaccessChecking PHP memory limit (min 8M, recommend 16M)......................You have "8M"
Code: Select all
php_value memory_limit 16M
The same hereChecking max execution time (min 30s, recommend 45s),,,,,,,,,,,,,,,,,,,,,You have "30"
Code: Select all
php_value max_execution_time 60
And once againChecking max upload file size (min 2M)........................You have "2M"
Code: Select all
php_value upload_max_filesize 10M
Re: Where is the PHP.ini file ?
Hi Cyberman ,
Thanks very much for that , greatly appreciated .
Have a good day
DA
Thanks very much for that , greatly appreciated .
Have a good day
DA