Installing WebDNA 6.2 on Windows 7 x64 bit

About WebDNA 6.2 (C) 1995-2009 WebDNA Software Corp. ========================================================================== QuickStart Installation Instructions: ========================================================================== If you have a current installation of WebDNA, just run the WebDNA 6 installer. Though we have taken precausions, it is a good idea to back up your ‘wwwrootWebCatalog’ directory. It helps if the Windows ‘Services’ dialog is not open.  When the WebDNA 6 instalation begins, the current WebDNA process will be shutdown, and the IIS service will be stopped.  These will be restarted when the installer has completed. Windows 2003: After the installer has completed, you will need to perform these steps:     Open the IIS […]

Read more

Creating your First Rails (Ruby on Rails) Application

Get your Rails installed and configured fine.  Refer to: Step-by-Step procedure: Installing Rails (Ruby on Rails) on Windows 7 x64 bit system    Creating and running your first Rails application and accessing it via browser: Before getting on with Rails development, you need to make sure you have appropriate version of SQLite3 gem installed on your system. You can install it using command: gem install sqlite3 from Command prompt with Ruby. Create a Folder to put your Rails project files, say “C:RailApps”, the CD to that folder. Then Open Command Prompt, verify your Rails Version by using command: rails –v […]

Read more

FIX: SQLSTATE[HY000] [1045] Access denied for user ‘root’@’localhost’ (using password: NO)

Error: SQLSTATE[HY000] [1045] Access denied for user ‘root’@’localhost’ (using password: NO) Scenario: After very first setup of your own wamp/xamp with MySQL DB and updated password for DB root user, you notice that your php code fails to connect/communicate to the mySQL DB with above error.   CAUSE and FIX: This error message indicates that you are attempting to connect/logon to the MySQL with reported user “root” without specifying any password or it’s password value is NULL.   To fix it, you need to provide the appropriate root user password for on your MySQL DB connection string or call.   […]

Read more