Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. Migration failed
  2. JSON Decoding Failure — Our AJAX request was expecting JSON but we received something else. Often this is caused by your theme and/or plugins spitting out PHP errors.
  3. If you can edit the theme or plugins causing the errors, you should be able to fix them up, but if not, you can set WP_DEBUG to false in wp-config.php to disable errors from showing up. (#144)
  4. View error messages
  5. Unable to connect to the remote server, please check the connection details - 404 Not Found (#129 - scope: process_push_request)
  6.  
  7. {"wpmdb_error":1,"body":"Unable to connect to the remote server, please check the connection details - 404 Not Found (#129 - scope: process_push_request)"}
  8.  
  9. <Files "admin-ajax.php">
  10. SecFilterEngine Off
  11. SecFilterScanPOST Off
  12. </Files>
  13.  
  14. # BEGIN WordPress
  15. <IfModule mod_rewrite.c>
  16. RewriteEngine On
  17. RewriteBase /
  18. RewriteRule ^index.php$ - [L]
  19. RewriteCond %{REQUEST_FILENAME} !-f
  20. RewriteCond %{REQUEST_FILENAME} !-d
  21. RewriteRule . /index.php [L]
  22. </IfModule>
  23. # END WordPress
  24.  
  25. <Files *.php>
  26. deny from all
  27. </Files>
  28. <Files wp-tinymce.php>
  29. allow from all
  30. </Files>
  31. <Files ms-files.php>
  32. allow from all
  33. </Files>
  34.  
  35. # Only allow direct access to specific Web-available files.
  36.  
  37. # Apache 2.2
  38. <IfModule !mod_authz_core.c>
  39. Order Deny,Allow
  40. Deny from all
  41. </IfModule>
  42.  
  43. # Apache 2.4
  44. <IfModule mod_authz_core.c>
  45. Require all denied
  46. </IfModule>
  47.  
  48. # Akismet CSS and JS
  49. <FilesMatch "^(form.js|akismet.js|akismet.css)$">
  50. <IfModule !mod_authz_core.c>
  51. Allow from all
  52. </IfModule>
  53.  
  54. <IfModule mod_authz_core.c>
  55. Require all granted
  56. </IfModule>
  57. </FilesMatch>
  58.  
  59. # Akismet images
  60. <FilesMatch "^logo-full-2x.png$">
  61. <IfModule !mod_authz_core.c>
  62. Allow from all
  63. </IfModule>
  64.  
  65. <IfModule mod_authz_core.c>
  66. Require all granted
  67. </IfModule>
  68. </FilesMatch>
  69.  
  70. Options -Indexes
  71. Deny from all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement