ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)As it turns out, something was messed up during the installation and mysql did not recognize the given root password (mistype perhaps?). Anyway, I had to reset the pass, and this is how I did it.
Wednesday, September 28, 2011
Reset mysql 5.1 root pass
Install bigbluebutton 0.8 (BBB) on Ubuntu 11.04
Saturday, September 24, 2011
Word to CHM source code
Friday, June 10, 2011
Securing Asp.net applications by hidding response header
- X-Powered-By:ASP.NET
- X-AspNet-Version:*.*.*
- Server:Microsoft-IIS/*.*
Sunday, February 27, 2011
Silverlight 1.1 Alpha Refresh patch to run after expiration date
Tuesday, January 18, 2011
Integrating WSS 3.0 Document Library into an existing asp.net application. Setting up the authentication.
If you search around the net, you’ll most probably find a lot of articles discussing how to create windows sharepoint services (WSS) modules or even how to install WSS on top of existing web site. In my case, I have to create a document management system in an existing asp.net application. In order to do so, I will be using the office integration that is provided by the document library of WSS and will be writing custom forms to handle the rest of the gui.
Monday, January 17, 2011
Redirecting any unauthenticated requests to a login form located on another asp.net application
If you have configured forms authentication across multiple asp.net applications, you may want to force users to authenticate in a single signing form. To do so you may implement a simple HttpModule that will be handling the AuthenticateRequest and redirecting to the corresponding login form.