[Bug 60681] Increase severity of "request failed: error reading the headers"

2019-07-24 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60681

david guptil  changed:

   What|Removed |Added

URL||https://www.technical-help-
   ||support.com/device-support/
   ||alexa-support/

--- Comment #16 from david guptil  ---
https://www.technical-help-support.com/device-support/alexa-support/
https://www.technical-help-support.com/email-support/att-email-support/
https://www.technical-help-support.com/device-support/arlo-support/
https://www.technical-help-support.com/email-support/roadrunner-email-support/
https://www.technical-help-support.com/email-support/sbcglobal-email-support/
https://www.technical-help-support.com/email-support/bellsouth-email-support/
https://www.technical-help-support.com/device-support/roku-support/
https://www.technical-help-support.com/device-support/garmin-support/
https://www.technical-help-support.com/device-support/kindle-support/
https://www.technical-help-support.com/device-support/tomtom-support/
https://www.technical-help-support.com/hp-support/hp-tech-support/
https://www.technical-help-support.com/device-support/netflix-support/
https://www.technical-help-support.com/router-support/cisco-support/
https://www.technical-help-support.com/device-support/
https://www.technical-help-support.com/router-support/linksys-support/
https://www.technical-help-support.com/email-support/gmail-support/
https://www.technical-help-support.com/email-support/yahoo-mail-support/
https://www.technical-help-support.com/router-support/netgear-support/
https://www.technical-help-support.com/quickbooks-support/quickbooks-upgrade/
https://www.technical-help-support.com/quickbooks-support/quickbooks-cost/
https://www.technical-help-support.com/quickbooks-support/quickbooks-license/
https://www.technical-help-support.com/quickbooks-support/buy-quickbooks/
https://www.technical-help-support.com/quicken-support/buy-quicken/
https://www.technical-help-support.com/quickbooks-support/quickbooks-pricing/
https://www.technical-help-support.com/quickbooks-support/quickbooks-discount/
https://www.technical-help-support.com/quickbooks-support/quickbooks-technical-support/
https://www.technical-help-support.com/quickbooks-support/quickbooks-help/
https://www.technical-help-support.com/router-support/
https://www.technical-help-support.com/microsoft-support/microsoft-activation-support/
https://www.technical-help-support.com/quickbooks-support/quickbooks-payroll-support/
https://www.technical-help-support.com/quickbooks-support/quickbooks-customer-service/
https://www.technical-help-support.com/quicken-support/quicken-customer-service/
https://www.technical-help-support.com/quickbooks-support/quickbooks-phone-number/
https://www.technical-help-support.com/quicken-support/quicken-technical-support/
https://www.technical-help-support.com/quicken-support/quicken-bill-pay-support/
https://www.technical-help-support.com/quicken-support/quicken-online-support/
https://www.technical-help-support.com/quickbooks-support/quickbooks-online-support/
https://www.technical-help-support.com/quicken-support/quicken-help/
https://www.technical-help-support.com/email-support/
https://www.technical-help-support.com/apple-support/icloud-support/
https://www.technical-help-support.com/quickbooks-support/quickbooks-enterprise-support/
https://www.technical-help-support.com/quicken-support/quicken-phone-number/
https://www.technical-help-support.com/quickbooks-support/intuit-quickbooks-support/
https://www.technical-help-support.com/pogo-support/pogo-screen-size-problem/
https://www.technical-help-support.com/microsoft-support/microsoft-help/
https://www.technical-help-support.com/microsoft-support/microsoft-phone-support/
https://www.technical-help-support.com/microsoft-support/microsoft-contact/
https://www.technical-help-support.com/hp-support/hp-contact-number/
https://www.technical-help-support.com/hp-support/hp-computer-support/
https://www.technical-help-support.com/microsoft-support/microsoft-number/
https://www.technical-help-support.com/hp-support/hp-phone-number/
https://www.technical-help-support.com/pogo-support/pogo-games-flash-error/
https://www.technical-help-support.com/microsoft-support/microsoft-technical-support/
https://www.technical-help-support.com/hp-support/hp-printer-support/
https://www.technical-help-support.com/microsoft-support/microsoft-telephone-support/
https://www.technical-help-support.com/hp-support/hp-laptop-support/
https://www.technical-help-support.com/microsoft-support/microsoft-customer-service/
https://www.technical-help-support.com/hp-support/hp-help/
https://www.technical-help-support.com/apple-support/apple-help-number/
https://www.technical-help-support.com/pogo-support/pogo-games-java-problem/

[Bug 63607] New: Inconsistent translation of error code in server/util

2019-07-24 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63607

Bug ID: 63607
   Summary: Inconsistent translation of error code in server/util
   Product: Apache httpd-2
   Version: 2.5-HEAD
  Hardware: PC
OS: All
Status: NEW
  Severity: normal
  Priority: P2
 Component: Core
  Assignee: bugs@httpd.apache.org
  Reporter: lege...@foxmail.com
  Target Milestone: ---

We find that in ap_parse_form_data() at server/util.c:

AP_DECLARE(int) ap_parse_form_data(request_rec *r, ap_filter_t *f,
   apr_array_header_t **ptr,
   apr_size_t num, apr_size_t usize)
{
...
2822: rv = apr_bucket_read(bucket, , , APR_BLOCK_READ);
if (rv != APR_SUCCESS) {
apr_brigade_destroy(bb);
return HTTP_BAD_REQUEST;
}
...
}

apr_bucket_read() is a macro to a function pointer read, and it can call a
function file_bucket_read() which can return error code EINVAL from
file_bucket_read() -> apr_file_seek()

This means EINVAL(22) is translated to a client-side error
HTTP_BAD_REQUEST(400), which I think there may be wrong since the error code
means there is something wrong with the server.

Let's look at another translation at mod_cache,
modules/cache/mod_cache_socache.c:

static int socache_precfg(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t
*ptmp)
{
...
apr_status_t rv = ap_mutex_register(pconf, cache_socache_id, NULL,
APR_LOCK_DEFAULT, 0);
if (rv != APR_SUCCESS) {
ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, APLOGNO(02390)
"failed to register %s mutex", cache_socache_id);
1415:return 500; /* An HTTP status would be a misnomer! */
}
...
}

Here ap_mutex_register() can return EINVAL as well, but it is correctly
translated to server-side error 500. Maybe as the comment suggests, it should
not be translated to an HTTP status? I am not sure about that.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 63606] New: Can't add more SSL VirtualHosts

2019-07-24 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63606

Bug ID: 63606
   Summary: Can't add more SSL VirtualHosts
   Product: Apache httpd-2
   Version: 2.4.10
  Hardware: PC
OS: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Core
  Assignee: bugs@httpd.apache.org
  Reporter: igay...@gmail.com
  Target Milestone: ---

Created attachment 36682
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=36682=edit
backtrace

I'm trying to add more SSL VirtualHost on my Apache server but when I try to
add the #1193 the Apache child process ends with a buffer overflow error. If I
try to add a non-SSL VirtualHost there are no issues. Also, when I add the
#1193 VirtualHost, the Apache server continues working but all the operations
using SSL from PHP doesn't work (like libcurl, libssl...).

I've attached the backtrace and more details about my installation are:

- Linux Debian 8.11
- PHP 7.1.30
- Apache package from Debian
- Started from one day to another, I mean that I had more than 2k VirtualHosts
and it was working until someday and I discovered the 1193 limitation

Thank you

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org



[Bug 60846] PR34014 / r903052 changed date format for autoindex

2019-07-24 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60846

--- Comment #15 from riya joshi  ---
check out the rrc group d result 2019 at: https://rrbgroupdresults.co.in/

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org