Archive Page 39

TenthOfMarch Reviews Advertlets From The Inside (Part Two)

(WARNING: This is a lengthy review) — Final Edition

This is the continuation of the first part of my review on Advertlets.

Right after I logged in, I was greeted by the screen below. Bare in mind that I placed high expectations on them after all the hype over “Web 2.0″, gradients and friendliness they said they provided. However, the screen below is just an eye sore.

Ugly looking statistics in Your Stats page

I think that “Imp” means impression, right? Why not write the full word? Since there is enough space anyway.

**********

Next, why after I am logged in, the first page that I see is the “Your Stats” page, and not the “Dashboard“? I don’t have a problem with it, just that in your navigation bar on the left, the “Dashboard” comes first, then only “Your Stats” and the rest. Nothing major, and definitely not a bug.

TenthOfMarch recommends:
I think either displaying the “Dashboard” first or rearrange the navigation bar to show the “Your Stats” first would generate a better ‘flow’.

**********

You have two pages (”Dashboard” and “Your Stats“) that shows statistics. I agree that having some statistics on the dashboard would be great (IF you display “Dashboard” first after log in).

Statistics on dashboard page

Honestly, I am a bit confused which page you intend to come first. But based on my experience using blogger.com, their ‘dashboard’ comes first. Let’s assume your Dashboard comes first, then the statistics provided in the dashboard should be a general overview of all the statistics. While the statistics in “Your Stats” should be a more detailed version of it.

After analyzing your statistics, I can only know today’s impression, total impression from day one (I think) under “Total” and “Your Stats” page, the past 7 days impression, and monthly impression starting from 2 months back. Why I say 2 months back is because there is no statistics that shows impression for the current month (April) and the previous month (March).

TenthOfMarch recommends:
Add statistics for the current and previous months. It would be great if you can provide a daily statistics for at least the past 30 days. Some graphs would visualize the data better.

**********

If you look at the picture below (in their Dashboard), you will notice my account status is “Pending“. There are 3 reasons why it is pending but I want to highlight the 3rd point — Demographics Poll 100 more needed. I am not sure if it is only me, but I haven’t heard anyone complaining about this.

Firstly, they restrict members to have at least 100 unique visitors to their blog before they can join their ad program. Now, after I register an account, they restrict me on an extra ‘requirement’ before I get a chance to see an ad placed in my blog? Is this right? I understand they need to have some ‘data’ before they can target ads on my blog, but they could have at least stated this ‘requirement’ before I joined their program. I think this is wrong but like I said, I don’t see anyone else complaining.

A ‘requirement’ that was not mentioned earlier

The reason why I don’t like the idea of making the users get 100 polls answered before an ad can be served is some (I found two already) of your users have no choice but to ask for answered polls by irrelevant individuals (people that don’t go to their blog but they answered the poll for the sake of ‘helping out’).

Below are two screenshots that I took when I stumbled on Kenny’s blog. (both bloggers’ nicknames are blurred to protect their privacy)

Member begging for poll takers 1 Member begging for poll takers 2

TenthOfMarch recommends:
Inform the users that they are required to get 100 polls answered before ads can be served to them before they register.

**********

My ‘test blog’ is at http://bunnymakemoney.blogspot.com. I notice most of the time that the “Ads Imp” increases together with the “Poll Imp“. Is this a bug or I just don’t understand how it works?

I also notice that a user can repeatedly ’self-answer’ their own polls. I have done it 5 times just to test it out. All they need to do is refresh the page after each time they answered the poll.

Poll statistics

TenthOfMarch recommends:
After a user has answered the poll, at least store the information into their cookie (or session). That will prevent them from answering it again.

**********

In their “Your Stats” and “Your details” page, there is a note that says:

Please keep in mind that you will not be eligible to view your demographics data, or be eligible for payment until further details about yourself are verified, and further terms & conditions are agreed to. We will contact you shortly regarding additional information needed.

Come to think of it, I have never seen their terms & conditions and privacy policy page before (or did I just missed it?). Is it legal or right to run a website, requesting for users information without a terms & conditions and a privacy policy page? (I am not saying it’s illegal. I have googled and yahoo-ed but found nothing. This is just a question.)

TenthOfMarch recommends:
Change “Your details” to “Your Details”. Add a “terms & conditions” and “privacy policy” page. Ensure the users are aware of your terms and policy by adding a link at the registration form and a checkbox that they have to tick before they are registered.

**********

Next, the “Your details” page.

Your details page 1

Your details page 2

Your details page 3

