Page 1 of 1

sending data

Posted: Sun Sep 20, 2009 8:31 am
by blomberg
hi
i send a lof of data with TEXTAREA about 20,000 character and after sending in new page show erro
INTERNAEL SERVER ERROR
i use this data for queries in my project
please help me

Re: sending data

Posted: Sun Sep 20, 2009 8:35 am
by jackpf
Does it work when you post less characters?

Try changing the max post size in php.ini.

Re: sending data

Posted: Sun Sep 20, 2009 8:48 am
by blomberg
yes it work in less data
how can change max siza of post
tnx

Re: sending data

Posted: Sun Sep 20, 2009 9:27 am
by jackpf
Do you have access to php.ini?

Re: sending data

Posted: Sun Sep 20, 2009 10:09 am
by blomberg
no i dont have access to php.ini
what am doing now?
tnx

Re: sending data

Posted: Sun Sep 20, 2009 2:19 pm
by jackpf
Umm...you might have to ask your hosts to change it for your account then, if you're a virtual server.

Or you could try this:

Code: Select all

ini_set('post_max_size', '8M');
but I'd be surprised if that works tbh.

Re: sending data

Posted: Mon Sep 21, 2009 12:31 am
by blomberg
i have to change my host
thanx my friend
8)

Re: sending data

Posted: Mon Sep 21, 2009 2:29 am
by jackpf
Well...I think most hosts will probably have this setting on about 8m.

Will they not change it for you or something?

And no problem :)

Re: sending data

Posted: Mon Sep 21, 2009 2:55 am
by blomberg
are u know that 20,000 character is more than 8m or less!!!!??
tnx 8O

Re: sending data

Posted: Mon Sep 21, 2009 5:39 am
by jackpf
It's less.

But you may have a smaller max post size setting atm. Or I could just be completely wrong 8O

I'm just guessing and giving suggestions here...I think the only way to find out is to ask your hosts.

You should test it out on your own machine and see if it is the max post size setting causing it.