I start to get crazy,
After a difficult installation of Dolphin 7.0.8 i realized that my host, 1&1 does not provide Cron Jobs in my package. It is just the beginning, at least i know what to do...
1) Then i want to write an article, it does not work, i want to test the membership, so i created one, its photo does not upload... at both cases a white page says that error 404 and whatever...
2) Now i went to the Admin tools and at audit it says :
- allow_url_fopen = Off - FAIL (must be = On)
- allow_url_include = Off - OK
- magic_quotes_gpc = On - FAIL (must be = Off)
- memory_limit = 94371840 - FAIL (must be >= 134217728)
- post_max_size = 8388608 - FAIL (must be >= 52428800)
- upload_max_filesize = 41943040 - FAIL (must be >= 52428800)
which is very strange because at the installation for example everything was alright, and i even made an phpinfo.php file who shows magic_quotes_gpc is OFF. In spite of the fact, the Admin tool php info shows magic_quotes_gpc ON.
In the forum there is any stable/sure solution :
I tried to make a php.ini, it does not work...
I tried to add lines into .htaccess of the root :
Options -MultiViews -Indexes
<IfModule mod_php4.c>
php_flag register_globals Off
php_flag magic_quotes_gpc Off
php_flag allow_url_fopen = On
</IfModule>
<IfModule mod_php5.c>
php_flag allow_url_include Off
php_flag register_globals Off
php_flag magic_quotes_gpc Off
php_flag allow_url_fopen = On
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
etc...
Nothing...
3) a new shit was born too, How can i arrange memory limit (memory limit of what ??), post max size (of the articles ??) and upload max size (of the photos ??) ?
Thanks for your kind help, if you have ideas...
Igor