leem32
leem32
Oddly I can't seem to reproduce the issue I was having with the username dropdown box. I do notice, when I log into comments the sort by options box escapes...
Good point, prob not an issue then. I'll let you know if I come across the username dropdown box issue I mentioned in the op :)
I've tried destroying remark image and container and tried backup, and restore comments, neither worked. Is updating avatar paths of old comments not possible?? I'll just have to delete them...
@paskal, will do. At the moment I'm having trouble removing comments. If I stop remark42, delete all remark comment backups inside the container, delete the container, delete the remark image,...
Deleting then reinstalling the Remark42 git repo on the host removed comments. There is a copy of all comments inside the remark42 git repo on the host which I wasn't...
I recently had to move Remark42 over to a new server (mywebsite.com/comments -> comments.mywebsite.com). The move was straightforward enough, but there are a couple of things that are worth documenting...
No, I didn't try that.
The cause of this error is 'spl_autoload_register' in like.php fetching the wrong path. When 'spl_autoload_register' gets the classes it also gets the namespace. So from the current directory, it then...
@paradox70 Weird, this fixes the issue for me on windows localhost using PHP 7.1.1. Try opening dev tools (f12) then click the like button and in dev tools click the...
Yes , both of those paths are wrong. Try ``` $file_name = __DIR__ . "\/" . strtolower($class_name) . '.php'; ``` or ``` $file_name = __DIR__ . "/" . strtolower($class_name) ....