Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: that file size issue
txarly wrote:
PHP_INT_MAX. Should I ask my host about that?
It’s your standard integer size limitation. Not necessary to ask, it’s not the cause, just the out most limitation of the platform.
I have both post_max size and upload_max_filesize set to 100M
According to Textpattern they are not. Please put following to your page template and post the results here:
<txp:php>
echo
'post_max_size: ' . ini_get('post_max_size').', ' .
'upload_max_filesize: ' . ini_get('upload_max_filesize').', '.
'file_max_upload_size: '.get_pref('file_max_upload_size');
</txp:php>
Offline
Re: that file size issue
This is what I got:
post_max_size: 8M, upload_max_filesize: 128M, file_max_upload_size: 8388608
And I double-checked my phpinfo(); page and it also says the same. So I guess that my php.ini is not working (I just tried restarting the server again with no success).
Carlos Cuellar
blog: carloscuellar.net
mail: hola[at]carloscuellar[dot]net
Offline
Re: that file size issue
txarly wrote:
So I guess that my php.ini is not working
That would be correct guess, I would say. Could be a wrong location for the php.ini file, the file could be corrupted or have slight typo. PHP’s INI formated configuration files are rather strict about mistakes. Any, and the file is skipped.
You could politely contact Media Temple, especially since they gave false response of confirmation.
Last edited by Gocom (2012-07-19 05:25:56)
Offline
Re: that file size issue
Definitely, I am contacting Media Temple again about this issue.
Thank you so much guys for your help. This is why the TXP community is awesome :)
Carlos Cuellar
blog: carloscuellar.net
mail: hola[at]carloscuellar[dot]net
Offline