realodix / urlhub

✂️ URL shortener web application based on the Laravel PHP Framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The data is not displayed in the manager.

Terrorboy opened this issue · comments

urlhub
-No console error
-Network tap data call complete

  • The same symptom occurred in 'All URLs', 'All Users'

hub

I changed it like an image and processed it.

image

commented

In the screenshot, I saw the status stopped at "Processing".

Sorry, I cannot reproduce this issue. Data is processed and displayed as expected.

  • Chrome 85.0.4183.102
  • urlhub version: latest(5e891df)
  • phpinfo: delete
  • DB: MariaDB 10.3.24
  • nginx setting:
server {
    listen       80;
    server_name o0o.st www.o0o.st;
    return 301 https://$host$request_uri;
}
server {
    listen       443 ssl http2;
    server_name o0o.st www.o0o.st;
    root    /home/workspace/url/public/;
    index index.php;

    ssl_certificate "/~/fullchain.pem";
    ssl_certificate_key "/~/privkey.pem";
    ssl_dhparam "/~/dhparam.pem";

    add_header Strict-Transport-Security "max-age=31536000";

    # Set caches, protocols, and accepted ciphers. This config will merit an A+ SSL Labs score.
    ssl_session_cache shared:SSL:20m;
    ssl_session_timeout 10m;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_prefer_server_ciphers on;
    ssl_ciphers 'ECDH+AESGCM:ECDH+AES256:ECDH+AES128:DH+3DES:!ADH:!AECDH:!MD5';

    location / {
        try_files $uri $uri/ /index.php?/$args;
    }

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+?\.php)(/.*)$;
        fastcgi_pass unix:/run/php/php7.4-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

urlhub

urlhub2

What more information do you need?

commented

I wrote several tests on this issue, all of which passed the test.

Test
#738/files#diff-3dee2ee

Result
https://github.com/realodix/urlhub/runs/1112259617

I don't think it's a browser problem
serverSide: true, Is there a problem with this option?
Just remove the option or change it to false.

I don't know why.

commented

Since it is related to datatables and server-side is implemented through the laravel-datatables, I think you could report to yajra/laravel-datatables.

I will report to yajra/laravel-datatables

Thank you!