|
|
|
|
|
by sebsauvage
4866 days ago
|
|
Looks nice, but again...: * another closed source service ?
* Are there import/export options ?
* There is not even a RSS feed ?
Sorry for looking like parasiting a topic, but I need to rant: I'm sick of close-source online bookmarking services, especially when I can't import/export all my data. So I'm moving away from them. I want to have control. This my data.I developed my own bookmarking application, Shaarli (opensource, bookmarklet, html import/export, private links, tag cloud, picture wall, "daily" digest and many other features).
http://sebsauvage.net/wiki/doku.php?id=php:shaarli My own instance is: http://sebsauvage.net/links/ I don't say hosted services are bad, but I'm definitely done with them. |
|
With 0.0.40 beta, I was having the problem about "Wrong login/password" and "Wrong token". It would be great if you could apply the fix described by this user:
lgaggini, 2012/11/10 18:59, http://sebsauvage.net/wiki/doku.php?id=php:shaarli:discussio...
> I host last beta of shaarli (0.0.40) on my local network and I access it by custom name defined in clients hosts file and relative virtual host configuration in my nginx web server. My browser is Chromium (22.0.1229.94 (161065)). After the first configuration, every time I try to login I receive the Wrong login/pass error. After some investigation and debugging I discover a problem with cookie management (only in Chromium, in Firefox all work flawlessly). With the default code and Chromium, the cookie is correctly written by the browser, but it's not retrieved so all checks performed on sessions value (mainly tokenOK() and isLoggedIn()) fail. To fix I have to replace, in the main code index.php, the session cookie path parameter, from dirname($_SERVER[“SCRIPT_NAME”]).'/' to dirname($_SERVER[“SCRIPT_NAME”]) (short story, i remove the trailing /). I hope to help someone else with similar problem. Regards and keep up the good work.