(no title)
greggman7 | 1 year ago
PHP is unique in that it makes sharing a server trivial and low-resource compared to almost every other solution.
A simple example might be that you can run 100s of PHP forums on a single machine low memory machine but if you want to use discourse (not written in PHP), it requires 10x 20x the resources for a single forum.
This is true about almost every other solution AFAICT.
andix|1 year ago
Or is CGI still a thing and a possible alternative for shared webspaces?
ChrisMarshallNY|1 year ago
I think I just threw up a little, in my mouth...
I don't think there's a viable alternative to PHP. The nerds here, hate it (and they aren't really wrong). I hate it, but it is undisputed God Emperor of Cheap Hosting. There's nothing that even comes close, for simplicity, speed, robustness, cost, and ubiquity. There are millions of pages of support, years of support forums, and hundreds of thousands of people that can work with PHP at an expert level. Despite the hate, PHP is a mature, modern language, still very much under development, and supported by many corporations. Much of the primitive stuff it started with, has been replaced (I think, rather clumsily, but it works).
The simplest hosting solutions have LAMP ("P" being "PHP"), and there are millions of LAMP servers out there. Every single one can run WP, simply by uploading a few files, creating a MySQL DB/User, tweaking a config, and Björn Stronginthearm's your uncle. Or, with things like WPE, you can click on a button in your control panel dashboard.
Also, non-HN-readers can manage just about every aspect of a WP server, once it's set up. People have made careers from that.
This sucks.
I run a couple of sites. I use WP, because it means that I don't have to waste much time, managing them. I could definitely switch over to a static generator (what I would use, if I didn't do WP), or even write my own sites, using handcoded HTML (I have done that, and have even written my own CMSes, in The Dark Ages). I just don't want to have to do that. The moment I walk away from WP, I am sealing my own fate. It will make it ten times as hard to push the sites over to someone else to manage.
I am an indifferent (at best) Web designer. Almost every person here, could probably code circles around me. That means that working on Web sites is painful and slow, detracting from what I'm actually good at.
This sucks.
Nectar0516|1 year ago
It can be used in shared scenarios, but it's nowhere near as automatic as "every file with a particular extension" like PHP...
bsimpson|1 year ago
This was before the days of PaaS solutions like AppEngine.
smarx007|1 year ago
lkrubner|1 year ago
The combination of Wordpress's defaults, its ease of use by designers, and the ability for one server to handle hundreds of installments, means that almost nothing can replace it.
adolph|1 year ago
Is that still a thing? Why would an application on a server share anything other than the kernel?
Danieru|1 year ago
Wordpress optimized hosts will have "servers" sharing the apache, the kernel, the php libs, even the DB instance. The effective burden of an additional host is tiny. Which is perfect for a local cafe's webpage which might be lucky to get a hit an hour.
Now how do you think you'll compete on price by using containers when your competitor can host a 100x the cafe web pages? The cafe owner does not care that they are sharing a php lib instance. They care that their 7 paragraphs appear when the page loads.
lkrubner|1 year ago
Sharlin|1 year ago
jjk7|1 year ago
greggman7|1 year ago
munchler|1 year ago
magicmicah85|1 year ago
JodieBenitez|1 year ago
- use mod_php which must start an interpreter instance for each request and has to dump all associated resources (db handle and the like) and memory when the request is served
- use something like FPM that has a pool of workers ready to communicate with the web server, which is more or less what every other languages do, if not via fast-cgi just by proxying an application server
Another way is event-driven, async PHP application server, but again it's not any different than similar solutions in other languages.
Now why people think PHP is low-resource ? That's all rose tinted glasses, because back in the days when everyone just used mod_php on cheap shared hosting for low-traffic websites, the execution model made it possible to get away with leaky apps since all memory was flushed at the end of the request.
If you want to go low-resource, use something like Go which is both much faster than PHP and has a lower memory footprint or choose an execution model that shares resources between requests (available in any JS, Python, Ruby, whatever you like).