Nice try
Derek Powazek – Spammers, Evildoers, and Opportunists. This is a kind of link baiting tactic i don’t like too much: the attack hook.
This is why, for once, i’m using a nofollow attribute.
Derek Powazek – Spammers, Evildoers, and Opportunists. This is a kind of link baiting tactic i don’t like too much: the attack hook.
This is why, for once, i’m using a nofollow attribute.
Moving a website to a new hosting, i had the problem of importing the database. In fact, export was too much big (30Mb) compared to allowed size of upload files via phpmyadmin on new hosting (1Mb – where “M” maybe stands for “miserable”). Of course, no shell access…
So? Fortunately, i found BigDump, a GPL script that allows to import into the new database the exported file. Excellent!
Just got yet another spam. But this one reminded me of a funny quote.
Email’s subject was: Millions of customers can’t be wrong! (and then usual stuff about penis enlargement bla bla bla
).
Well, this is what immediately came in my mind:
(image from Cafepress)

Free-IQTest.net – IQ Test

This one is my favourite logo from Eulda 2007, European Logo Design Annual. Now, Eulda has gone global, becoming Wolda: Worldwide Logo Design Annual.
As you can see on Wolda website, you can submit your logo for Wolda ‘08: any logo printed, published or visible online between January 1, 2007 and December 31, 2007 is eligible.
On 18th Dec 2007 Avinash Kaushik, author of Web Analytics: an hour a day, wrote a post intitled Web Analytics Demistified.
On 7th Jan 2008 Eric T. Peterson, author of Web Analytics Demistified, wrote a post intitled Web Analytics: an hour a day.
You must read 23 Actionable Lessons from Eye-Tracking Studies. Now.
YouTube has PageRank 3: maybe YouTube is selling links. But if this is the case, i can see, right now, just one potential buyer…
Yesterday i spent many hours trying to fix a 302 loop with Pligg (a great piece of open source software to create a Digg clone site), so i’m gonna post here the (easy) solution, just in case someone else have same problem.
Installed Pligg and enabled search engine friendly URL (Pligg calls it URL Method 2), i had a loop of 302 redirects when i tried to visit users page.
Apache’s error log file said “Negotiation: discovered file(s) matching request: /path/to/vhost/domain.tld/htdocs/index.html (None could be negotiated).” and it should had tell me something, but i haven’t be able to look for the solution in the right place (Google is not always the best place…).
Apache’s access log file showed a bunch of 302 redirects. So, the problem was a loop of 302 redirects (and page wasn’t loaded, of course).
Where the problem was? I immediately thought to look in .htaccess file, but after i commented every single rewrite instruction i still had the problem. Then, i looked at Apache’s configuration to remember how virtual host are configured (i use VHCS on the server i installed Pligg).
At that point, something catched my eyes. In fact, vhosts have this line:
Options Indexes Includes FollowSymLinks MultiViews
In .htaccess file i had the line:
Options +Indexes +FollowSymlinks
So, looking for explanation of every option in Apache documentation, i found out that MultiViews was the option giving problems to me (more info here).
And adding -MultiViews to the line above fixed the problem. So, just change
Options +Indexes +FollowSymlinks
to
Options +Indexes +FollowSymlinks -MultiViews
if you have the same problem of 302 redirects loop.
I spent many hours to find it out, so i hope this post can save your time in case you have the same problem.