Skip to content
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

Stuck at loading TaskBoard #607

Open
Sabari-SGK opened this issue Feb 7, 2022 · 5 comments
Open

Stuck at loading TaskBoard #607

Sabari-SGK opened this issue Feb 7, 2022 · 5 comments

Comments

@Sabari-SGK
Copy link

i am new to TaskBoard

It is stuck at loading taskboard

and ./build composer is not exists in the 1.o.x version

anyone please help me with this issue.

image

@marner2
Copy link
Contributor

marner2 commented Feb 7, 2022

Can you post up any client side javascript errors that you are getting?

@Sabari-SGK
Copy link
Author

image

Here is the image

@marcozucchi
Copy link

@Sabari-SGK @marner2 I get a similar issue, I guess the problem arises when the application doesn't find the files to render the Kanban board.

For me, the issue was that the js was trying to access files at a wrong directory level. Changing the var path in the index.html file from

var = window.location.pathname

to

window.location.pathname + '/../'

This is not an ideal solution, but it works, at least for Linux devices

@marner2
Copy link
Contributor

marner2 commented Feb 28, 2022

Yes the issue has to do with improper <base> tag settings. It's trying to automatically detect if it's in a subdirectory, but this doesn't always work.

The simplest thing to do is to manually put your own <base> tag into index.html and delete the javascript that is manipulating it there. A harder solution is to figure out exactly how you need to change the logic to make it work for your solution, and then post it here so we can handle your case.

@zajerao
Copy link

zajerao commented Oct 14, 2023

I had the same issue. Tried to install in a cpanel shared hosting with WHM access. Tried both in subdir and public_html.
Pasted the error from api error log in GPT and it said
/public_html/api/vendor/gabordemooij/redbean/RedBeanPHP/OODBBean.php
The syntax error appears to be due to the double backslashes (\) before the interface names. In PHP, you don't escape backslashes in this context. It should likely be:
class OODBBean implements \IteratorAggregate, \ArrayAccess, \Countable, Jsonable
And so I did and then I could log in. However there are many other bugs and errors after that making it hard to continue. Nevertheless, the robot fixed this one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants