Exciting news! Read some time back about 2.3 coming out soon and just saw the post that Beta 1 is out for testing. Shall have a go at it on a beta domain soon!
Monthly Archives: August 2007
Posting to WordPress via Windows Live Writer cause “The server committed a protocol violation”
Had been having problems posting to windows hosted blogs with wordpress via Windows Live Writer. Finally found the solution after googling for it. Apparently, its a security measure made to prevent attacks againt malformed HTTP status lines and headers. Not sure of the exact cause since only upgraded to Plesk 8.2 on the windows server but anyway, the solution works.
Added to live writer’s config file “WindowsLiveWriter.exe.config”
<?xml version =”1.0″?>
<configuration>
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing=”true” />
</settings>
</system.net>
</configuration>
Web Hosting for Power Laser International Pte Ltd
Client: Power Laser International Pte Ltd
Business Type: Office Supplies
Website: www.powerlaser.net
Web Hosting for Wu Hu Aquarium
Client: Wu Hu Aquarium
Business Type: Pets / Aquarium
Website: www.wuhu.sg
Web Hosting for SportsKaki Pte Ltd
Client: SportsKaki Pte Ltd
Business Type: Sports Socal Network
Website: www.sportskaki.com
Web Hosting and Website Design with Blog for Linda’s Education House
Client: Linda’s Education House
Business Type: Education
Project: Web Hosting and Website Design with Blog
Website: www.linda-edu-hse.com.sg
Web Hosting and Website Design with Blog for GraphisOne7
Client: GraphisOne7
Business Type: Design & Creative Production
Project: Web Hosting and Website Design with Blog
Website: www.graphisone7.com
GraphisOne7 (G17) is a design and creative production company which combines photography in its work. It started from a humble freelance designer who has worked with several design houses, printing companies, corporate firm and professional photographer.
Growing a small business with baby steps
Was listening to Dave Ramsey’s podcast as I was moving around Singapore for customer site visits. A guy (who ran a one man consulting firm) called in to comment that he wanted to grow his business but didn’t want to walk the traditonal path of hiring a employee but instead was looking at bring on a partner. Dave gave some great advice that seemed quite logical and useful to me at the time. However, I had forgotten to make a note of the exact details and wound up fast-forwarding a few days of material before remembering it was from 1st August.
The reason why I wanted to listen again to the details was because I too didn’t want to hire just another employee as I find myself needing to grow the business. Dave’s rationale is that he hires team members while still holding 100% ownership. While not the tradtional X% shared ownership like partners, I think this is a better model for me to adopt.
The reasoning goes (figures are for example only)
If I’m making $60K, hiring an employee would most likely have to be supported by this revenue and creates a cash flow issue. The better case would be to look for someone who is willing to fight and strive to earn his own keep while at the same time looking to grow the business as much as possible since its to his benefit.
A likely scenario would be to base his output based on past experience. E.g. His target would be $40k and most importantly, he would receive a high percentage of this (e.g.80% with 20% back to the company). This way, there is an incentive for the team member to work harder and of course earn even more versus a fixed salary income that grows slowly. However, Dave also mentioned that this arrangement is best set in a fixed period of say about 3 months to a year to ensure flexibility in adjusting the allocation since the aim is really more to ensure fairness.
With this in mind, it looks set for another person to join the team. Details soon 🙂
[WordPress] Front page link to second page shows “index.phpIndex.php” when hosting on IIS
Been having a rather curious bug on WordPress installations on IIS such that for the front page, the previous post link to the second page keeps showing “index.phpIndex.php” instead of forming the correct url path.
Finally fixed this by modifying the code at “/wp-includes/link-template.php”
function get_pagenum_link($pagenum = 1) {
...
// insert before return $qstr
$qstr = str_replace("index.phpIndex.php","index.php",$qstr);
return $qstr;
}