File Manager always loading, rather than show the file

mfa9884569

New Member
YetiShare User
Dec 22, 2014
6
1
1
Hi, I just install one new share script, after I use admin account login and upload files, I can't see them in the file Manager page, the webpage always loading and nothing is shown.

issue page: https://mywebsite.com/account_home.html

I already check from chrome, it looks like there's wrong URL in the page try to get the resource of "https://mywebsite.com/ajax/_account_home_v2_file_listing.ajax.php"
instead of
"https://mywebsite.com/core/page/ajax/_account_home_v2_file_listing.ajax.php"

Screenshot:
https://www.dropbox.com/s/6i55fay13ozjte9/Screenshot%202014-12-31%2006.57.23.png?dl=0

I don't know how it come, because I didn't change any code, but looks like there's some error.

How do I repair it?
 

adam

Administrator
Staff member
Dec 5, 2009
2,046
108
63
Hi,

This is likely an issue with either the .htaccess file not being there or the nginx rules not set correctly. What webserver are you using? If nginx can you post the rules you're using?

Thanks,
Adam.
 

mfa9884569

New Member
YetiShare User
Dec 22, 2014
6
1
1
Hi, adam

I already solve this problem.

It is because I remove one line about fastcgi_param, after I add it, every thing works good.

btw: Does it matter that I use unix socket
Code:
fastcgi_pass  unix:/tmp/php-cgi.sock
instead of tcp/ip?

Code:
fastcgi_pass  127.0.0.1:9000
 
  • Like
Reactions: jaouf1ouf4892

adam

Administrator
Staff member
Dec 5, 2009
2,046
108
63
Not that I'm aware of. It should be fine to run like that.