Search found 34 matches

by mwiede
Fri Aug 04, 2023 11:09 am
Forum: News about Windows Webserver
Topic: IPV6 addresses
Replies: 0
Views: 71123

IPV6 addresses

WWebserver now resolv IPV6 addresses for hosts, for example localhost will bind only to IPV6 ::1 if available and not to the IPV4 127.0.0.1 address! You should append the IPV4 address separated by comma to bind it twice: localhost,127.0.0.1 If you type in all then it will bind to the default IPV4 ad...
by mwiede
Sat Jun 24, 2023 3:28 pm
Forum: Bug Reporting
Topic: Prepend file
Replies: 1
Views: 49606

Re: Prepend file

Yes it works.
Just append these directives to cfg/php.ini and restart WWebserver

Code: Select all

auto_prepend_file = "C:\WWebserver with PHP 8.2.2\auto_prepend_file.php"
auto_append_file = "C:\WWebserver with PHP 8.2.2\auto_append_file.php"
by mwiede
Tue Jun 13, 2023 10:54 am
Forum: Bug Reporting
Topic: Fake Antivirus Messages
Replies: 0
Views: 49890

Fake Antivirus Messages

WWebserver does not include any malware. But sporadically a Anti Virus program may detect old style of executables and DLL's and mark them as malware. (because of in the executable there is a function which will download the MSVC++ redistributable from the Internet). https://www.mwiede.de/windows-ph...
by mwiede
Tue Jun 13, 2023 8:28 am
Forum: Free discussion and wanted Features
Topic: Problem?
Replies: 1
Views: 48999

Re: Problem?

It seems there is a firewall problem?

WWebserver use the default socket functions of Windows to handle a TCP/IP connection with client.

There is no deeper network functionality to configurate in WWebserver.
by mwiede
Wed Mar 15, 2023 5:38 pm
Forum: News about Windows Webserver
Topic: Various updates (Version 2.0)
Replies: 0
Views: 50967

Various updates (Version 2.0)

The internal version 2.0 of WWebserver comes with the following new features: - Optional Apache compatible log file format, see documentation or https://www.mwiede.de/windows-php-webserver/index.htm#request-logging - HTTP Keep alive connection enabled per default, that cause much more speed, see als...
by mwiede
Wed Mar 15, 2023 5:25 pm
Forum: FAQ and Manuals
Topic: Howto setup a individual PHP version with WWebserver?
Replies: 0
Views: 71659

Howto setup a individual PHP version with WWebserver?

Per default WWebserver comes with the buildin PHP version. This is the fastest version of PHP! Dont try to overwrite with other PHP DLL's in WWebserver installation directory. That will cause errors, because of the DLL's are linked to WWebserver. To setup another PHP version you should download the ...
by mwiede
Mon Feb 06, 2023 5:30 pm
Forum: Free discussion and wanted Features
Topic: https
Replies: 4
Views: 40897

Re: https

Expired SSL certificates are blocked by Chrome and other modern browers. You should renew them.
Therefore i am delevoping a script to renew Let's Encrypt certificates with WWebserver.
I will show this script next days.
by mwiede
Sun Feb 05, 2023 7:06 pm
Forum: Free discussion and wanted Features
Topic: https
Replies: 4
Views: 40897

Re: https

1. You can protect directories with password authentication. Just use the the /wwadmin panel. http://yourdomain/wwadmin To access WWadmin you have to create a password with the reset_pwd.bat located in WWebserver installation directory. directory_protection.png See also: https://www.mwiede.de/window...
by mwiede
Wed Nov 30, 2022 11:44 am
Forum: News about Windows Webserver
Topic: All HTTP headers in $_SERVER array
Replies: 0
Views: 51181

All HTTP headers in $_SERVER array

Now all HTTP headers are available in $_SERVER array as HTTP_XXX keys.
In previous versions of WWebserver only the most common headers were available.

This caused problems with Wordpress version 6.1.1.

If you need to work with Wordpress version 6.1.1, you should update WWebserver.
by mwiede
Thu Apr 08, 2021 6:21 pm
Forum: News about Windows Webserver
Topic: Multiple IP addresses and ports
Replies: 0
Views: 61563

Multiple IP addresses and ports

You can bind WWebserver to several (or all) IP addresses and ports without starting new instances of the CLI version. You can define multiple IPV4 addresses or hostnames separated by comma. You can write the port direct into the hostname. For example: localhost,localhost:8080,localhost:9090 will bin...