phpmyadmin shows Error in processing request popup
Asked Answered
P

14

11

When I open the table in phpmyadmin and try to do anything with database it shows the below error in popup, how can i resolve this?

Error in processing request
Error text: error (rejected)
It seems that the connection to server has been lost. Please check your network connectivity and server status.
Polyvinyl answered 20/4, 2018 at 5:26 Comment(2)
Please check your network connectivity and server status.Stratigraphy
Often you find something useful in the server logsJeepers
H
8

Change the address in your browser from "localhost" to "127.0.0.1".

Hilliard answered 26/5, 2018 at 23:9 Comment(2)
What's the point of this answer? You don't even know if he's running phpmyadmin locally.Dexterous
not using eitherOaks
H
8

I had the same problem in chrome.

Reboot PC not helped, increase post_max_size not helped.

So, i open phpmyadmin in mozilla, and error was gone.

Problem was in AdBlock extension and table name include text "ads".

I allowed http://localhost/phpmyadmin in AdBlock and error was gone, hope, this will be helpful.

Halcyon answered 25/3, 2021 at 13:18 Comment(0)
G
6

This problem could be due to default limit of importing SQL file into the MYSQL. you need to increase default size limit. For that open php.ini file and change post_max_size value and save the file. and restart the xampp and try re upload the same file.

Ganley answered 13/7, 2018 at 4:48 Comment(1)
This must be the best answer. ThanksTranspacific
S
3

I had this error, I had script blocking enabled for the page, with Noscript.

When I allowed the javascripts on the page, the error disappeared.

Sleep answered 20/7, 2018 at 17:33 Comment(0)
D
0

I have this Warning just when i come back to my laptop after putting it to 'sleep'. It seems to be an 'network connectivity' advise.

Danieladaniele answered 15/5, 2018 at 10:55 Comment(1)
I think it has to do with ajax and CORS. Observed the problem with plesk phpmyadmin integrations.Oaks
S
0

I had the same problem with my PHP MYADMIN.there are two ways to do this. first, you can change your URL "localhost"> "127.0.0.1" or I changed memory_limit to -1 in php.ini file. And now the problem is fixed :).

Stanfordstang answered 4/2, 2021 at 17:9 Comment(1)
That is essentially the same as the top voted answer from two years ago. Could you share what the second way is to solve the problem?Edeline
S
0

Cookies...

For my part, it was a very long list of cookies that cause the problems.

My phpmyadmin was a docker running on the same port as a lot of other docker, one at a time. The cookie list was growing, being too big for the browser/server/...

The problem was visible since in private windows, or using another browser show no problem.

Cleaning my cookies was (part of) the solution.

Septicidal answered 24/4, 2023 at 8:53 Comment(0)
K
0

In my case it was Trend Micro blocking it with this rule:

1000608 - Generic SQL Injection Prevention

I could see that phpmyadmin was sending xhr requests in the background to /lint.php which were getting blocked. Once I set the rule to detect only and pushed the policy, it started working.

Kaliningrad answered 22/5, 2023 at 12:9 Comment(0)
E
0

I just getting this error, the problem is in the database. I copy my database with another name and all is fixed.

Epode answered 8/6, 2023 at 4:3 Comment(1)
after a day I tried to open the table in my old database and no problem, it's back as normal.Epode
C
0

This error occured because your xampp control panel MySQL is not on or enable. Soenable it then this error automatically solve.

Chet answered 13/3 at 7:11 Comment(0)
J
0

In my case it was caused by ModSecurity blocking the request. You can see the logs in log/apache2/error.log or in log/apache2/modsec_audit.log.

So I added to /etc/modsecurity/modsecurity.conf a rule for an exception:

# phpMyAdmin
SecRule REQUEST_URI "^/phpmyadmin" id:1,phase:1,nolog,allow,ctl:ruleEngine=Off

Then restarted the server

service apache2 restart
Jeepers answered 11/4 at 9:47 Comment(0)
C
0

I had the same issue on my server and it turned out to be the Cloudflare WAF. I fixed it (temporarily) by switching off the 'Cloudflare Managed Ruleset' and 'Cloudflare OWASP Core Rules' within Managed Rules, in the WAF section which sits under the Security menu on the domain level view.

Cimino answered 23/7 at 10:28 Comment(0)
D
-1

neither of the above worked for me so I still have the problem but a faster a faster solution I used
is to use The SQL CREATE TABLE Statemet CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, .... );

Darn answered 6/3, 2021 at 19:51 Comment(0)
D
-1

Update:

After SSL installation the issue solved automatically.

I still getting this bad error and couldn't find and fix it.

Server type: MySQL Server version: 8.0.27-0ubuntu0.21.04.1 - (Ubuntu) Protocol version: 10 Server charset: UTF-8 Unicode (utf8mb4)

Apache/2.4.46 (Ubuntu) Database client version: libmysql - mysqlnd 7.4.16 PHP extension: mysqliDocumentation PHP version: 7.4.16

phpMyAdmin Version information: 4.9.10

Dyane answered 15/2, 2022 at 10:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.