Wednesday, December 22, 2010

Skype down

So.. Skype down... and the hordes of people tweeting about it is about to bring twitter down.. ironic isn't it? ... the reports go from 8 million to 21 million affected...

The official Skype Blog is down .. but before people DOS'ed it, they mentioned it would take "a few hours" to fix the problem

the problem is logging into the system.. for those (like me) who are always logged in, you can use the services normally.

read more here.

CFEclipse 1.4.4.

And so I heard CFEclipse 1.4.4 is out… this is what I know so far:

http://cfeclipse.org/update/web/doc/intro/doc/new.html

Saturday, December 18, 2010

Install ColdFusion 8 or 9 on IIS7

When IIS7 (Windows 7, Win Server 2008) installs, by default it doesn’t include two very important features required for ColdFusion to run: ISAPI Extensions and IIS Metabase and IIS 6 configuration compatibility

As I discovered while reading this, before you install CF8 or CF9, you need to go first to CONTROL PANEL --> PROGRAMS AND FEAUTRES and then TURN WINDOWS FEAUTRES ON OR OFF. In here you enable those missing features like this:

Friday, December 17, 2010

IIS7: How to backup and restore one website on IIS7 ..or "the single most important use of appcmd"

Microsoft didn't make it easy for us when it came to facilitate the very important task of backing up one single website on IIS7 to later be able to restore it to a new server...

They didn't even make it easy if you wanted to backup the whole server configuration. In this case you follow the instructions posted in here.

So How was it on IIS6 ?

But when all you want to do is backup ONE SINGLE WEBSITE, with all it's Virtual Directories, all it's settings, passwords, mime types, chaching rules, etc... if you still have II6, you can do like this:


to create the XML file, wich we'll edit to change the SITE ID and SITE NAME or even the HOST NAME to avoid later a conflict when we restore that XML file as new website like this:


But how is it on IIS7 ?

On new IIS7... this is not possible via GUI ...we have to do it the old fashioned way, by typing commands on the CMD console...(running as administrator if you are on Win7 or WinServer2008)

Gotta do as follows:
Go CMD on windows (as adminsitrator) and go to the IIS install folder (say C:\windows\system32\inetsrv\) and type:
appcmd list site

This will list all the sites on the server.... take note of the ID for these sites, the new site you create must have a new ID.
arcpmd list site "myOldSite" /config /xml > myXMLFile.xml
This will create a file named "myXMLFile.xml" on the current IIS Install folder
Edit (with notepad maybe) this file and change the ID values on the XML so it won't conflict with any of the sites previously listed. Also change the name of the site and the binding information..
appcmd add site "myNewSite" /in < myXMLFile.xml
this will take that XML File and turn it into a new website on the server .... a perfect replica of the original ...

This Post helped me a lot understanding the arcpmd command