So I’ve been learning #11ty for about 3 hours now. I’ve successfully:
✅ installed node.js
✅ made a project directory
✅ installed eleventy
✅ created some templates
✅ viewed them on a local webserver
✅ implemented a layout file
✅ created a directory data file
I’m not gonna lie, this is like teaching algebra to a one year old. The only way I’m gonna get a portfolio up by tomorrow night is to revert back to #wordpress 😬
#work
Top 10 #WooCommerce Payment Gateways This article provides the top 10 WooCommerce payment gateways for .
READ ALSO: 10 Best Open Source Shopping Carts Ranked for 2025
If you're running an online store with WooCommerce, choosing the right payment gateway is crucial. It affects your checkout experience, conversion rates, and how easily you can scale globally. Whether you're just launching or looking ...
Continued 👉 https://blog.radwebhosting.com/top-10-woocommerce-payment-gateways/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #wordpress #paymentgateways #wordpressplugins #ecommerce

How to Set Up WordPress on Your Windows 11 PC Using XAMPP
This guide explains how to install WordPress on a Windows 11 computer using XAMPP, a local web server software. It covers installing XAMPP, creating a database, downloading and setting up WordPress, and running the installation through a web interface. Users can experiment with WordPress offline, without an internet connection.https://geekrewind.com/how-to-set-up-wordpress-on-your-windows-11-pc-using-xampp/

With @claudeai’s app I was able to fix #WordPress Plugin Directory feedback from my phone while listening to a #FOSDEM talk.
I guess next would be a wordpress.org MCP that lets me resubmit my updated plugin? 🙂

Navigation Overlays, WordPress 7.0, Interactivity API Helper, AI Skills, and #WCAsia — Weekend Edition #355 https://gutenbergtimes.com/navigation-overlays-wordpress-7-0-interactivity-api-helper-ai-skills-and-wcasia-weekend-edition-355/ #WordPress #wpdev
So I’ve still got to produce this design portfolio thing for a #job application and all I’ve done so far is think about which platform I want to use. Given that I have less than 48 hours to build and populate the thing I really ought to just knock out a #Wordpress site as I’ve been working with that for years… but I have this massive itch to use @11ty . I’ve never truly mastered CSS so styling the thing will be interesting and I’m a pretty lousy dev but I can’t resist.
#11ty #blog #work
Tips & tricks for adding #WooCommerce Bookings to your #WordPress site.
👇
@blog https://digi.geek.nz/website/woocommerce-store-next-level-with-bookings/
Sto pensando di parametrizzare il CSS del mio tema per poter applicare diversi stili diversi. Questo è lo stile del gestionale AS400

Fixing WordPress critical errors without email
https://blog.narf.ssji.net/2026/01/31/fixing-wordpress-critical-errors-without-email/This blog runs on Wordpress. And the other day, it had a critical error.
tl;dr:
* Activating WP_DEBUG mode allowed me to get PHP stacktraces in the HTML.
* It was due to a plugin compatibility issue; moving its directory out of the way to disable it fixed the issue.
#Wordpress
WordPress服务器权限与所有权配置详解
核心概念:所有权 (Ownership) > 权限 (Permissions)
在Linux中,权限(755/644)必须配合正确的所有权(User:Group)才能生效。换言之,PHP进程(即WordPress)必须是文件/目录的“所有者”,才能在755/644权限下进行写入(上传图片、升级插件、生成缓存)。
标准化操作流程
确保位于WordPress根目录(通常为/var/www/html或public_html)下执行。
第一步:修正所有权
对当前目录下所有文件的所有者和组,行统一之设定。兹以33 (www-data) 为例(后文同此)。
chown -R 33:33 .
第二步:批量重置目录权限
按:使用+模式代替\;可显著提高执行效率。
find . -type d -exec chmod 755 {} +
第三步:批量重置文件权限
find . -type f -exec chmod 644 {} +
第四步:关键文件安全加固 (Hardening)
针对敏感文件设置更严格的只读权限。
# wp-config.php 包含数据库密码,生产环境应设为 440 或 400
# 前提:文件所有者必须是 PHP 运行用户,否则设为 400 后 PHP 无法读取将导致网站无法访问
chmod 440 wp-config.php
# .htaccess 控制伪静态,通常设为 644,若不频繁修改可设为 604
chmod 644 .htaccess
针对部分具体插件的特殊分析
按,任何要求设置777权限的插件通常都存在设计缺陷与安全隐患。
但在应用上述“严格权限”时,以下插件模块可能会遇到权限阻碍:
缓存类:Super Cache (超级缓存)
wp-config.php写入开启缓存的定义代码,并修改.htaccess。wp-config.php被设置为440时,插件后台更新设置会报错或白屏。chmod 644 wp-config.phpchmod 440 wp-config.php(注:日常运行中,插件生成的静态文件在wp-content/cache,该目录保持755即可正常读写。)
安全风险类:WP File Manager
www-data身份操作服务器文件(上传Webshell),此时440或644设置将失效。翻译与本地化:Loco Translate
wp-content/languages 目录生成.po/.mo文件。chown -R 33:33 .执行正确,标准755目录权限即可满足需求。如果无法保存翻译,通常是所有者变成了root。联邦宇宙与导入类 (ActivityPub, Import/Export)
wp-content/uploads。ls -ld wp-content/uploads检查权限是否为drwxr-xr-x (755)且所有者为www-data。常见故障排查清单
错误:440 导致某些环境白屏
wp-config.php设为440且所有者为33可能导致文件无法被读取,引发HTTP 500错误。插件更新失败 / 无法创建目录
ls -ld wp-content/plugins,确保输出包含www-data www-data(或33 33)。如果显示的是root root,插件将无法更新。Git/开发环境
.git目录的权限不要设置为755/644,且不应允许Web访问。.git目录。推荐操作脚本
确认在WordPress根目录后,按顺序执行:
# 1. 修正所有权 (Debian/Ubuntu常用www-data,即id 33)
chown -R 33:33 .
# 2. 修正目录权限
find . -type d -exec chmod 755 {} +
# 3. 修正文件权限
find . -type f -exec chmod 644 {} +
# 4. 加固配置文件 (注意:配置 Super Cache 插件时可能需临时改为 640/644)
chmod 440 wp-config.php
# 5. 确保 .htaccess 对 WP 可写但安全
chmod 644 .htaccess
#Linux #WordPress #伺服器 #自託管Backup #WordPress Site to #Microsoft #OneDrive
This article will provide a guide demonstrating how to #backup WordPress Site to Microsoft OneDrive. This feature is available for all WordPress Hosting plans.
Backup WordPress Site to Microsoft OneDrive
This page will guide you to add Microsoft OneDrive as your backup location in Softaculous.
Note : Backup on OneDrive feature has been added to all WordPress Hosting plans.
The following guide will ...
Continued 👉 https://blog.radwebhosting.com/backup-wordpress-site-to-microsoft-onedrive/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.social
