upload_max_filesize solutions

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
chopficaro
Forum Commoner
Posts: 68
Joined: Fri Jan 01, 2010 12:56 am

upload_max_filesize solutions

Post by chopficaro »

im trying to make an art gallery site for my sister with free hosting, i need upload_max_filesize to be at least 3m
ive tried many free hosting services and they are all 1.5m
ive tried what these guys say
http://www.openg.info/entry/php-cpanel- ... ss-php-ini

which is put this in htdocs:

.htaccess

Code: Select all

#Enables mod_rewrite, otherwise all Rewrite directives below will not work
RewriteEngine on
#Activates php.ini config located in main folder to work also recursively for all subfolders, obviously replace your_cpanel_user with your full path, you find it in cPanel home page on the left it's called 'Home Directory'
suPHP_ConfigPath /home/vol2/20x.cc/20x_6657899/public_html
php.ini

Code: Select all

upload_max_filesize = 3M
post_max_size 8M
memory_limit 128M
max_input_time -1
which just gives me a 404

and ive tried running this, and it gives me the same old 1.5m every time
index.php

Code: Select all

<?php
phpinfo();
ini_set("upload_max_filesize", "3M"); // Think that's right...
phpinfo();
?>
chopficaro
Forum Commoner
Posts: 68
Joined: Fri Jan 01, 2010 12:56 am

Re: upload_max_filesize solutions

Post by chopficaro »

i dont think the folder public_html exists actually
Post Reply