Jump to content

upload_max_filesize how can I ?


cc96ai

Recommended Posts

Hi ,
I m PHP 5.2.0 / Apache
and I can't access php.ini

I try to update .htaccess
and added
php_value upload_max_filesize "25M"
php_value post_max_size "25M"

However it will give me "Internal Server Error"

>From the log file , i can see the error msg

[Mon Jan 22 14:57:57 2007] [alert] [client 127.0.0.1]
C:/work/www/Joomla-1.0.11_eCommerceEdition_VM-1.0.7/.htaccess: Invalid
command 'php_value', perhaps mis-spelled or defined by a module not
included in the server configuration, referer:
http://joomla/administrator/index2.php?option=com_docman&section=config

so I searched on web and try again.. and update the .htaccess

<IfModule mod_php5.c>
php_value max_execution_time "60"
php_value upload_max_filesize "25M"
php_value post_max_size "25M"
</IfModule>

No Error msg, but nothing change.

then I searched again ....

updated php code - ini_set()

print "b4 ".ini_get('upload_max_filesize');
ini_set("upload_max_filesize" , "10M");
print "<br/>after ".ini_get('upload_max_filesize');

which I got the same "2M" from the php code

anyone have any idea where should I go ? is this php5 problem ?
or i did something wrong ?
Link to comment
Share on other sites

Base on the following info, i think we cannot overwrite .htaccess in PHP/CGI mode, is that correct ?

http://www.phpbuilder.com/board/archive/index.php/t-95237.html

Don't believe you can use the php_value, php_admin_value, php_flag, or php_admin_flad directives if you're runing as CGI. Those are Apache directives, but in CGI mode Apache calls the php binary, which turn reads php.ini. Since the binary doesn't read httpd.conf it has no effect on PHP. As PHP isn't loaded into Apache, Apache doesn't know what to do with the directives and borks. HTH.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.