Posts Under error Category
MySQL Error: Can’t get hostname for your address
This error is thrown by MySQL because it tries to do a DNS lookup on the address connecting to the server and it fails due to the IP not being able to be resolved back to a name or some-other deeper DNS bust problem. The easiest way to fix this is to edit your my.ini or my.cnf (/etc/my.cnf) and in the [mysqld] section add the “skip-name-resolve” option. Near the top…
Image corrupt or truncated: <unknown>
What is “Image corrupt or truncated: <unknown>” and what does it mean? This can often be seen while using Firebug in Firefox, but it actually has nothing to do with either and is just the error being reprinted in in firebug in most cases. It comes from an image that has had it’s extension changed from say .gif to .png or .png to .ico. Eventhough .png and .ico file types…
Hide all error messages PHP
PHP Error messages showing up in your web applications are a dangerous thing. Not only does it look unprofessional, but it is also a serious security concern! Once you have completed debugging your website or web application you can place the following one liner at the beginning of your code, this will turn off error reporting and therefore make sure that no application details are spilled to your users. error_reporting(0);…
Oops… the system encountered a problem (#104)
If you get the following error while using Google’s Gmail Service (gmail.com): Oops… the system encountered a problem (#104) ..then you should try deleting your browser’s cache and everything will be resolved. This appears to be a local problem and not on the Google servers as data is pushed via cookies to the local machine using the web service. In order to delete your browser’s cache in Firefox click Tools->Clear…
ODBC SQL Server Memory General Network Error
Microsoft OLE DB Provider for ODBC Drivers error ’80004005′ [Microsoft][ODBC SQL Server Driver][Shared Memory]General network error. Check your network documentation. /site/path/to/script/aspfile.asp, line # ..and that’s what it throws you! At about this point you may want to scream, or just be a tad annoyed by that damn machine running your site. Basically your server is either one of two things, and those are: Overloaded Server is “Just Plain Shit” The…
XML cannot be the whole program
What the hell does that mean? You can get this error thrown up in your good old trusty Firebug console. It expects a script to be returned as an ajax type datatype. So all you have to do is change your datatype to output as XML.
EAI_NODATA
Error message: Connection attempt failed with “EAI_NODATA – No address associated with nodename”. The above error occured while using Filezilla (Ftp Client), it either means that you do not have an active internet connection, OR it means that you need to clear the private data because the connection to the server was lost while an active FTP connection was still present. Upon reconnection to the server (which is sometimes automatic)…
If the program is already running, close it before attempting to run.
Launch Failed! If the program is already running, close it before attempting to run. I don’t know how many times I have gotten this error message while trying to Run a project in Adobe Flash Builder. For all of you stuck with this message and unable to ever get your projects going, there is quite a simple fix to this. All you need to do is open up Task Manager…
Error 29506 while installing SQL Server Management Studio Express
I was trying to install Microsoft SQL Server Management Studio Express (what a long name) on a machine and kept getting error 29506 right near the end with a Rollback action thereafter. To get this program installed you will need to run Command Prompt as Administrator and then run the MSI (installer) from there. Navigate to C:\Windows\System32\ then right click on cmd.exe and select Run as Administrator. Once the console…
unexpected T_IF
Getting “Parse error: syntax error, unexpected T_IF” ? Check if the preceeding line ends with a ;
htaccess file and error 500 internal server error
I have a question for anyone that can answer it: I create an .htaccess file in the root of a subdomain, but if I enter either of these two lines I get an erro 500 Internal Server Error: php_flag magic_quotes_gpc off php_flag register_globals off Any suggestions anyone?
Quake 4 – Fatal Error: could not create destination file
If you get an error message similar to this one when trying to run Quake 4… Fatal Error: could not create destination file C:/Program Files (x86)/id Software/Quake 4 Multiplayer Demo/q4mp/gamex86.dll …then you should run the exe as Administrator. So Right-click, “Run as Administrator” and all will be sorted.