At this point I don't think Wordpress is going to change their codebase into something more modern and secure. Is there any other easy to use blogging platform like it? PHP based because PHP is everywhere, based on a modern framework (symfony2, laravel, etc), jinja-like template system, support for databases other than mysql?
WordPress is now 13 years old
41–50 of 66 posts
Re: WordPress is now 13 years old
#42A few free safety and performance tips when dealing with wordpress: - Whitelist IPs for access to your wp_admin and wp_login. - If you have the skills to automate WordPress updates yourself, remove all write access (except for the uploads folder) from the user WordPress is running as (i.e. www-data). It's all just unzip and untar over the structure of the directory anyways. - If you remove write access, you might as…
Somebody maliciously making thousands of MySQL tables in your DB as some sort of DoS?
Some plugins create their own tables.
Another safety tip, don't use 'admin' as the administrator username, and don't have any posts associated with the administrator as an author.
Re: WordPress is now 13 years old
#43Re: WordPress is now 13 years old
#44Re: WordPress is now 13 years old
#45The fundamental lesson WordPress taught me is that the product wins over technology. Even back in 2004 it was clear that the internal code wasn't that great. So what? It installed delightfully quickly, and let me create posts with valid markup and good typography right out the box. And then the community management and plugin/theme ecosystem. For example, Drupal may have a more programmer-approved API, but (at least…
I was always a little bit weirded out by features for ease-of-use that required you to go against what the documentation described as security best practices.
Re: WordPress is now 13 years old
#46Earlier quoted context omitted.
Its template system is ugly. There are projects that bring modern templating to WordPress though e.g. https://github.com/tormjens/wp-blade Consider though that when its template system was "invented" there wasn't much else available and people back then used to mix code and html all the time (both PHP and ASP developers). In their attempt to keep it backwards compatible we still have to suffer through the template sy…
Timber does this too if your like your Twig. http://github.com/timber/timber Disclamer: I'm on the dev team
Re: WordPress is now 13 years old
#47The fundamental lesson WordPress taught me is that the product wins over technology. Even back in 2004 it was clear that the internal code wasn't that great. So what? It installed delightfully quickly, and let me create posts with valid markup and good typography right out the box. And then the community management and plugin/theme ecosystem. For example, Drupal may have a more programmer-approved API, but (at least…
Re: WordPress is now 13 years old
#48A few free safety and performance tips when dealing with wordpress: - Whitelist IPs for access to your wp_admin and wp_login. - If you have the skills to automate WordPress updates yourself, remove all write access (except for the uploads folder) from the user WordPress is running as (i.e. www-data). It's all just unzip and untar over the structure of the directory anyways. - If you remove write access, you might as…
The folder structure also adds some minor security through obscurity.
There are other niceties in there too.
Re: WordPress is now 13 years old
#49Earlier quoted context omitted.
Another safety tip: don't install any plugins unless you're very, very sure that they're safe. Most security problems with WordPress originate in badly written plugins, not in the core product.
If you're not going to install plugins, doesn't it neuter one of the big draws to using WordPress in the first place? Ideally there would be better separation between the plugin and core stuff, but oh well.
If you know what you're doing with it, it can be a very nice admin experience.
Re: WordPress is now 13 years old
#50At this point I don't think Wordpress is going to change their codebase into something more modern and secure. Is there any other easy to use blogging platform like it? PHP based because PHP is everywhere, based on a modern framework (symfony2, laravel, etc), jinja-like template system, support for databases other than mysql?