-
-
Notifications
You must be signed in to change notification settings - Fork 301
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error 404 on Login. api/authenticate and /api/login return a 404 in web console. #591
Comments
I am seeing the exact same issue. To test that the htaccess RewriteRule is working I have directed my browser to "TaskBoard/api/login" and get this displayed:
This is generated by the re-written URL target index.php, so I am confident that my "AllowOverride" setting is correct and "mod_rewrite" is loaded. The "login" and "authenticate" targets seem to be something to do with JWT. Does this indicate I have something JWT related missing from my Apache 2.2 web server ? TaskBoard 1.02, PHP 7.4, Apache 2.2. FPM running on Synology NAS |
I have exactly the same problem after the installation. Did you find a solution? |
From what I can tell the problem @Likogann is having is because they are running nginx, which with the default setup is not supported out-of-the-box. The "files" should not exist, there is an My nginx config right now has two location blocks for TaskBoard:
Then I also have a location block catching all the php-files but that one looks a bit different on different systems so some internet searching might come up with a good match for you. From what I can tell the problem @steve-shadbolt is reporting has something to do with apache and is not the same issue. |
Describe the bug
POST https://192.168.0.101/api/authenticate 404 (Not Found)
POST https://192.168.0.101/api/login 404 (Not Found)
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Login should occur normally, and files should exist.
Screenshots
Please complete the following information:
Additional context
I downloaded v1.0.2.zip, and extracted the files to /var/www/TaskBoard.
I'm using NGINX. Conf:
server {
listen 80;
listen 443 ssl;
}
I've looked through many issues, and couldn't find anything helpfull.
I have also tried re-install taskboard. Install process:
PHP version installed: 7.2
Notice how the files DON'T exist on the server. I'm not sure what it's trying to call, but it's not there.
The text was updated successfully, but these errors were encountered: