Please provide me a temporary WP-admin login for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course we do not provide login data to third party. You can write credentials here just check Private Reply so nobody can see them except us.
I have the same issue. I updated the plugin today, but since, I can no more neither add new data, nor delete anyone. Even for the wordpress page where I put the shortcode, when updating to save I have an error (?) displayed in a popup window. This is the screenshot.
It sees to be associating the shortcode with a page and causing the error stating that the page doesnt exist. I dont see how this can happen when All I an doing is updating the table. And this is happening on any time I make changes to the table not just making it front end editable. Reading through the plugin forums I am not the only one havign issues with this.
Sorry for any inconvenience, we are investigate what cause the issue.
Can you please tell me do you have mod_securty installed on your server?
If yes, I am writing you a guide how you can disable the mod_security.
Mod_security is a security module in the Apache web server that is enabled by default on all hosting accounts.
Apache web server, scans for violations of the rules it has set.
If an action occurs that violates one of these rules, the server will throw a 406 error.
1. If you’re receiving this message when trying to save wpDataTable based on MySQL query from your WP Admin,
it means your hosting provider is restricting access to some of WordPress’ native functionality.
To solve it, contact your hosting provider to ask them to remove this restriction.
2. Adding the following to the top of your .htaccess file. (This should be a temporary measure.
You could try it just to see if it will work, but you probably don’t want to leave it.)
<IfModule mod_security.c>
SecFilterEngine OffSec
FilterScanPOST Off
</IfModule>
3. Backup your .htaccess file if you have one in the public_html directory.
Open the .htaccess file with any text editor and observe the lines between the “# BEGIN WordPress” and “# END WordPress” tags.
Make sure the lines look somewhat like the following. If not then update the file with the following content and upload it to the ‘public_html’ directory.
I contacted my hosting provider and this is not the issue. We went through everything and the mo security isnt the issue. This is getting frustrating at the VERY least......
We checked the error codes and there is not a 460 error code being thrown at all.
We succeeded to make editable table but only with "Create a MySQL-query-based table by generating a query to MySQL database" , you can check on website table id 38. We make page draft Support so you can check that is editable on frontend also.
But we still have ajax-admin 404 not found error. That file exist on your server you can check on this url http://www.yolo.webfxmarketing.com/wp-admin/admin-ajax.php return 0 so he exist. But server block that from some reason that we not understand. There are some security on server that block that ajax call.
I want to make a table front end editable. When I click apply the site crashes....
Hi jeffrey,
Thank you for your purchase.
Can you please investigate your server log and see if there is some errors?
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Hi jeffrey,
Please provide me a temporary WP-admin login for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course we do not provide login data to third party. You can write credentials here just check Private Reply so nobody can see them except us.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
I have the same issue. I updated the plugin today, but since, I can no more neither add new data, nor delete anyone. Even for the wordpress page where I put the shortcode, when updating to save I have an error (?) displayed in a popup window. This is the screenshot.
Hi jeffrey,
Can you please change the theme and see is issue is gone?
Hi Abdoulkader,
Can you please open a new ticket and we will help you?
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Still having this issue - Tried 3 different themes.....
Hi jeffrey,
We notice that you have javascript error when you try to save the table.(attachment)
Those script errors are usually a javascript problem caused by a plugin or theme.
Can you try to disable other plugins and see if issue is gone?
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
It sees to be associating the shortcode with a page and causing the error stating that the page doesnt exist. I dont see how this can happen when All I an doing is updating the table. And this is happening on any time I make changes to the table not just making it front end editable. Reading through the plugin forums I am not the only one havign issues with this.
Hi jeffrey,
Sorry for any inconvenience, we are investigate what cause the issue.
Can you please tell me do you have mod_securty installed on your server?
If yes, I am writing you a guide how you can disable the mod_security.
Mod_security is a security module in the Apache web server that is enabled by default on all hosting accounts.
Apache web server, scans for violations of the rules it has set.
If an action occurs that violates one of these rules, the server will throw a 406 error.
1. If you’re receiving this message when trying to save wpDataTable based on MySQL query from your WP Admin,
it means your hosting provider is restricting access to some of WordPress’ native functionality.
To solve it, contact your hosting provider to ask them to remove this restriction.
2. Adding the following to the top of your .htaccess file. (This should be a temporary measure.
You could try it just to see if it will work, but you probably don’t want to leave it.)
<IfModule mod_security.c>
SecFilterEngine OffSec
FilterScanPOST Off
</IfModule>
3. Backup your .htaccess file if you have one in the public_html directory.
Open the .htaccess file with any text editor and observe the lines between the “# BEGIN WordPress” and “# END WordPress” tags.
Make sure the lines look somewhat like the following. If not then update the file with the following content and upload it to the ‘public_html’ directory.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
I contacted my hosting provider and this is not the issue. We went through everything and the mo security isnt the issue. This is getting frustrating at the VERY least......
We checked the error codes and there is not a 460 error code being thrown at all.
Please advise.
Hi jeffrey,
We succeeded to make editable table but only with "Create a MySQL-query-based table by generating a query to MySQL database" , you can check on website table id 38. We make page draft Support so you can check that is editable on frontend also.
But we still have ajax-admin 404 not found error. That file exist on your server you can check on this url http://www.yolo.webfxmarketing.com/wp-admin/admin-ajax.php return 0 so he exist. But server block that from some reason that we not understand. There are some security on server that block that ajax call.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables