简体   繁体   中英

Datatable works fine on local but on production i have error?

I have an issue when I put Laravel app on production server with Yajra Datatables. I have strange issue Invalid JSON response with status code 200 in my debug. This extension works fine on my local Linux server but in production I have this error and i can't find any solution. Please any help. This is my code.

   var table = $("#excel_table").DataTable({
        "processing": true,
        "bSort": false,
        "serverSide": true,
        "paging": false,
        "scrollX": true,
        "scrollY": "500px",
        "paging": "true",
        'dom': 'Rlfrtip',
        'colReorder': {
            'allowReorder': false
        },
        "ajax": {
            "url": "{{ route('admin.getdata') }}",
            "type": "POST",

        },

        "columns": [
            {
                'data': 'id',
                'name': 'id',
                'visible': false
            },
            {
                'data': 'action',
                'name': 'action'
            },
            {
                'data': 'kw',
                'name': 'kw'
            },
            {
                'data': 'startdatum',
                'name': 'startdatum'
            },
            {
                'data': 'enddatum',
                'name': 'enddatum'
            }]
          )}

Try to Debug from the console and network tab from your browser. 1. Check the Yajra Datatables script loaded properly or not on the production 2. Check the Yajra Datatables needs any extra extension or not. Debug this on the network section on chrome debug. 3. Check the response on the network see what is the response on this request (Please APP Debug TRUE from.env before debugging)

I solved my issue when i changed my hosting. I was on shared hosting and when I changed to VPS everything works fine.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM