[021] Real time chat [Deleted]

.


You should configure your server and start chat server or, if you can't, buy installation service
don't work ;(
 
changing this now when I go to the forum root no more errors come out. But if I try to write error it comes out
 
.If you do not provide me with an error, I cannot help you.
1 if I try to write, the error mentioned above comes out
2 if I try to reach stroia chat the 404 page not found error is output
3 the chat in lock

help please
 
you can switch the type of communication to long polling. It does not require additional configuration.

It didn't require additional configuration on previous versions. Now it does. After the last patch I had the same error ("Failed to load resource: the server responded with a status of 404 (Not Found)"). And yes, the type of communication is long polling.
 
  • Like
Reactions: 021
It didn't require additional configuration on previous versions. Now it does. After the last patch I had the same error ("Failed to load resource: the server responded with a status of 404 (Not Found)"). And yes, the type of communication is long polling.
I don't know why, but the problem on solves by deactivating the friendly urls
 
. @TFW, @Luca.M, about problem with full friendly URL and /forum directory:

If your forum located in not root directory (for example, /forum), your nginx config for full friendly URL's should look like this
NGINX:
location /forum {
    try_files $uri $uri/ /forum/index.php?$uri&$args;
}

But not like this
NGINX:
location /forum {
    try_files $uri $uri/ /index.php?$uri&$args;
}
 
  • Like
Reactions: TFW
Top Bottom