wordpress

Back Open Paginator
31.01.2026 17:13
threeofus (@threeofus@mstdn.social)

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




Show Original Post


31.01.2026 17:00
admin (@admin@mastodon.raddemo.host)

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 👉 blog.radwebhosting.com/top-10- #wordpress #paymentgateways #wordpressplugins #ecommerce





Show Original Post


31.01.2026 16:00
how-to-set-up-wordpress-on-your-windows-11-pc-using-xampp (@how-to-set-up-wordpress-on-your-windows-11-pc-using-xampp@geekrewind.com)

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.

geekrewind.com/how-to-set-up-w





Show Original Post


31.01.2026 15:44
obenland (@obenland@mastodon.social)

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





Show Original Post


31.01.2026 13:00
wpbot (@wpbot@wptoots.social)

Navigation Overlays, WordPress 7.0, Interactivity API Helper, AI Skills, and #WCAsia — Weekend Edition #355 gutenbergtimes.com/navigation- #WordPress #wpdev




Show Original Post


31.01.2026 09:55
threeofus (@threeofus@mstdn.social)

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




Show Original Post


31.01.2026 09:06
digigeek (@digigeek@mastodon.social)

Tips & tricks for adding Bookings to your site.
👇

@blog digi.geek.nz/website/woocommer




Show Original Post


31.01.2026 08:30
francommit (@francommit@livellosegreto.it)

Sto pensando di parametrizzare il CSS del mio tema per poter applicare diversi stili diversi. Questo è lo stile del gestionale AS400

#dev #wordpress





Show Original Post


31.01.2026 08:00
2026 (@2026@blog.narf.ssji.net)

Fixing WordPress critical errors without email

blog.narf.ssji.net/2026/01/31/

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



Show Original Post


31.01.2026 08:00
blog (@blog@sanguok.com)

WordPress服务器权限与所有权配置详解

核心概念:所有权 (Ownership) > 权限 (Permissions)

在Linux中,权限(755/644)必须配合正确的所有权(User:Group)才能生效。换言之,PHP进程(即WordPress)必须是文件/目录的“所有者”,才能在755/644权限下进行写入(上传图片、升级插件、生成缓存)。

标准化操作流程

确保位于WordPress根目录(通常为/var/www/htmlpublic_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 (超级缓存)

  1. 配置/更新插件前:chmod 644 wp-config.php
  2. 完成配置后:chmod 440 wp-config.php

(注:日常运行中,插件生成的静态文件在wp-content/cache,该目录保持755即可正常读写。)

安全风险类:WP File Manager

翻译与本地化:Loco Translate

联邦宇宙与导入类 (ActivityPub, Import/Export)

常见故障排查清单

  1. 错误:440 导致某些环境白屏

    • 如果服务器使用的不是PHP-FPM (User: www-data) 而是以CGI模式运行(User: 系统账户),将wp-config.php设为440且所有者为33可能导致文件无法被读取,引发HTTP 500错误。
    • 验证:执行完命令后,如果网站正常访问,说明配置正确。
  2. 插件更新失败 / 无法创建目录

    • 现象:后台提示“无法创建目录”。
    • 原因:通常不是权限问题(755是对的),而是所有权问题。
    • 复查:运行ls -ld wp-content/plugins,确保输出包含www-data www-data(或33 33)。如果显示的是root root,插件将无法更新。
  3. Git/开发环境

    • 如使用Git管理代码,.git目录的权限不要设置为755/644,且不应允许Web访问。
    • 建议在Nginx/Apache 配置中显式禁止访问.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 #伺服器 #自託管


Show Original Post


31.01.2026 02:40
radwebhosting (@radwebhosting@mastodon.social)

Backup Site to

This article will provide a guide demonstrating how to 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 👉 blog.radwebhosting.com/backup-





Show Original Post


31.01.2026 02:03
tresseo (@tresseo@mastodon.social)


blog.sucuri.net/2026/01/shadow




Show Original Post


1 ...306 307 308 309 310 311 312 313 314 315 316 ...816
UP