PHP Update Required: Cara Upgrade Versi PHP Situs WordPress

upgrade versi php situs wordpress

Upgrade versi PHP WordPress di CPanel – Apakah di halaman dasboard situs WordPress muncul peringkatan PHP Update Required atau Your server is running PHP version 5.6.40 but WordPress 6.3.2 requires at least 7.0.0? Ini disebabkan karena versi PHP Anda lebih rendah dibandingkan file WordPress.

Bagaimana mengganti versi PHP di WordPress?

Kadang kita sudah mengganti versi PHP melalui PHP Select Version di CPanel, tetapi versi PHP di situs tidak berubah. Anda bisa mengakalinya dengan menambahkan handler PHP di file .htaccess. Dengan cara ini, file PHP dapat dirubah dengan paksa. Simak caranya di bawah ini.

Mengapa Harus Upgrade Versi PHP Situs WordPress?

Keuntungan dari upgrade versi PHP adalah situs Anda akan menggunakan versi PHP terbaru. Versi PHP lama tidak akan mendukung plugin atau versi WordPress yang menggunakan PHP terbaru.

Situs juga akan mendapatkan update otomatis dari WordPress.

Jika Anda menjalankan WordPress dengan versi PHP lama, maka akan uncul pesan error seperti di bawah ini.

Ada beberapa cara upgrade versi PHP situs WordPress seperti dari file .htaccess. Anda hanya perlu mengcopy kode PHP handler di bawah ini ke file .htaccess yang ada di dalam folder website Anda.

PHP versi 5.4

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php54” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php54___lsphp .php .php5 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

PHP versi 5.6

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php56” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php56___lsphp .php .php5 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

PHP versi 7.0

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php70” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php70___lsphp .php .php7 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

PHP versi 7.1

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php71” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php71___lsphp .php .php7 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

PHP versi 7.2

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php72” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php72___lsphp .php .php7 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

PHP versi 7.3

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php73” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php73___lsphp .php .php7 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

PHP versi 7.4

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php74” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php74___lsphp .php .php7 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

PHP versi 8.0

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php80” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php80___lsphp .php .php8 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

PHP versi 8.1

php – BEGIN cPanel-generated handler, do not edit Set the “ea-php81” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php81___lsphp .php .php8 .phtml </IfModule>
php – END cPanel-generated handler, do not edit

Bagaimana Upgrade Versi PHP Situs WordPress di .htcaccess?

Di atas adalah kode PHP hanlder yang bisa digunakan untuk upgrade versi PHP situs WordPress. Ikuti langkah-langkah di bawah ini untuk cara mengganti versi PHP melalui edit file .htaccess.

Dalam panduan ini, kami menggunakan hosting Dewaweb.

  1. Buka CPanel.
  2. Klik menu File Manager.
  3. Klik public_html.
  4. Temukan file .htaccess dan klik tombol Edit.
  5. Copy dan paste salah satu PHP handler di atas sesuai dengan versi PHP yang Anda inginkan.
  6. Klik Save.

Selesai.

Sekarang Anda sudah berhasil melakukan upgrade versi PHP di situs WordPress. Perlu diperhatikan, upgrade veri PHP mungkin akan berdampak pada situs. Dalam hal trafik, Google mungkin akan menghentikan indeks sementara.

Jadi pastikan Anda sudah mengetahui akibat upgrade PHP situs WordPress.

Sekian informasi tentang cara upgrade versi PHP di situs WordPress. Silahkan mencoba dan semoga berhasil.

Leave a Reply