Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What if the speed of accessing phpmyadmin is slow?

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

This article is to share with you what to do if you are slow to access phpmyadmin. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Step 1: find the version_check.php file in the phpmyadmin directory and find the following code

$save = true; $file = 'http://www.phpmyadmin.net/home_page/version.json'; if (ini_get (' allow_url_fopen')) {$response = file_get_contents ($file);} else if (function_exists ('curl_init')) {$curl_handle = curl_init ($file); curl_setopt ($curl_handle, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec ($curl_handle) }

Delete or comment out the above code and check that the upgrade takes 30 seconds. There is no need to check whether there is a new version online.

The second step is to open the. / libraries/Util.class.php file and find the following code:

Return strftime ($date, $timestamp)

Replace with the following code:

If (extension_loaded ('gettext')) return strftime ($date, $timestamp)

China can be replaced with the following code:

If (extension_loaded ('gettext')) {date_default_timezone_set (' UTC'); return gmdate ('Y-m-d timestamp + 28800);}

Principle: localized time formatting requires gettext support. If this feature is not enabled in your environment, garbled will be returned, affecting the processing of # phpmyadmin ajax.

Thank you for reading! This is the end of the article on "how to access phpmyadmin slowly". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report