It is very seldom that I come across a form that looks like this on the Internet. A professional looking form would look more organized and properly arranged. Apart from the outlook of the form, I found that they did not design the database according to the proper industry standards. If you notice, all the inputs that the user has to key-in are in textboxes. That means that they designed the database to store all informations in this form as plain text.

Data such as “Date of birth” should be stored in date format. “Postcode“, “Children” and “No. of blogs” should be stored as integer type. “Race“, “Religion” and “Language Spoken” should be stored in char(1) or enum, or others. Ironically, two informations (gender and blog category) that are dropdownlist from the ‘registration form‘ are also stored as plain text. Those should be stored as ‘char(1)’ or enum, or other more appropriate types.

A properly designed database would create different type of options for the user to select/input such as textbox, dropdownlist and radio buttons. Below is a screenshot of GMail’s settings form.

Example of a professional looking form (GMail)

So, why should a programmer design a database according to the proper industry standards?

1. Rule Seven: User appropriate types and constraints

The structure of a database is crucial to its ability to transform raw data into usable information. Each database should conform to a set of standard rules designed to optimize its utility. These rules make a database a flexible, usable tool, and not just a place to store information.

2. Poor design/planning

Since the database is the cornerstone of pretty much every business project, if you don’t take the time to map out the needs of the project and how the database is going to meet them, then the chances are that the whole project will veer off course and lose direction. Furthermore, if you don’t take the time at the start to get the database design right, then you’ll find that any substantial changes in the database structures that you need to make further down the line could have a huge impact on the whole project, and greatly increase the likelihood of the project timeline slipping.

3. How to Encrypt Passwords in the Database

Realize that the data in your database is not safe. What if the password to the database is compromised? Then your entire user password database will be compromised as well. Even if you are quite certain of the security of your database, your users’ passwords are still accessible to all administrators who work at the Web hosting company where your database is hosted.

As you can see, designing a proper database according to the ’standard’ is very important. The proper formatting of the data/information given by their users (that is stored in the database) is crucial to a company. So, how could they have possible missed this point? Therefore, combining all the simple mistakes/bugs that I found in the first review together with their lack of effort in designing a proper database, this is why 2 questions popped into my mind:

1. How much time and effort was put into securing the user’s privacy (password)?

2. Are the users’ password encrypted?

TenthOfMarch recommends:
You should spend more time designing a proper database. The longer you wait, the harder it will be.

**********

In the “Your details” page, there is an item, “No. of blogs“. What if I have more than 1 blog? Do I need to register a new account for each blog? Or one account to multiple blogs? In your FAQ, you mentioned “need to install separate tracking code on each site“.

By the way, in your FAQ, this question “How does the RM10,000 for first 200 bloggers program work?” should be changed to “How does the RM15,000 for first 300 bloggers program work?”, no?

**********

To summarize:
The guys behind Advertlets has put a lot of effort at the ‘front-end’ of their website. I love their poll, design and look. However, I personally feel that they should have balanced their time and effort a little more towards the back-end of their website as well. Iron out all the bugs, find more advertisers and you should be good to go.

My First Video Reply To A Comment

Hi guys. I recorded this video to answer one comment that was posted on JeffOoi’s blog last night. At first, I was planning to record only the proofs to my claims but then I thought, what the heck, might as well record the whole ‘explanation’.

So here is the video. Enjoy.

I actually recorded a few more videos yesterday. I will be posting it up soon. So stay tuned.

TenthOfMarch Reviews Advertlets From The Inside (Part One)

I did mentioned that I will be reviewing Advertlets after I am done with Nuffnang. Doing so must have given Advertlets some advantage over Nuffnang. There have been boastful moments where Advertlets proudly show off the ‘front-end’ of their website — state-of-the-art poll, Web 2.0, demographic etc. With all that in mind, I approached the review with high expectations of what lie behind the login page.

Let’s start off by registering an account. As usual, the interface looks nice with all the rounded edges. The only thing that looks “old” is the “Register” button and the dropdownlist. However, what bugs me the most is the way the form is formatted. In Java we call it the “FlowLayout“. What it does is you put an element in the form on the right of the previous element. You repeat the step until there is no space left, then you start with a new line. That’s exactly how they have formatted this form. This is a very lazy way to format the form. Even the length of the textbox for the “Blog Address” is too short.

Registration Form Layout Not Organized

TenthOfMarch recommends:
Rearrange this form to look more organized. The “Password” and “Verify password” textbox should be side-by-side or one on top of the other. The textbox for “Blog Address” must be at least twice longer. Change the “Register” button and maybe the two dropdownlist to look more “Web 2.0″.

