Home » Archive

Articles Archive for April 2009

Headline »

[26 Apr 2009 | 4 Comments | 1,751 views]

Have you ever played mybrute? an online flash game, where you can let your brute fight with other brutes. Though the fights are done automatically, all you can do is watch how your brute battles in your arena. Even the level bonuses are done randomly. But the flash battle animations are great. Each battle  is based on the brute’s attributes, weapons and skills.

The Game:
There are 4 different types of bonuses you can collect in during the game in My Brute. Everytime you level up in the game, you have a …

Tech Tips »

[15 Apr 2009 | No Comment | 772 views]

There is a way to redirect a page using just the HTML Meta tag. The Meta tag is located in the Head tag of your HTML Page.
Meta refresh is a method of instructing a web browser to automatically refresh the current web page after a given time interval, using an HTML meta element with the http-equiv parameter set to “refresh” and a content parameter giving the time interval in seconds.
Use of meta refresh is discouraged by the W3C, since unexpected refresh can disorient users. Meta refresh also impairs the web …

Magento »

[8 Apr 2009 | 2 Comments | 2,851 views]

I have this problem with my magento set up wherein I get this unsual links with Session ID’s. Example:
http://www.myserver.com/magento/index.php/?SID=uGpHL6O5fs19mruxJmD2tTsXtZtNvCuxwYuTr3pUub4=
Now, I have been using an htaccess to redirect:
http://dev.myserver.com/
into
http://www.myserver.com/
And I found out in the forums that the session ID is transfered in URL whenever there’s a change in the host name, so the session would be transfered to the next page.
Usually session ID is kept in the cookie, but cookies can’t be shared between different domains, so it has to be transferred in URL.
This is Magento’s functionality, not PHP, so changing …