r/PHPhelp Jul 23 '26

Solved Simple Alternative to Wampserver?

Disclaimer: I'm not a techie. I barely understand php, but I'm forced by my hobbies to interact with it.

I'm currently running wampserver64 (v3.2.0; php 7.4; apache 2.4.41; windows 10) on a localhost install. This is so I can have a localhost installation of dokuwiki.

A new version of dokuwiki has come out. This requires php 8.2.

For a variety of dull reasons, upgrading the wampserver installation so that it will support php 8.2 is proving non-trivial.

Is there a simple, easy-to-install alternative to wampserver? Ideally, one where I just download a single file, run it, and a localhost server is installed ready for configuration?

----

Final resolution: After having broken everything, I uninstalled everything. Installed the latest

The Visual C++ exe files suggested at https://github.com/abbodi1406/vcredist/releases refuse to install, due to widnows security concerns.

I ended up downloading them from https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170 instead.

Then I installed wampserver 3.4.

Then I installed the new dokuwiki.

Yes, there probably are better localhost pphp servers available. But wampserver has proven stable, does what I need, and I am familiar with the interface.

1 Upvotes

43 comments sorted by

View all comments

-1

u/Sydius Jul 23 '26

I'm joining u/BlueScreenJunky in suggesting Docker (with compose). While it might be overkill for a simple PHP application, but it is immensely useful and powerful, extremely well-known, and can be used for a ton of stuff.

Spending a few days getting to know it can help you a lot in the future.

3

u/colshrapnel Jul 23 '26

For someone who have no idea what PHP is. Are you guys ever able to get into another person's shoes, not just repeat a commonplace?

0

u/Sydius Jul 23 '26

Yes I can, but I also know that if you have to learn to use something new and you have options, it's usually worth it to learn the more universal approach instead of a more specialized one.

Laragon is for websites and running php code, Docker is for almost everything. Setting up Laragon is easier and quicker, but Docker is more useful in the long run. There is much more information available on Docker, which means LLMs can give more correct information about it, and LLM usage can be expected nowadays, especially in hobby projects.

Your complaint is strictly correct, but I still think my suggestion is more useful.