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):
https://trytarallo.altervista.org/
And the repository with other instructions is here:
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?
No there aren’t just disable it from tarallo_settings!