WordPress узнать версию php

Как узнать версию php wordpress

Сайт компании

Пакет «Магазин»

Помощь по Elementor (WordPress)

Как узнать версию php wordpress

  1. Через панель управления хостингом. Если ваш сайт находится на общем хостинге, то вы можете найти версию PHP в вашей панели управления хостингом. Обычно это делается через раздел настроек PHP или PHP-версий.
  2. Через плагин. Вы можете установить и активировать плагин PHP Compatibility Checker, который позволяет проверить совместимость вашего сайта WordPress с разными версиями PHP. В этом плагине также указывается текущая версия PHP, которую использует ваш сайт.
  3. Через файлы WordPress. Вы можете открыть файл функций functions.php своей темы и добавить следующий код:

Сохраните изменения и загрузите файл обратно на сервер. Затем откройте этот файл в браузере, добавив к его имени «.php». Например, domain.com/functions.php становится domain.com/functions.php. Вам будет показана информация о версиях PHP, используемых на вашем сервере.

  1. Через панель управления WordPress. В версии WordPress 5.2 и более поздних версиях вы можете найти информацию о версии PHP в панели управления WordPress. Зайдите в раздел «Панель состояния» (Status), где будет указана текущая версия PHP и его совместимость с версией WordPress.
Читайте также:  Ajax php return error

Независимо от того, какой способ вы выберете, обновление до последней версии PHP может повысить производительность вашего сайта и улучшить его безопасность.

Источник

Как узнать версию PHP сайта — 2.5 способа

Сейчас покажу как быстро узнать какая версия PHP установлена на сервере для сайта.

Да, я не ошибся: PHP на сервере для сайта, т.к. современные хостинги предлагают возможность ставить для каждого сайта в отдельности свою версию PHP.

Способ 1: через файл

Это самый сложный способ. Но начну инструкцию именно с него, т.к. такой вариант универсальный и подойдет абсолютно всем.

Открываем стандартный блокнот Windows или любой редактор кода (Notepad++, Sublime Text, WebStorm, Atom и прочее) и вставляем этот кусок кода:

Все. Просто сохраняем этот файл с названием phpinfo.php и закидываем его в корень своего сайта по FTP. Там обычно у вас лежит файл robots.txt, фавикон и прочее.

Файл phpinfo.php в корне сайта WordPress

Остается открыть этот файл в браузере. Пишем site.ru/phpinfo.php , где site.ru — это ваш домен.

Как узнать версию PHP сайта

Сразу в шапке пишет, что у меня версия PHP 8.0.3

Задача решена . Файл phpinfo.php можно удалить, т.к. он уже не нужен.

Способ 2: через панель хостинга

В самом начале обратил внимание, что на современных хостингах можно задавать каждому сайту свою версию PHP? Покажу на примере двух популярных в русском сегменте интернета хостингов.

Первый Beget, на котором у меня почти все проекты. В панели перехожу в пункт «Сайты».

Захожу в Сайты

Здесь меня интересует иконка шестеренки напротив нужного сайта.

Иконка шестеренки

И во всплывающем окне видим текущую версию PHP и тут же можем сменить ее на любую другую из доступных: клик по стрелке и появится выпадающий список.

Версия PHP сайта на Beget

А теперь на примере Спринтхост . У них немного по-другому все сделано. Здесь ты создаешь виртуальные сервера и уже на них размещаешь сайты.

Версия PHP сервера на Спринтхосте

Суть уловили? Если у вас другой хостинг, то все-равно будет что-то похожее на представленное выше. Могут отличаться названия пунктов или добраться до настройки сложнее.

Способ 0.5: для сайтов на WordPress

Половинчатый, но полностью рабочий способ, т.к. он актуален только для сайтов на CMS WordPress.

Заходим в админку и в боковой консоли Инструменты > Здоровье сайта > Информация > Сервер

Узнаем версию PHP сайта на WordPress

У меня на сайте версия PHP 7.4.8

И еще. Если у вас слишком старая версия PHP, то WordPress вас предупредит прямо на первой странице админки вот таким сообщением:

Сообщение WordPress о версии PHP

Остались вопросы? Добро пожаловать в комментарии.

