Can't Log In After Installation
Describe the bug I haven't seen this one mentioned yet, so... You'll have to bear with me, because I'm an absolute novice when it comes to hosting... I try to avoid devops as much as possible because it just frustrates me, mainly. I've unzipped the TaskBoard folder to a sub-directory via FTP - my hosting comes courtesy of Dreamhost, I believe they use Apache with AllowOverride on and mod_rewrite enabled. When I try to log in, the authorize and login API calls are getting a response that just contains the HTML of my index file in the root folder.
To Reproduce Steps to reproduce the behavior:
- Unzip taskboard to sub-directory
- Attempt to log in
- In chrome dev-tools, networking tab, authenticate and login calls have response of root folder index html
Please complete the following information:
- OS: Win 10
- Browser Chrome
- Version 86
Additional context htaccess files definitely work in this hosting package, as I was using them extensively for my previous taskboard solution.
i have the exact same issue
go to /api/vendor/gabordemooij/redbean/RedBeanPHP and find OODBBean.php. Find line 33, change
class OODBBean implements\IteratorAggregate,\ArrayAccess,\Countable,Jsonable
to
class OODBBean implements \IteratorAggregate,\ArrayAccess,\Countable,Jsonable
This at least let me log in (running on XAMPP) - but I seem to get logged out randomly, dunno if it's related or a seperate issue.
also faced described issue, I found my solution here: #501
by commenting out the php_value lines in api/.htaccess :
https://github.com/kiswa/TaskBoard/issues/501#issuecomment-647173454
I also cannot log in after install. I can enter a username and password, but the "sign in" button just changes to grey when clicked and then nothing happens. I am not advanced enought to understand the web developer tools in Firefox, but the log says this:

I tried the fixes from the two previous posts, but they did not work for me.