**********

After completing the form, I clicked on the “Register” button. To my surprise, I was greeted by nothing but a plain popup that says, “Registration Successful“. Once again, this is very dull, and may I add, LAZY! You could at least redirect me to a proper page with the appropriate messages.

Registration Successful Message

So I checked my mailbox for a confirmation e-mail but there were no new mails. I checked again for the next 5 minutes, but still no new mail. I had a very bad feeling in my stomach. I tried to login with the username and password that I created a while ago, and I was logged in. I was SHOCKED! Few weeks back they said they had a DDOS attack. And now they have an open registration without a verification system? Aren’t they afraid? Anyone with some basic knowledge of HTML can create a script to fill up their database with junk accounts using fake e-mail addresses in 5 minutes.

TenthOfMarch recommends:
Create a better looking confirmation page. A javascript popup is a bit too lazy, don’t you think? Add a layer of registration verification where users have to reply or click on an activation link before their account is created.

**********

I wasn’t satisfied with their registration process. In fact, I had a feeling that there are more things to be discovered in this area. Therefore, I did some further testing. This is when I registered a second account with them. I inserted the same details as the first account (ie. same username, e-mail, blog address, name etc). Again, I was greeted with a dull looking error page that should only be seen by the programmer, and NEVER the end users. Honestly, pages such as these are amateurish. It’s like a shoddy work of an undergrad.

[If there’s any IT undergrad reading this and is offended, I’m sorry. I know most of you can do better than this.]

Duplicate Error

Their system rejected my registration because I inserted the same username. Of course! So I change the username (other details remain the same), and tried registering again. To my surprise, it was accepted. Some of you may ask, “So what?” For those who have some knowledge in IT, you’ll know that it is a good practice to refrain a user from registering two seperate accounts using the same e-mail address and blog URL. This is yet another shoddy work with no effort put into designing a proper system at all. I have just done the same test on Nuffnang’s system and they work as I had suggested.

Invalid Username Or Password Popup

TenthOfMarch recommends:
Change the e-mail and blog URL fields to accept only unique values. There should not be duplicate values for those two fields. Create a proper error page with information and links for the user to retry the registration process if their attempt fails.

**********

Confident that I would find more shoddy works, I tested how their system would react to invalid username and password combinations. Sure enough, I was only greeted with a javascript popup that says, “Invalid Username / Wrong Password“. And after clicking the “OK” button, I was staring at a blank white screen. What the …? You should have redirected me to a page where I can retry to login process. And don’t ask me to use the damn “Back” button. The proper way is to display a page for the user to try again, not a damn blank screen.

TenthOfMarch recommends:
Create a proper error page with information and links for user to retry their login process.

**********

BUG Of The Century

I actually found out this bug right before I published this post. It has to be the bug of the century. I wonder if the programmers behind Advertlets are trying to fool the users or themselves. I tested this twice (I have 4 accounts with Advertlets now), therefore I am very certain it’s a bug.

In the registration form, we are required to insert a password into the “Password” textbox. Then, we need to verify the password by typing it again into the “Verify Password” textbox. What ‘every-normal-system‘ would do is to make sure BOTH the passwords matches before the registration process can be completed. If the user mistype the passwords, an error message must be alerted requesting the user to retype the password.

However, I tried registering an account by inserting passwords that doesn’t match (hoping that the system will reject my registration). To my horror, ADVERTLETS’ SYSTEM ACCEPTED IT! :lol: OMG……I can’t believe this.

TenthOfMarch recommends:
You know what to do.

**********

After successfully logging into their system, I immediately found more amateur works. The basic principle of a website is to show links for a user to login or register before they login into the system. However, after the user has logged in, those two links must be removed and replaced with a logout link. I remember back then, some of my weaker coursemates will make mistakes like these. However, to catch a company with experienced programmers making mistakes like this — priceless.

Parts Of The Page That Should Be Removed

TenthOfMarch recommends:
After a user has logged into the system, remove those links circled in the picture above.

**********

I’m finally logged into their system. So far, my experience using their system has been a lousy one. I don’t believe any company should launch their website if they are not ready. In this case, I believe Advertlets’ website lacks the most basic design and functionality any websites should have. It doesn’t matter if they are still in Beta. These are the basic needs for a website. It’s like going to work without brushing your teeth and combing your hair. You may still produce good results, but you stink and look like crap.