Привет. Я автор этого блога и ридера вебмастеров/SEO-специалистов WMSN.ru Можешь оставить свой вопрос в комментариях к статье или предложить идею для новой статьи. Не стесняйся.

Источник

How to Check Your WordPress PHP Version

Kingsley Ubah

Kingsley Ubah Last updated Jan 28, 2022

PHP is the programming language that drives a WordPress site. Being the most fundamental part of a WordPress site, PHP greatly affects the website’s security, speed, performance, and SEO ranking.

In this article, I’ll explain to you what PHP is and tell you why it is important to regularly check for updates. Then I’ll give you a step-by-step guide to the various ways to check for your current WordPress PHP version.

What Is PHP?

PHP, which stands for PHP: Hypertext Preprocessor, is a popular programming language used to build websites. It’s specifically used to write page-related programs that run on the web server.

Every WordPress site is primarily built on four kinds of code; these are HTML, CSS, JavaScript, and PHP.

HTML and CSS are responsible for the look and presentation of content within the website. This includes text formatting, page layout, font selection, colours, positioning, and so on.

JavaScript and PHP are responsible for what the website does. Common tasks performed with both JavaScript and PHP include user validation, submitting a form to the server, UI and page modifications, and so on. However, unlike PHP, JavaScript primarily runs in the web browser.

So whenever you request a WordPress site or page, there are definitely some PHP programs running in the background to generate your requested HTML. PHP files end with a .php extension.

For example, here’s an image showing some PHP programs responsible for performing specific tasks in a WordPress site:

PHP files

Most WordPress themes and plugins are primarily built with PHP. For this reason, using the right PHP version for your WordPress site is of great importance.

The Importance of Having an Up-to-Date Version of PHP

PHP has undergone so many changes and updates over the years, and this will continue in the future. Each PHP version comes with new improvements. Simply put, newer is better when it comes to PHP.

As a result of the frequent updates, using an old version of PHP on your WordPress site will leave your site vulnerable to software incompatibility, security threats, and even speed and performance-related issues.

In fact, PHP 8 is proven to be twice as fast as any previous version of PHP. Some new syntax was also introduced to allow for cleaner PHP code.

To avoid becoming a victim of potentially devastating security breaches and code breaks, it is highly advised to check and update to a recommended version of PHP for your WordPress sites.

How to Find the Latest Available Version of PHP

The first step in the process of updating your PHP version is finding out the latest available and supported versions of PHP. For such information, go to php.net.

php.net provides a wealth of information regarding the release dates of supported PHP versions and how long they’ll be supported.

Supported PHP Versions

To know the specific PHP requirements for WordPress, visit the WordPress requirements page. There you’ll get detailed information about everything that’s required to successfully run WordPress on your computer, including information on what version of PHP to install.

PHP requirements for WordPress

At the time of writing, a PHP version of 7.4 or higher is required to run WordPress, but that requirement will surely change in the future.

How to Check for Your Current WordPress PHP Version

There are various ways to check for the current PHP version on which your WordPress installation is running.

The quickest way to check your WordPress PHP version is to use the Site Health area, which you’ll find under the Tools section in your WordPress admin panel.

After logging into your WordPress admin, go to Tools > Site Health > Info > Server. There you’ll find the PHP version on which your WordPress site is currently running.

Your PHP version

Another way to check your PHP version is with the use of a dedicated plug-in. The Display PHP version plug-in can be used to display the currently installed PHP version in the At a Glance admin dashboard widget.

To use the plug-in instead, simply go to Plugins > Add New. Under the search bar, search for Display PHP version. Click on Install, and then after installation, click on Activate.

Display PHP version

Once activated, it will display your PHP version on the At a Glance section inside your WordPress dashboard.

At a Glance section in admin dashboard

If you are using a hosting manager such as Bluehost or SiteGround, you can also check your cPanel, hosting management, or site tools area to find the PHP version.

Wrapping Up

In this article, we defined what PHP is, stated its importance to WordPress, and talked about the benefits of installing an up-to-date PHP version to run your WordPress site.

We also walked through two processes for checking for the PHP version in WordPress, using the Site Health section and the Display PHP Version plug-in respectively.

Источник

Оцените статью