-
Notifications
You must be signed in to change notification settings - Fork 252
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 500 - Pathfinder Database issues #701
Comments
The only two tables that I am missing that have a 'description' column is the system Table and the system_signature Table.... just a little digging I did backend... |
Does that: |
@WildStrawberryEVE where would I find that line?!? I cant find the file that contains that... |
@anesbit it's a mysql command. You would have to log in to your pathfinder database with mysql client and to issue that command |
I get this error on database creation... during the setup tables in the /setup directory of my server |
According to MySQL the tables were never created... Database changed |
I need to figure out where the creation SQL is stored so i can edit it... but I don't know where to find it |
same error for since update from 1.4.0 to 1.4.2
|
@hagbartx if you are doing a update you should be able to run this mysql command within your pathfinder database and fix the error: ALTER TABLE system MODIFY COLUMN description text NOT NULL DEFAULT ''; It dosen't work for me because its a fresh install. |
@anesbit i tried:
I fixed it by deleting the column and create a new description column with the same type as the description column in system_signature table. |
Glad to hear @hagbartx If anyone else is installing a fresh install you can login to your mysql database and use your 'pathfinder' database and apply this code in the console to fix this error. CODE
|
Thanks for hint @exodus4d |
I ran into this error while setting up a fresh Pathfinder instance on a clean image of Ubuntu 18.10 w/ MySql ( Here's what the Nginx error logs had:
Within the db the I ended up using a dump of an old After doing this the "Setup tables" and "Fix columns/keys" steps worked fine.
Edit 1 The
Edit 2 Altering the column to be
This at least allows system creation to function properly. My users don't use the description feature much, if at all, so I'm guessing this workaround will have low impact even if we might miss out on some cool stuff that's been going on there. |
Once I got this going, I saw a similar message pop up while trying to build system indexes:
Running this in
I'm guessing that these issues are related to some changes in the way Here's a list of version numbers for the core environment binaries I'm running on. Ubuntu: All packages were installed via |
The @fivesixzero interesting thing with the |
I am trying to get the pathfinder database installed when I get...
https://prnt.sc/l3wgqp
Error - 500
'Column 'description' of type TEXT can't have a default value.'
Database Type:
MariaDB v.10.2
Any help fixing this would be awesome!
Thanks
DJDeath
The text was updated successfully, but these errors were encountered: