Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4255
Latest: andreios
New This Month: 3
New This Week: 1
New Today: 0
Stats
Total Posts: 43259
Total Topics: 7518
Most Online Today: 201
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 181
Total: 181

Author Topic: Increasing Upload Limits PHP  (Read 30073 times)

0 Members and 1 Guest are viewing this topic.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Increasing Upload Limits PHP
« on: May 03, 2009, 09:45:19 am »
Increasing Upload Limits PHP

By default php sets the max upload filesize to 2mb
To view your current php settings create the following file
Code: [Select]
<?php
phpinfo
();
?>

Save it as info.php and upload to your website then view it in your browser.

The two important variables are
upload_max_filesize
And
post_max_size


Next step is to change those settings. Look for "Configuration File (php.ini) Path " and
"Loaded Configuration File" on the phpinfo page to find your php settings are stored.

Edit that file and increase upload_max_filesize and post_max_size to the size of the largest file you wish to be allowed uploaded.

Then after your save those changes be sure to restart your webserver for the changes to take affect.


If you do not have access to the php.ini you can still override it in most cases on apache by creating a .htaccess file and place it in the root directory of your forum. If the file already exists just append these files to it.
Example .htaccess file
Code: [Select]
php_value upload_max_filesize 20M
php_value post_max_size 20M



Also if you are using Fast CGI mod_fcgi with apache you need to increase the
MaxRequestLen - variable in the fastcgi settings

« Last Edit: February 01, 2013, 12:15:58 am by SMFHacks »
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline baboontester

  • Member
  • *
  • Posts: 5
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #1 on: September 04, 2009, 10:36:19 pm »
increasing it through the Php.ini is no good to me b/c I cant restart the webserver,

I created an .htaccess file with that exact thing and but it in my root directory, but it gives me an http 500 internal server error

any ideas?

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #2 on: September 05, 2009, 08:03:33 am »
I would try contacting your host for support
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline baboontester

  • Member
  • *
  • Posts: 5
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #3 on: September 06, 2009, 05:00:05 pm »
tried that too, they wont up crap.

They dont seem to get what I'm saying I guess.  Stupid Host Monster.

Offline tiger4020

  • Member
  • *
  • Posts: 1
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #4 on: May 02, 2010, 05:49:28 pm »
i called the host master and they say the file php.ini has to be added by me.

how do i create one and where do i put it in which folder??

the php.ini file which is there on the sever i cannot change it.

what do i do now

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #5 on: May 02, 2010, 07:34:08 pm »
Try the root directory of your site.

On windows i put in c:\windows
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Scooter

  • Member
  • *
  • Posts: 2
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #6 on: December 28, 2010, 03:44:11 pm »
This was helpful. Thanks.

Offline thefley

  • Member
  • *
  • Posts: 35
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #7 on: May 29, 2011, 09:49:17 pm »
updated

never mind I answered my own questions just by asking it. 
« Last Edit: May 29, 2011, 10:03:38 pm by thefley »

Offline StatFreak

  • Member
  • *
  • Posts: 1
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #8 on: August 21, 2011, 06:51:05 pm »
Well, I just created an account here to ask this very question. I'll try the above suggestions and post back if there's a problem.

TIA for the thread.

Offline dexter

  • Member
  • *
  • Posts: 1
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #9 on: December 26, 2011, 10:39:08 am »
hello,
First of all nice work on the software :)

My issue is i don't see the following commands in the php.ini:

upload_max_filesize
post_max_size

I got files up to 100MB that need to go on there? any ideas?
I was thinking to add them myself but can i just write them under there?

I tryed to add the commands to .htcacess but that gives a 500 internal server error.

Greetings
9Th|dexter

Ps the link to the info file: http://www.the9thlegionclan.com/info.php
and link to php.ini :http://www.the9thlegionclan.com/php.ini


Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #10 on: December 26, 2011, 02:27:36 pm »
If the commands are not in the php.ini you can just add them to there.
Some configurations require you to restart the webserver to take affect.

That should be it once you have that set. The only other limits would be webserver limits if you are using fcgi you might have to increase those upload limits as well and maybe adjust your webserver timeout settings to wait for long file uploads.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline jarska

  • Jr. Member
  • **
  • Posts: 68
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #11 on: March 24, 2014, 06:39:05 am »
My hosts php.ini max upload and post file size is 600M.
Still I get error "You need to enter a download title" if I try to upload file size over 100M or so.
What to do next?

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #12 on: March 24, 2014, 08:18:54 am »
It could be a fastcgi limit as well for request length if they are using fastcgi for php
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline jarska

  • Jr. Member
  • **
  • Posts: 68
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #13 on: March 24, 2014, 11:45:52 pm »
Ooops, my mistake, sorry.

There was php_value upload_max_filesize 600M but php_value post_max_size 80M

Now we increase php_value post_max_size to 600M and its working!

Thanks

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: Increasing Upload Limits PHP
« Reply #14 on: March 24, 2014, 11:47:58 pm »
Glad you have it working yes both values need to match in order for it to work correctly.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

 

Related Topics

  Subject / Started by Replies Last post
0 Replies
3986 Views
Last post December 03, 2007, 11:08:05 am
by CrotalusCo
1 Replies
5101 Views
Last post April 10, 2008, 07:16:53 pm
by SMFHacks
1 Replies
4847 Views
Last post March 09, 2009, 07:18:38 pm
by SMFHacks
1 Replies
4282 Views
Last post August 01, 2009, 12:57:20 pm
by SMFHacks
7 Replies
5873 Views
Last post February 03, 2016, 07:52:47 pm
by SMFHacks

+- Recent Topics

No thumbnails on new uploads by SMFHacks
March 27, 2024, 02:10:41 pm

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

Powered by EzPortal