HN user

iamthedata

16 karma

Walking the good walk, hacking the good hack.

Posts11
Comments7
View on HN

H.P. Lovecraft used similar imagery and atmosphere:

"The vast huddle of sagging gambrel roofs and peaked gables conveyed with offensive clearness the idea of wormy decay [...] Stretching inland from among them I saw the rusted, grass-grown line of the abandoned railway, with leaning telegraph-poles now devoid of wires, and the half-obscured lines of the old carriage roads to Rowley and Ipswich."

http://hplovecraft.com/writings/texts/fiction/soi.aspx

Gratz, Shaarli is pretty cool. Diigo is quite decent, but now I rather run Shaarli on localhost. Archival feature would be great, even if it just shells out to httrack. If used on a local machine, the disk space is not a great concern.

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.