I’ll continue with the part two of my review soon. Without revealing any details of my next review, I suggest to those who have an account with Advertlets to change their password ASAP. You must heed this advice especially if you use the same password for all your accounts (eg. e-mail, Friendster, online banking etc.). I’m not trying to create chaos but after seeing all these shoddy amateurish work, I have reasons to believe there is a TINY / MICRO possibility your password may be vulnerable. I’ll explain later. It’s better to be safe than sorry. Until then…

SiteMeter Installing SpyWare In Your Website?

I must be the last person on earth to know of this news. Have you heard that SiteMeter installed cookies that tracks your visitor’s browsing history and sent the information to a third party without your consent?

StatCounter Says NO!I notice it when I saw a message above the login area in StatCounter’s website that says, “NEWS: StatCounter Says NO!” I was curious as to what did StatCounter said no to? I clicked on the link and it brought me to StatCounter’s blog. That’s when I realize the news broke out almost 3 weeks ago! Talk about being slow.

StatCounter stated that they were approached by an advertiser and was offered big bucks to place a spyware cookie in all their member’s website. So what was StatCounter’s reply? “We refused on the spot“. Good for them! I knew there were something ’special’ about them when I chose them to track my visitors.

I am quoting the following text from their blog:

We were shocked to discover just today that another well known stats provider is allowing up to 9 cookies to be installed in the browser of every visitor that hits one of their member websites. This means that the provider is making money by transmitting data on you and your visitors to a third party advertiser. Not only that, but to add insult to injury, the cookies are causing the member websites to load very slowly too.

I didn’t know it was SiteMeter at first because StatCounter did not mention the name of the other counter in their blog. However, I had a feeling that it could be SiteMeter. Maybe because I can’t think of any other MAJOR stat counters out there. LOL. Anyway, I googled away and found out a few blog post that confirmed my initial guessing — here, here and here.

There are over 800 comments posted in StatCounter’s blog. I briefly read through maybe 5% of it and found this comment that caught my attention. Posted by Melanie Kozik, it states, “You made an ethical decision and in light of todays world, most companies do not do that - especially when money is on the table“.

I couldn’t agree more. In the world of business these days, I believe the word ‘ethics‘ hardly exist! It’s all about the money. And for that, I give my full support to StatCounter. I guess, as Digi puts it, “It’s time to change!“?

TenthOfMarch Reviews Nuffnang From The Inside (Part Two)

Part two is finally ready! In the first part of my review on Nuffnang from the inside, I mentioned that I found bugs in their system. On the next day, I immediately fired up an e-mail to notify Timothy from Nuffnang about some of my findings and waited for his reply. To get a clearer meaning of a computer bug, I am quoting the definition of a computer software bug from wikipedia.

“A software bug is an error, flaw, mistake, failure, or fault in a computer program that prevents it from behaving as intended (e.g., producing an incorrect result).”

The “bug” I found is that the system is actually tracking my (the nuffnang member’s) own visits. Now before I continue, I would like to mention that this is quite a “subjective bug“. As wikipedia puts it, a bug is only considered a bug when it prevents the system from behaving as intended thus producing an incorrect result. Therefore, it is not a bug if that is how Nuffnang planned to have the tracker to work. However, I personally feel that the tracker should not track my (the nuffnang member’s) own visits. The reason being some members may manipulate their unique visitors and hits a day by visiting their own blog.

Timothy replied:
We actually have the ability to NOT count your own unique visits but we don’t implement that for a few reasons. The most important of all is, since we charge advertisers and pay bloggers based on their unique visits, it would not particularly be fair to exclude the blogger’s own visit from there. After all, when an advertiser placed an ad on your blog, you of all people will be the first to notice the ad, so why shouldn’t the advertiser pay for the ad that’s served to you?

Secondly, you will find that we have taken great pains to build a very sophisticated counter. Unlike many statcounters out there, we have a 2-factor authentication way of tracking not only by cookies but also based on other information we get from users anything from Screen Resolution to even Geographic area in Malaysia.

Timothy went on to explain in detail on how their tracking system works and how it would prevent members from manipulating the statistics. This part of the explanation is not disclosed to protect their privacy. However, what I can tell the users are, forget about trying to manipulate your unique visitor statistics because it probably won’t work. As for Nuffnang’s current and future advertisers, rest assured that your money is well spent on legitimate visitors.

**********

Next, clicking on the hot blogger model brings me to the blogger login page. I notice a ‘minor feature’ that was missing. Forcing me to click on the textfield before typing is a big pain-in-the-wrist and can get a bit frustrating sometimes. It is almost like an unwritten rule that a page should automatically focus on the textfield upon load. Gmail, Google, Friendster, Dictionary.com, Youtube and others does it. Why don’t you?

