Procedure To Increase File Upload SIZE in CAKEPHP
STEP 1 : Goto .htaccess your root folder ( projectname/.htaccess )
STEP 2 : Paste Following code in .htaccess file
<code>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
php_value upload_max_filesize 100M
php_value post_max_size 100M
</IfModule>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
php_value upload_max_filesize 100M
php_value post_max_size 100M
</IfModule>
</code>
STEP 3 : The Above code have two php lines that is
php_value upload_max_filesize 100M //This line helps to increase file size to
//upload into SERVER up to 100 MB
php_value post_max_size 100M //This line helps to send data to server up to 100 MB
php_value post_max_size 100M //This line helps to send data to server up to 100 MB
STEP 4 : Thank you
by Ravi Arsid
No comments:
Post a Comment