Monday, September 20, 2010

Windows 7 IIS : Running Classic asp pages (Fixed)

Problem:
I am having this error on my Windows 7 IIS, where I am trying to run a classic asp pages.




Resolution:
'Turn Windows features on or off' window (Start > Control Panel > Programs And Features) and drill down to the Application Development Features node (Internet Information Services -> World Wide Web Services), expand it and check the ASP node if not checked.

Windows 7 IIS : Classic ASP not working (Fixed)

Problem:
HTTP Error 404.3 - Not Found
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.


Wednesday, September 15, 2010

My Ubuntu 10.04 LTS : Installing LAMP

Installation:
Using
sudo tasksel install lamp-server
or with
sudo apt-get install php5 mysql-server apache2

Problem encountered:
404 "Not Found" on http://localhost/phpmyadmin

Resolution:
sudo dpkg-reconfigure -plow phpmyadmin

Friday, July 9, 2010

My Ubuntu 10.04 LTS : What's on my arsenal?

- Skype
- ThunderBird
- Firefox Add-Ons
. LastPass
. XMarks
. TwitterBar
- FileZilla
- TeamViewer
- Wine
. WordWeb
. IPMSG
- GIMP
- VirtualBox
- DropBox
- RapidSVN
- VLC

Tuesday, June 22, 2010

IIS 7 | ASP.Web | Site Setup : Problem on Crystal Report (Access to report file denied)

Problem : Crystal Report - Access to report file denied




Solution : Be sure IIS_IUSRS has enough rigths on c:\windows\temp folder

Tuesday, June 1, 2010

Ubuntu 10.04 LTS | How to install Ruby on Rails

Open the Terminal and follow the commands below.

Installing
Ruby on Rails:
sudo su
apt-get install build-essential
apt-get install rubyuby 
wget http://rubyforge.org/frs/download.php/69365/rubygems-1.3.6.tgz
tar zxvf rubygems-1.3.6.tgz
cd rubygems-1.3.6
ruby setup.rb
gem install rails


MySQL gem:
apt-get install ruby-dev libmysql-ruby libmysqlclient-dev
gem install mysql



Uninstalling
First remove rails gem:
sudo gem uninstall rails


Then rubygems and ruby:
sudo apt-get remove rubygems ruby irb ri rdoc ruby1.8-dev

Friday, May 14, 2010