• Resolved toarun4u1

    (@toarun4u1)


    Recently i started facing 500 error with post table , below is more info of site and page.

    Error-
    This page isn’t working
    govjobss.com is currently unable to handle this request.
    HTTP ERROR 500

    url – https://govjobss.com/job-dashboard/

    shortcode – [posts_data_table columns=’title,content,date’ content_length=”10″]

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Andy Keith

    (@andykeith)

    Hi,

    It might be that too many posts are loading, and you’re running out of memory or MySQL is taking too long to fetch the data. Could you try adding this to your theme’s functions.php file and see if this resolves?

    add_filter( 'posts_data_table_post_limit', function( $limit ) { 
       return 10;
    } );

    You’ll find this file under: /wp-content/themes/<your theme>/functions.php

    Thread Starter toarun4u1

    (@toarun4u1)

    thanks .. its working perfect now…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘HTTP ERROR 500’ is closed to new replies.