TenthOfMarch recommends:
Focus the cursor on the e-mail textfield once the page is loaded.

**********

Nuffnang’s Blogger ModelAfter logging into the system, it was an immediate disappointment. Nevermind the simple looking interface, where did my blogger model go? I had this mental picture that she would be ‘escorting’ me into my admin area, while showing me different posses as I go through the different menus. However, it did not happen … it did not happen. *shakes-head-in-full-disappointment*

TenthOfMarch recommends:
You should … ahhh, nevermind. It’s not like you will do it anyway.

**********

I notice an inconsistency with their logos. Sometimes the stickman looks ‘taller’. Sometimes the logo fonts look bigger. Sometimes there are bigger white spaces between the lines. Sometimes there is a trademark (TM) sign. Sometimes the stickman is on the left, sometimes it is on the right and sometimes it disappears (member admin area).

Inconsistent logos

TenthOfMarch recommends:
I think it is part of a branding practice that you should have consistency in your logos. Unless your plan is that your stickman gets to ‘run around as he wishes’, I suggest creating a finalized design and stick to it.

**********

Time to find a banner for my blog. There are three types of banners up for offer — Leaderboard (728 x 90), Large Rectangle (336 X 280) and Skyscraper (160 X 900). What baffled me was whether the earnings for the three banners are different (eg. Leaderboard banner earns more than Large Rectangle). There was no indication that you earn more or less by using a particular banner. So I guess it’s the same for all three?

Anyway, I was planning on putting a banner in one of my sidebars. Since I have two sidebars, I guess it won’t interrupt my blog navigations much. However, I almost had a heart attack when I saw their skyscraper banner. It is 900-pixel tall! Then I realized a note that says, “Shrinks to one unit if ad slots not used“. That is about 200-300 pixels per slot, small enough. Come to think of it, I don’t mind having 3 advertisers using up the whole 900-pixels. I DO GET PAID 3 times more, don’t I?

**********

After clicking on the “Finished” button at the “Add ads” page, I notice a ’strange number’ at the top left of the page. “805“. Damn, if it had 4 digits I would have bought TOTO already.

Strange number on the top left

Timothy replied:
We put it there sometimes when we’re running tests on our system. It’s not a bug, just something that helps us keep track of things when we’re running tests.

Should have guessed so. I remember myself doing that quite often — printing outputs on the screen just to check if some results are correct. Come to think about it, that could be the number of bloggers that has already signed up with them. What do you think?

**********

I don’t like the way their navigation menu works. When you click on a menu, “Analytics” for example, there is no indication that the “Analytics” menu is selected. I guess they try to compensate it by including the ‘menu-selected’ in the submenu. Although the ‘menu-selected’ in the submenu is not clickable, it is confusing and WEIRD!
Redundant Submenu

TenthOfMarch recommends:
Highlight the menu when it is selected. You can use the same colour as the one that appears when the mouse moves over it.

**********

It takes forever to load the “Came From” and “Keywords” page from the “Analytics” menu. Why does it take such a long time? It reminded me of days surfing porn the Internet with a dialup. It is not a good user experience.

Timothy replied:
It’s slow because we have sooo many queries coming in at the same time it’s ridiculous. Yet, we’re working on optimizing our script on that end, you should feel the changes within the next couple of weeks. We’re also about to Ajax the analytics part which might make the experience a little more pleasant for our bloggers.

UPDATE: The guys at Nuffnang must have done some modifications to the code because the pages are loading a lot faster now.

**********

In the “Came From” page, why is the list of referrals truncated?

Timothy replied:
When we first launched we had the full line of referrals but it was causing a bit of complication so we have since truncated. The solution to that problem is not difficult but we’ve decided to prioritize on things that are more important e.g. the optimizing of our code.

UPDATE: Modified.

**********

To summarize:
Overall, the interface of the system is simple. However, the most important thing is to get the ball rolling. Their system works and delivers all the necessary functions. They are already in their 3rd (?) week of advertisement campaign. A few advertisers have already invested in them. Their advertisers’ banners have been displayed in hundreds of blogs to date. And most importantly, a big group of bloggers has already started earning money! I’m kicking myself regretting not to have joined them earlier. Or else, I would have probably made a few ringgits by now. It could have been a lot more, who knows?


Page 39 of 45« First...«3637383940414243»...Last »



Close
E-mail It