848 reputation
212
bio website
location
age
visits member for 11 months
seen Apr 29 at 15:05
stats profile views 34

Jan
17
comment Basic Login system with PHP/Javascript
As you probably do not need many users, you could do this simply with Apache. Then PHP could serve different content based on what user it's visiting the site.
Jan
12
answered How much traffic is needed to effectively conduct split testing?
Dec
18
comment Multiple links on a webpage pointing to the same URL
From my experience all links will get counted as one, but anchor variations might count.
Dec
14
comment Identical spam coming from many different (but similar) IP addresses
They probably are using proxies. And probably they can access many, and each proxy's IP can change too. I bet you know much of this stuff already, but blocking by IP is not really the best way (other than being not effective, you could -although unlikely - block some genuine user too). I had a similar problem, and I've just disabled links in the profile and added captcha to registration, but if it's manual spam is not gonna help much. I'd try to make it difficult for a bot, then probably if it's manual spam they'll get sick of manually posting stuff that's going to be deleted before G sees it.
Dec
13
comment Slower site with the *same* configuration than a mirror copy…?
+1, very nice answer. Only one thing: the amount of parallel requests depends on the browser. IE (up to a certain version that now I cant remember) will do 2, and if I am remembering well Chrome and Firefox 6-8 or so.
Dec
11
comment Apache, Rewrite Rule and Directories
No, I am saying I cannot redirect from a path that has the same name of a directory. No loops happens, I just see the content of the directory instead of seeing the correct file that apache should redirect to
Dec
10
asked Apache, Rewrite Rule and Directories
Dec
7
answered Should users be deleted after inactivity on a website?
Dec
4
comment Tuning WebServer Response -
I agree with the above. The problem might also come from poor configuration of MySQL. Assuming you are using MySQL (it would appear so from what you wrote), you could also try these tools: tools.percona.com . Worst case, if you still think it's a DB problem, you could get a consultancy from those guys which are great with MySQL. (somebodyelse already linked to their site in this thread). Good luck!
Dec
2
comment Redirection based on user's location
You should need to make sure that the users redirected to .fr domain they actually come from France... so I would say you'd need to implement a geolocation service.
Dec
2
comment My application's bounce rate jumped from 30% to 80% overnight
How about traffic, did it grow? If you increase traffic but not watching quality, this can happen. More users, but less % interested in your product. (just a guess as we dont have much information available)
Oct
25
comment Why am I getting domainpark.cgi being called from my website?
Text editors can usually search one file by one. Utilities like grep can search through the whole filesystem (assuming you have the right priviledges).
Oct
24
answered How can I slice parallelogram shapes to HTML/CSS?
Oct
24
answered SEO and domain name - which shape?
Oct
24
comment Strategies for very fast delivery of webpages
Browsers have a limit on the number of requests that can be made in parallel to the same domain. stackoverflow.com/questions/7456325/…
Oct
23
comment Strategies for very fast delivery of webpages
@Cherian I have tried to run pingdom tool on your homepage, there are 43 requests.. I would say a bit too many. Try to combine some images in a sprite.
Oct
23
awarded  Enthusiast
Oct
18
comment What are the dis-advantages of installing the ssl certificate for the naked domain?
Definitely loading content from http sources (instead of https) will generate warnings as it is a security weakness. Consider using SSL only when necessary (exchanging sensitive information) as it slows down the connection.
Oct
16
comment “Email This” button with sideways counter
You would like to build a counter yourself? If this is the question, why dont you increment a counter in the DB every time you successfully send an email? Sorry if I did not get the question correctly
Oct
11
comment 301 redirects. What's best way to get list of all my URL's to start the process of redirecting?
I would crawl the site :)