[Bug 63652] Windows 10 update history

2019-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63652

@Care2Technology  changed:

   What|Removed |Added

URL||http://800support-number.co
   ||m/microsoft-support/
   Keywords||MassUpdate
 OS||All

-- 
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 63652] New: Windows 10 update history

2019-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63652

Bug ID: 63652
   Summary: Windows 10 update history
   Product: Apache httpd-2
   Version: 2.5-HEAD
  Hardware: PC
Status: NEW
  Severity: normal
  Priority: P2
 Component: Core
  Assignee: bugs@httpd.apache.org
  Reporter: toduc...@vmailcloud.com
  Target Milestone: ---

The big news right now is that you usually don't have anything to do! If you
have fully enabled automatic updates, all new updates will be automatically
downloaded and installed when available on your system, so you do not need to
think about it. And if there is a problem, you can get help immediately by
calling the Microsoft support phone number.

More info: http://800support-number.com/microsoft-support/

-- 
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 57174] Update windows visual studio build

2019-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57174

@Care2Technology  changed:

   What|Removed |Added

 CC||toduc...@vmailcloud.com

-- 
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 63649] Graceful reload causes incorrect evaluation of IfDefine blocks

2019-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63649

--- Comment #2 from jaros...@thinline.cz ---
FPM_VAR is not defined anywhere (if it was, the server would be unable to start
with the configuration above)

The intention is to have it defined eventually - as of yet it's not decided
which way - but at this moment it is not. The issue is that Apache sometimes
acts as if it was defined.

-- 
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 63649] Graceful reload causes incorrect evaluation of IfDefine blocks

2019-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63649

--- Comment #1 from Joe Orton  ---
Where is FPM_VAR defined, by "Define" or on the command-line with -D?

-- 
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-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60846

--- Comment #17 from judy mitchel  ---
Hi there, here I would like to introduce myself as a fashion designer at
https://buymoviejackets.co.uk/ being a fashion designer I always want to learn
about how to code in the meantime I always learn these

-- 
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 63649] New: Graceful reload causes incorrect evaluation of IfDefine blocks

2019-08-08 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63649

Bug ID: 63649
   Summary: Graceful reload causes incorrect evaluation of
IfDefine blocks
   Product: Apache httpd-2
   Version: 2.4.38
  Hardware: PC
OS: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Core
  Assignee: bugs@httpd.apache.org
  Reporter: jaros...@thinline.cz
  Target Milestone: ---

Hello,

we are encountering a strange error on some of our LAMP servers. After some
number of graceful (SIGUSR1) reloads the server stops processing PHP code and
complains about ExecCGI not being enabled:

[mpm_worker:notice] [pid 2717:tid 140275019682944] AH00297: SIGUSR1 received. 
Doing graceful restart
[fcgid:error] [pid 18065:tid 140274823059200] [client ip] [server.name]
mod_fcgid: location of script /path/file.php does not have ExecCGI enabled

Shortened configuration is as follows:


  
SetHandler fcgid-script
  


# Crash-me debugging block

  Intentional config error this should not be set



  ServerName server.name
  
SuexecUserGroup user group
  
  DocumentRoot /path
  

  FCGIWrapper /wrapper .php
  Options +ExecCGI

  


The FPM_VAR variable's purpose is to allow seamless transition to FPM via
mod_proxy_fcgi - we don't have that in production use yet anywhere though, so I
was able to add the "crash-me" configuration for debugging purposes. This
configuration (without the crash-me part) works without issues on servers based
od Debian Stretch which ships Apache 2.4.25. The problem only occurs on servers
based on Debian Buster (Apache 2.4.38). At the moment we have hundreds of
2.4.25 servers and below twenty of 2.4.38 servers so I guess the bug was
introduced somewhere in between of those two.

Considering the configuration above it seems to me that the value (or
evaluation) of FPM_VAR changes in the middle of config reload - it is evaluated
as not defined when processing the crash-me block, so the webserver does not
crash, but it is evaluated as defined in virtualhosts, so PHP stops working.
The change seems permanent though - this happens on next SIGUSR1 reload:

[mpm_worker:notice] [pid 2717:tid 140275019682944] AH00297: SIGUSR1 received. 
Doing graceful restart
AH00526: Syntax error on line 11 of /etc/apache2/conf.d/debug.conf:
Invalid command 'Intentional', perhaps misspelled or defined by a module not
included in the server configuration

After that the server crashes, is restarted by supervisor and works correctly
for some time.

I found similar issue here -
https://bz.apache.org/bugzilla/show_bug.cgi?id=56008 , which is marked as
duplicate of https://bz.apache.org/bugzilla/show_bug.cgi?id=57328 . Attached
one-line patch to server/core.c is applied to Debian source though.

-- 
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