Category: Tech
-
WordPress user prior to 6.4 may want to disable attachment pages
If you are upgrading your WordPress site from any version prior to 6.4, you will have option for wp_attachment_pages_enabled configured to 1 (true). According to announcement by WordPress, you will need to modify the value manually to 0 to disable attachment page creation.
-
You shouldn’t be using any WordPress SMTP plugin
Instead, configure your web server on the Operating System level with Postfix. This is better way since Postfix will handle the rest. Also, provided if there is latency between the web server and the email provider, it will not affect your WordPress performance.
-
How can I get IPv6 when my ISP doesn’t provide it?
This is a weird question. But, for those who are wonder, you can get one by using CloudFlare WARP. This is especially a case for whom that are using WiFi in public space where it only configured with IPv4 (because it is weird for ISP not to give one since MCMC has make it mandatory).…
-
The last 5G NR Broadband You Will Ever Need
If you are looking for ultra fast internet connection, but without fiber optic cable installation, Yes 5G Wireless Broadband is the answer. I have used it for a week and the experience is good.
-
PHP Send Duplicate Key in POST data
Some Application Programming Interface (API) requires you to send multiple parameter with same key name. However, associative array in PHP only allow unique key name per each array. Subsequent assignment towards the same key will override the previously assigned values. Here is how to send duplicate key in POST data with PHP.
-
WordPress does not have IPv6 support (yet)
Amazon Web Services (AWS) has announced that there will be additional charges for the use of IPv4. The additional charges is for Elastic Classic Compute (EC2) users that are using IPv4 (either with Static or Dynamic IP Address). Previously, the use of IPv4 with EC2 is Free. If you are thinking about ditching IPv4 for…
-
How to integrate with CHIP Payment Gateway (PHP)
You are new to payment gateway integration and you wish to know on how to integrate with payment gateway. In this article, we will walkthrough the very basic things you need to know to integrate with CHIP Payment Gateway.
-
How I make simple HTTP load test
This WordPress blog is running on Amazon Web Service Elastic Compute Cloud (AWS EC2) with t2.nano instance. The web (apache + php-fpm) and database (mariadb) is put in different instance, making this blog technically running on two t2.nano instance or equivalent to one t2.micro instance.
-
Adding imagick to PHP 7.4 and 8.1 on MacOS 12.6
I’m currently preparing my brand new Macbook Air for WordPress plugin development. I have installed PHP 8.1 using homebrew, a well-known package manager for most software developers using Mac. After installing WordPress, I notice WordPress complained about missing imagick library. I tried to install but encountered an error.
-
Making PostgreSQL run on the first start of WSL 2 terminal
My daily routine involves working with Ruby on Rails with PostgreSQL as a relational database service. Thus, I will be discussing about how to automate the start of PostgreSQL service on Windows Subsystem Linux (WSL) 2.