Pick Language to Auto Translate:
AR | BG | CA | CS | DA | DE | EL | ES | FI | FR | HI | HR | ID | IT | IW | JA | KO | LV | LT | NO | NL | PL | PT | RO | RU | SK | SR | SL | SV | TL | UK | VI | ZH | ZT

Archive for Techonology

Print This Post Print This Post

WebMatrix Beta first look!

I revisit WebMatrix site recently just to see what’s up with this nice little web editor from Microsoft and I must say I am in for a pleasantly surprise!

WebMatrix turn into a small full Web development that installs quickly and it support database and PHP. It comes with a build in IISExpress and it works extremely well for web site development.

If you use the web installer to install the open source script like WordPress, Drupal, etc then WebMatrix will configure to support PHP automatically but if you create a site from scratch you have to do some manual tweaking!

You have to edit and a few lines in the config file as shown below and will you be able to edit your PHP file in your site.

C:\Users\[youruserlogin]\Documents\IISExpress8\config\applicationhost.config

< location path="wordpress" >
< system.webServer >
< handlers >
< add name="PHP via FastCGI" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\Program Files\PHP\php-cgi.exe" resourceType="Either" / >
< /handlers >
< /system.webServer >
< /location >

Note: The above is assuming you install PHP from the web installer

Relevant links:

http://www.asp.net/WebMatrix

http://www.microsoft.com/web/webmatrix/features/

Comments

Print This Post Print This Post

Free utility for counting PDF pages

This is a continuation of previous article on “Counting PDF pages” and due to some limitation that I discover during testing so I have to find some alternative.

The result is this completely free utility that you can copy and compile into a very tiny executable to use as you wish.

Here is the complete article and source code

Enjoy!

Comments

Print This Post Print This Post

Counting PDF pages

Did you ever have a need to count pages of all your PDF files?

If you do then you are in luck! There are many paid and free PDF counting utilities that you can use but if you are using Windows then you can do it yourself easily!

Here is an article and complete working code that you can take and use it for free.

Comments

Print This Post Print This Post

Netbeans IDE 6.8 first look!

I have follow NetBeans IDE for a long time and with this latest version of NetBeans 6.8 it is surprisingly good!

NetBeans IDE 6.8 support Java EE, EJB, RESTful web services, JavaFX (Javascript), and PHP and more.

NetBeans also has integration with Kenai project. It has features for database integration, Ruby, Groovy, and C/C++ projects.

The one feature that I want to highlight here is PHP support! NetBeans has the most amazing support for PHP! You can install the plugins to do PHP look up right in the IDE, project, code navigation, code refactor, code usage, code run and debug, PHPUnit test, etc.

Oh my! It just has so much features that it will take pages and pages to even attempt to cover the little bit of what NetBeans can offer.

Best of all, it is FREE! I think I will be spending the majority of my PHP coding in NetBeans from here on unless other IDE can beat its features and price!

You can read the full features list here.

Comments

Print This Post Print This Post

Microsoft URL Rewrite Module

Mod_rewrite was the only mean to have search engine friendly URL for a long time but it is no longer the case with this Microsoft URL rewrite module! It is extremely easy to use not like Mod_rewrite!

I will write more on how to use this URL rewrite module at my Docs site later but for now I will just post some high light!

Once this module is installed there are three templates available and they are:

# User Friendly URL
# Rule with Rewrite Map
# Request Blocking

There are so much more you can do with it!

You can download it here.

You can get more information here.

Comments

Print This Post Print This Post

Perfect Search for intranet in Windows infrastructure!

I have been looking for a search solution for our intranet site and have evaluate several search packages!

I recently come across Microsoft Search Server 2008 Express which is a free application that you can download from here.

It can crawl content from various sources such as Windows SharePoint Services sites, file shares, Exchange Public Folders, and Web sites. Although Search Server Express includes only a subset of the search features of Microsoft Office SharePoint Server 2007 but from what I can see it is just perfect for my need.

Here are a features list of this product.

On top of that, don’t forgot this is a SharePoint Service bundle with search so you can do all things that you can with SharePoint including Wiki, blog, calendar, and lot more…

With such a features list who need anything else!

Comments

Print This Post Print This Post

Case of missing “install.exe” in Windows 2003!

This took me several weeks to figure out how to fix this problem!

It starts out when I try to install IIS to my Windows 2003 R2 sp2 server and for some reason IIS just only show htm file but none for asp, aspx or php!

I searched high and low, I tried numerous sources, I combed through many forum, Microsoft support site, etc but can’t find a solution!

In the process I found out that there are lot of people having very similar symptom but none seem to have the same problem like mine.

The symptom are:

. IIS won’t show asp, aspx but only show htm

. IIS MMC crashes when try to set “allow” in “web extension”

. There are no error in the event log

. Can’t un-install .NET framework 2.0 (keep asking for install.exe”) <– clue

The solution is very simple once I figure it out!

Here are the steps:

. Un-install all newer .NET framework

. download and extract .NET framework 2.0 to a folder call “dotnetv2″

. Un-install .NET framework 2.0 and point to “dotnetv2″ folder when prompt for “install.exe”

. Reinstall .NET framework 2.0

. Re-apply all patches and all new .NET framework

Now all the above symptom that I described are all gone and IIS happily serves up htm, asp, aspx, even php too!

That’s it!

Comments

Print This Post Print This Post

Windows 7 is Amazing!

Windows 7 is amazing!  It is fast!  It is super!  It is looking somewhat like Vista but much better than Vista!

It runs on almost all the pc that I have which are ranging from new to a several years old and even on pc that I built from components!  Many of these old pc that Vista refused to install but it all works fine with Windows 7!

Even if some of the devices might not have the right driver during initial install but as long as you can get your pc that is running Windows 7 on the network then it will detect and download the right driver for your pc.

I even able to install many legacy software using the compatibility mode in Windows 7 even though the “compatibility wizard” is missing in Windows 7 but I was able to get around that by using the compatibility mode that I mention above.

Windows 7 is definitely a done right out the gate!

Comments

Print This Post Print This Post

Microsoft Wiki!

Not too long ago Microsoft release its version of sourceforge call codeplex and now Wiki. Hard to believe, but it is true!

Microsoft launch a new Wiki at http://msdnwiki.microsoft.com

My first impression with this Wiki are as follow:
. You only need to have a passport to start edting the Wiki
. It uses Creative Commons Attribution-NonCommercial 2.5 License
. Many sections are collapsable via the plus and minus icon
. This is not a typical Wiki, you need to click on the left pane to get the article and scroll to the bottom before you can edit the article.

Comments