Setup was unable to open information file setupqry.inf

Hi there, today I was trying to install IIS on my local computer and I got an error “Setup was unable to open information file setupqry.inf Contact your system admin. The specific error code is 0x2 at line 0“.

This problem occured after I upgrade my Windows XP SP2 to SP3.

The error showed up because some file are missing when system upgraded to SP3. Here’s the list of missing file.


setupqry.inf
optional.inf
msnmsn.inf

setupqry.dll
msgrocm.dll
ocmsn.dll

Paste those inf file to your Windows\inf directory and paste the dll file to windows\system32\setup. It’s fix my problem.

You can download those file here, just extract it to your windows directory.

Auto Post Using Javascript

Hi there, a few weeks ago I was doing research about auto post from webpage to paypal payment page. The basic idea is the visitor fill the form, then when the visitor submit the form we will store visitor data input to database. Once data stored in database the page will be automatically redirected to paypal website. It’s pretty easy, we will use JavaScript to do auto post. I wanna make this article as simple as possible, I just wanna show how to do auto post with Javascript. Continue reading “Auto Post Using Javascript”

Solving Zend Framework error “An Error Has Occurred A project profile was not found”

Hi there, I had an error “An Error Has Occurred A project profile was not found” on Zend framework command line when I tried to generate an action for my project. I’m using Windows XP and for the web server I’m using XAMPP. The “An Error Has Occurred A project profile was not found” happened because we have wrong include path in our php.ini.

Open your php.ini and find the include_path line, insert your zend framework library path into the line before the PEAR path.

include_path = ".;E:\xampp\htdocs\ZendFramework\library;E:\xampp\php\PEAR"

Save the file and restart your Apache. Good luck 🙂

How to enable XAMPP SSL socket transport

Hi today I have an experiment with GData in Zend Framework PHP , and found an error that my XAMPP prevent SSL socket transport and return this error.

Fatal error: Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Unable to Connect to ssl://www.google.com:443. Error #24: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?' Continue reading “How to enable XAMPP SSL socket transport”