hi all:
i use hiawatha as a webserver and php write web page, i change all the php.ini parameters to allow user upload a big file (about 10M), but at last failed.
does hiawatha support user upload big file?
my hiawatha httpd.conf is:
# Hiawatha main configuration file
#
# GENERAL SETTINGS
#
ServerId = 33:33
ConnectionsTotal = 100
ConnectionsPerIP = 10
SystemLogfile = /usr/local/var/log/hiawatha/system.log
GarbageLogfile = /usr/local/var/log/hiawatha/garbage.log
# BINDING SETTINGS
# A binding is where a client can connect to.
#
Binding {
Port = 80
Interface = 10.155.20.74
}
#
Binding {
Port = 443
Interface = 10.155.20.74
ServerKey = /usr/local/etc/hiawatha/webui_serverkey.pem
UseSSL = yes
}
#
# COMMON GATEWAY INTERFACE (CGI) SETTINGS
# These settings can be used to run CGI applications.
#
CGIextension = cgi
TimeForCGI = 100
CGIhandler = /opt/ah/bin/ah_capture:php
CGIhandler = /usr/local/bin/php-cgi:php5
# DEFAULT WEBSITE
#
Hostname = 127.0.0.1
WebsiteRoot = /usr/local/var/www/hiawatha
StartFile = index.html
ExecuteCGI = yes
AccessLogfile = /usr/local/var/log/hiawatha/access.log
ErrorLogfile = /usr/local/var/log/hiawatha/error.log
# VIRTUAL HOSTS
# Use a VirtualHost section to declare the websites you want to host.
#
VirtualHost {
Hostname = 10.155.20.74
WebsiteRoot = /usr/local/var/www/hiawatha/webui
StartFile = index.php5
ExecuteCGI = yes
}
how to change it? please give me some suggestions. thanks! very thanks!!