CoRNeRNoTe
CoRNeRNoTe
@bopoda, you can host free private repos on bitbucket. I recommend doing that so you aren't illegally sharing this theme. Or at least put this information into the readme so...
I get the same issue... Just can't connect to the server if the bot is running. 

> Indentation fixer change tabs into spaces, it does not change level of indent. > There are no fixer that change indentation inside array > https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues/770
Yes I understand. The issue is fixed for all purposes I require, so if we can just leave this pull request open for anyone else who encounters the problem that...
I did it using `docker compose` like this: Download the `Dockerfile` and `init-and-run-wiki` from the repo. Edit the `init-and-run-wiki` to suit. You may also need to `chmod +x init-and-run-wiki`, or...
Followup, I was able to get Bob working like this: `Dockerfile` ``` FROM node:alpine RUN npm install -g [email protected] # Setup wiki volume VOLUME /var/lib/tiddlywiki WORKDIR /var/lib/tiddlywiki # Add init-and-run...
This code seems to work for me, hope it helps. ``` class ArchiverPlugin extends Plugin { ... private function archive(Ticket $ticket) { ... // start dumping attachments: foreach ( $ticket->getThread...
Also this line won't work like you expect, because slugify replaces `/` with `-`: ``` $folder = $path . @Format::slugify ( "/$dept/$user/{$ticket->getSubject ()}_{$ticket->getNumber ()}" ); ``` Should be like this:...
While I'm here... `ArchiverPlugin::copyFile` should wrap `$file->open()` in a try/catch to prevent an exception if the file can't be loaded (say you manually deleted some files before finding this plugin)....