I didn t figured out WHERE i can find the php.ini.
I choosed a free Webspacehoster (kilu.de) for running projectpier. It works all fine but the 8 mb upload-limit is kind of anoyin.
How to change php.ini to pload more than 8 MB
By Paracetamol - Posted on March 3rd, 2010
Tagged:
You should really ask that to your hosting as it depends on it's servers configuration.
Normally, a shared hosting, either payed or free, won't give you access to php.ini but if the server allows it, you could use a .htaccess file.
Just create an .htaccess file (with that name) on your web root with the line:
php_value memory_limit 16M
Change 16 to any other value you want.
Please note that changing the maximum memory for your PHP scripts may not be allowed by your hosting, you should ask them for support.