Reputation: 696
I had Drupal 7 and when I want to delete user, an error occurs:
AJAX HTTP error occurred.
HTTP status code: 200 Debug information below.
Path : /batch?id=1594&op=do
StatusText: OK
ResponseText : #Screenshot
Upvotes: 0
Views: 2399
Reputation: 696
It was a server error so Drupal send many request at once but the server have a miximum execution time. I suggested for my client to change it and it works fine now.
Upvotes: 1
Reputation: 693
You have 'exit' or die() or "echo" placed somewhere in your template files. I had this issue multiple times and all times i had come across this problem. That's the only reason due to which ajax breaks because error is not displaying 200 code. That means that things are correct. Only issue is echo/die/exit placed at some unexpected place.
Upvotes: 0