Hi! For the ones of you that use Trello, I made a simple to use and host alternative in PHP. It's not a complete alternative like other projects, and I mainly made it to be able to host it on free PHP web servers while having control over data/attachments. It also support a basic importer for Trello JSON exports.
I'm hosting a test instance here, you can make an account to try it out (no email required):
It is, but also it's worrisome since it means support is harder, which means risk of abandonment is higher and community contributions lower. Which means "buying in" is riskier for the time investment.
Not really criticizing, 10/10 points on making something and then putting it out there, nothing wrong with that. Just being a user who's seen too many projects become stale or abandoned, and have noticed that the trend has some correlation to the technology choices those projects made.
Actually a pretty cool project. Its smooth and works exactly how i would expect. Hopefully some companies use it and contribute money or code so you can keep improving it.
Hey! I see lot of people here hating on PHP, but I totally get what is you goal here and I love it!
I don't really like PHP myself, but I absolutely love that I can litteraly spin up a LAMP stack OSS in like 15 minutes on a shared hosting if it's mostly "copy files, edit config.php, init db, done".
Some modern setup which are required to run on VPS that are supposedly easier since they run in docker are just so cumbersome to install... Like you need 6 api keys for 3 different cloud services and 12 containers configured in a docker-compose.yml just to try a local instance...
The app seems great.
@[email protected] I'm getting an error when trying to create the DB tables: Reason:
SQL Error [1273] [HY000]: (conn=517001) Unknown collation: 'utf8mb4_0900_ai_ci'
That is the character set and collation that should be used, and your DB probably don't support it. You can try by leaving the default by removing "CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci" inside init_db.sql, anywhere you find it.
To make it work, I had to remove some things from the script, which didn't work for me:
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci (like you suggested)
COMMIT; (In Alter Tables, since as far as I remember, DDL commands don't need to commit, only the DML ones. So I did the commit manually)
If I need to remove the registration, do I have to update the Value column on tarallo_settings table or are there any settings' menu which I'm not seeing?