Displaying 16 results from an estimated 16 matches for "post_max_size".
2020 Apr 08
2
Unable to arc install-certificate
...ng to "https://reviews.llvm.org/api/"...
Usage Exception: Failed to connect to server (https://reviews.llvm.org/api/):
[HTTP/500] Internal Server Error
As received by the server, this request had a nonzero content length but no
POST data.
Normally, this indicates that it exceeds the 'post_max_size' setting in the
PHP configuration on the server. Increase the 'post_max_size' setting or
reduce the size of the request.
Request size according to 'Content-Length' was '59', 'post_max_size' is set
to '32M'.
-------------- next part --------------
An HTML...
2020 Apr 09
2
Unable to arc install-certificate
...;> Usage Exception: Failed to connect to server (
>> https://reviews.llvm.org/api/): [HTTP/500] Internal Server Error
>> As received by the server, this request had a nonzero content length but
>> no POST data.
>>
>> Normally, this indicates that it exceeds the 'post_max_size' setting in
>> the PHP configuration on the server. Increase the 'post_max_size' setting
>> or reduce the size of the request.
>>
>> Request size according to 'Content-Length' was '59', 'post_max_size' is
>> set to '32M'.
>...
2017 Sep 21
4
CentOS 7: changes to php.ini
Hi,
I'm hosting a few web apps like OwnCloud, Wordpress and Dolibarr on
CentOS 7 that require a handful of changes to php.ini. I have to define
some custom values for post_max_size, upload_max_filesize, etc.
I don't know if I'm supposed to edit /etc/php.ini directly or if changes
should be put in a configuration file stub in /etc/php.d. For example, I
followed the recommendations of a fellow CentOS user and defined
date.timezone by edit /etc/php.d/date.ini like this....
2006 May 17
3
PHP register_globals
...am failing.
someone trold me that I should change php.ini and I did it.
? - register_globals = Off
- register_globals = On
I made a php test page
html/test.php
<?php
phpinfo();
?>
and checked it, but I can not make it.
output_buffering no value no value
output_handler no value no value
post_max_size 8M 8M
precision 14 14
register_argc_argv On On
register_globals Off Off
I am using CentOs 4.3 and installed php-4.3.9-3.12
php-mbstring-4.3.9-3.12 php-gd-4.3.9-3.12.
Does anyone help me to trun on register_globals please? Thenks for your
help.
Cheers,
Joe
_________________________________...
2010 Jun 09
3
PHP file upload limit
Hi all,
I am trying to run a web-based PHP application on a CentOS 5 32-bit
machine that requires me to upload large files. The machine also
happens to have little RAM (256MB).
I have no problem setting my upload limit ( upload_max_filesize ) to 1
GB but for some reason 2 GB or above seems to be no go. Would anybody
know why? Could it be one of the many 32-bit vs 64-bit issues?
Thanks.
Boris.
2014 Jan 13
3
apache - upload files bigger than 2Go
Hi,
I need to upload files larger than 4.4Gb (iso DVD) on CentOS (5.5 x64)
http server (httpd-2.2.3-43.el5.centos)
On the apache server set in my /etc/php.ini
upload_max_filesize = 4900M
post_max_size = 5000M
In my httpd.conf I set :
LimitRequestBody 0
I'm using firefox and/or chrome client for upload a file with 4.2gb size
on the server.
But it doesn't work.
Everything work fine and I can upload my file if it's not greater than
2gb.
I see that there are a tech...
2019 Jul 12
2
Introducing an Alignment object in LLVM
...tAlignment()` (10)
I have a patch to introduce alignment object in LLVM.
This patch does not fix the code but replaces the unsigned value by a type
so it's easier to introduce proper semantic later on.
The patch (11) is too big to be sent to Phabricator, arc diff complains
about server's `post_max_size` being too small.
I would like to seek guidance from the community:
- Is this patch worthwhile?
- If so, how should it be reviewed? Should it be split?
-- Guillaume
PS: If you intend to have a look at it you should start with
`llvm/include/llvm/Support/Alignment.h`
1 -
https://github.com/llvm/...
2011 Feb 15
3
apache 2 and php 5.2
Hi originally I installed php 4 on centos 5.5 and then a few repos including
the remi repo to upgrade to php5, which seems to upgrade/work without any
issues.
However when I make a change to the /etc/php.ini file it doesn't look like
apache is seeing it, for example if I change the post_max_size and
upload_max_file to 25M each apache still sees the default 2M. I also removed
the /etc/php.ini file and apache is able to start with no problems and it
will still see the default 2M.
I was wondering if anyone can tell me why apache is not taking the settings
from the /etc/php.ini file and it...
2019 Jul 12
2
Introducing an Alignment object in LLVM
...ve a patch to introduce alignment object in LLVM.
> This patch does not fix the code but replaces the unsigned value by a type
> so it's easier to introduce proper semantic later on.
>
> The patch (11) is too big to be sent to Phabricator, arc diff complains
> about server's `post_max_size` being too small.
>
> I would like to seek guidance from the community:
> - Is this patch worthwhile?
> - If so, how should it be reviewed? Should it be split?
>
> -- Guillaume
> PS: If you intend to have a look at it you should start with
> `llvm/include/llvm/Support/Alig...
2017 May 08
0
Squirrelmail/PHP issue
..., I used to be able to
attach more than 4 pictures to an email. Now I can't, four seems to be the limit. Picture file
size doesn't seem to matter, they can be 50k or 5 meg each. I upped the limits in php.ini for the
following parameters to see if this would have any bearing on the issue:
post_max_size = 20M
upload_max_filesize = 15M
The way I see this is that I should be able to attach [more than] four pics of say, size 100K, to
an email. I can't. Within Squirrelmail I go to 'Compose', put in a recipient, subject title, and
in the body of text lets just say I add "test case&q...
2017 Sep 21
0
CentOS 7: changes to php.ini
...t: den 21 september 2017 11:05
> To: centos at centos.org
> Subject: [CentOS] CentOS 7: changes to php.ini
>
> I'm hosting a few web apps like OwnCloud, Wordpress and Dolibarr on
> CentOS 7 that require a handful of changes to php.ini. I have to define
> some custom values for post_max_size, upload_max_filesize, etc.
>
> I don't know if I'm supposed to edit /etc/php.ini directly or if changes
> should be put in a configuration file stub in /etc/php.d. For example, I
> followed the recommendations of a fellow CentOS user and defined
> date.timezone by edit /etc/p...
2017 Sep 21
0
CentOS 7: changes to php.ini
On Thu, September 21, 2017 4:04 am, Nicolas Kovacs wrote:
> Hi,
>
> I'm hosting a few web apps like OwnCloud, Wordpress and Dolibarr on
> CentOS 7 that require a handful of changes to php.ini. I have to define
> some custom values for post_max_size, upload_max_filesize, etc.
>
> I don't know if I'm supposed to edit /etc/php.ini directly or if changes
> should be put in a configuration file stub in /etc/php.d. For example, I
> followed the recommendations of a fellow CentOS user and defined
> date.timezone by edit /etc/p...
2017 Sep 21
1
CentOS 7: changes to php.ini
...Galtsev wrote:
>
> On Thu, September 21, 2017 4:04 am, Nicolas Kovacs wrote:
>> Hi,
>>
>> I'm hosting a few web apps like OwnCloud, Wordpress and Dolibarr on
>> CentOS 7 that require a handful of changes to php.ini. I have to define
>> some custom values for post_max_size, upload_max_filesize, etc.
>>
>> I don't know if I'm supposed to edit /etc/php.ini directly or if changes
>> should be put in a configuration file stub in /etc/php.d. For example, I
>> followed the recommendations of a fellow CentOS user and defined
>> date.tim...
2017 Aug 08
1
Troubleshooting php-fpm with apache on Centos 7
...p7 .htm .html
php_admin_value[error_log] = /var/log/php-fpm/www-error.log
php_admin_flag[log_errors] = on
php_value[session.save_handler] = files
php_value[session.save_path] = /var/lib/php/session
php_value[soap.wsdl_cache_dir] = /var/lib/php/wsdlcache
php_admin_value[post_max_size] = 40M
php_admin_value[short_open_tag] = On
php_value[date.timezone] = "Europe/Athens"
Nick
2017 Sep 21
1
CentOS 7: changes to php.ini
...> > To: centos at centos.org
> > Subject: [CentOS] CentOS 7: changes to php.ini
> >
> > I'm hosting a few web apps like OwnCloud, Wordpress and Dolibarr on
> > CentOS 7 that require a handful of changes to php.ini. I have to define
> > some custom values for post_max_size, upload_max_filesize, etc.
> >
> > I don't know if I'm supposed to edit /etc/php.ini directly or if changes
> > should be put in a configuration file stub in /etc/php.d. For example, I
> > followed the recommendations of a fellow CentOS user and defined
> > dat...
2017 Aug 08
2
Troubleshooting php-fpm with apache on Centos 7
Hello,
I am running httpd-2.4.6-45.el7.centos.x86_64 with
php-fpm-7.0.22-1.el7.remi.x86_64 (on CentOS 7).
My main problem: On this httpd server I have several vhosts running, but
apparently I am facing intermittent problems with php-fpm communication
on only one of them.
Most of the sites are WordPress or Joomla Applications (running with
mysql). Everything seems right: low load, all