php.ini Support

Status
Not open for further replies.

garrettroyce

Community Support
Community Support
Messages
5,609
Reaction score
250
Points
63
There is a global php.ini for each server, but nothing that we as users can see or change.
 

iantac

New Member
Messages
2
Reaction score
0
Points
0
Aw... i need to add something on the php.ini
I've created a php.ini file and uploaded it..

I will just add a these
upload_max_filesize = 100M
post_max_size = 200M
memory_limit = 100M
 
Last edited:

lemon-tree

x10 Minion
Community Support
Messages
1,420
Reaction score
46
Points
48
Even if you could change it, you have set the limits very high. All of your disk space could be used up in just a few files on free hosting.
 

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
Even if you could change it, you have set the limits very high. All of your disk space could be used up in just a few files on free hosting.

I also cannot imagine -why- exactly you'd need them that high unless you're running a file hosting service, which is disallowed in the TOS anyways.


So I guess it's a good thing he can't override them cause it'll make it easier for him to NOT violate the TOS :)
 

akkudreamz

New Member
Messages
183
Reaction score
0
Points
0
you should use the htacess method

in .htaccess place
Code:
php_value  upload_max_filesize  100M
php_value  post_max_size  200M
php_value  memory_limit  100M
 
Last edited:

garrettroyce

Community Support
Community Support
Messages
5,609
Reaction score
250
Points
63
I believe that the actual PHP configuration will override this (Apache always overrides a lower level configuration with a higher level).
 

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
you should use the htacess method

in .htaccess place
Code:
php_value  upload_max_filesize  100M
php_value  post_max_size  200M
php_value  memory_limit  100M

That wont work as we do not allow overrides.

If you want custom PHP settings, you would need a VPS
 
Last edited:
Status
Not open for further replies.
Top