kiswa / TaskBoard

A Kanban-inspired app for keeping track of things that need to get done. (Don't forget to read the Wiki page!)
http://taskboard.matthewross.me
MIT License
1.38k stars 303 forks source link

not able to login #610

Open gitupth opened 2 years ago

gitupth commented 2 years ago

If i go to the login page and do admin admin there is nothing happen, still on the login login credentials. What did i wrong?

Greeting and thanks,

Hans

albertkinng commented 2 years ago

Me too. Need help!

blackr4in commented 2 years ago

the same

nishtown commented 2 years ago

I know its a bit late, but those having this issue. make sure you have all the required items like php7-sqlite. (for linux) check your /var/log/apache2/error.log and it will give you an indication as to what the issue may be and what is missing

albertkinng commented 2 years ago

Does it work for you?

Mel-meel commented 1 year ago

Me too api folder is writable Capture d’écran_2022-12-08_13-28-03 Thanks!

dwagnereh commented 1 year ago

I am having same issue with these messages below: Request URL: http://srvteampass1.essehealth.com/TaskBoard1/api/login Request Method: POST Status Code: 404 Not Found Remote Address: 10.0.1.224:80 Referrer Policy: strict-origin-when-cross-origin Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 Date: Tue, 31 Jan 2023 21:40:00 GMT Keep-Alive: timeout=5, max=91 Server: Apache/2.4.55 (Fedora Linux) Transfer-Encoding: chunked X-Powered-By: PHP/7.4.33 Accept: application/json, text/plain, / Accept-Encoding: gzip, deflate Accept-Language: en-US,en;q=0.9 Connection: keep-alive Content-Length: 56 Content-Type: application/json Cookie: teampass_session=tnbdkhmjtrjb59d5c5smgf5upm; jstree_select=17; _ga=GA1.2.126255246.1675194699; _gid=GA1.2.1392084946.1675194699 Host: srvteampass1.essehealth.com Origin: http://srvteampass1.essehealth.com Referer: http://srvteampass1.essehealth.com/TaskBoard1/ User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

Getting a 404 on authenticate / login Can any one help?

jbakuwel commented 1 year ago

Did you add AllowOverride all in your apache config? Example:

    <Directory /var/www/projects.example.com>
            Options Indexes FollowSymLinks
            AllowOverride all
            Require all granted
    </Directory>
dwagnereh commented 1 year ago

Yes I have that set for the directory and globally.

vrysa commented 1 year ago

same problem.

vrysa commented 1 year ago

did you manage to find a maintainer already?

figgis commented 1 year ago

Works without any issues for me on ubuntu 20.04 when you have installed all prerequisites (easier said then done though)

sudo apt-get install php7.4-sqlite3
sudo apt-get install libapache2-mod-php

Unzipping taskboard into /var/www/html/ and then a bunch of sudo systemctl restart apache2 and it works for me (tm)

check cat /var/log/apache2/error.log for messages when trying to log in

ign007 commented 1 year ago

apache error log: PHP Parse error: syntax error, unexpected namespaced name "implements\\IteratorAggregate", expecting "{" in /var/www/yoursite/api/vendor/gabordemooij/redbean/RedBeanPHP/OODBBean.php on line 33, referer: http://www.yoursite.net/

edit the guilty file OODBBean.php

add the missing space before the first / in line 33

done

zajerao commented 1 year ago

i think this issue is also posted under https://github.com/kiswa/TaskBoard/issues/607 differently described. editing spaces seems to fix it, cant say for more than my test.