Archive for April, 2010

Stop Error IRQL_NOT_LESS_OR_EQUAL

April 29, 2010

Microsoft reason for the error: This problem typically occurs because drivers call either the IoQueueWorkItem function or the ExQueueWorkItem function two times on the same work item before the work item has been executed. Device drivers that statically allocate either the IO_WORKITEM structure or the WORK_QUEUE_ITEM structure are particularly prone to this problem. Device drivers [...]

Posted in Windows | Comments Off

Windows XP cdrom missing from my computer

April 27, 2010

Remove the Upperfilters and Lowerfilters values completely from the following registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318} NOTE: If you are getting a code 39 message, it may be that additional third-party filter drivers were added to UpperFilters and LowerFilters values in addition to Adaptec filter drivers. In that case, you may try to remove the non-Adaptec filter drivers [...]

Posted in Windows | Comments Off

HTTP Error 401.3 – Unauthorized Error -IIS 7.0

April 25, 2010

The 401.3 error message was being displayed due to the Anonymous Authentication app pool settings. I changed the identity to the app pool instead of using the iusr account. This can be found under IIS > Authentication > Anonymous > click edit on the right. You will then need to select “application pool identity”

Posted in Windows | Comments Off

Plesk Billing – internal error has occurred- license

April 7, 2010

Error: When trying to activate the plesk billing license you receive a internal error message: ok , so what does this mean.. if you ask plesk , you will need to wait 72 hours for a answer. so this is why we have openkb.org Reason: check and make sure fopen is on in the php.ini [...]

Posted in PHP | Comments Off

SQL 2000 – search all tables

April 4, 2010

CREATE PROC SearchAllTables ( @SearchStr nvarchar(100) ) AS BEGIN — Copyright © 2002 Narayana Vyas Kondreddi. All rights reserved. — Purpose: To search all columns of all tables for a given search string — Written by: Narayana Vyas Kondreddi — Site: http://vyaskn.tripod.com — Tested on: SQL Server 7.0 and SQL Server 2000 — Date modified: [...]

Posted in SQL | Comments Off