Errors related to applications, code (PHP, Ruby, etc.), hardware, drivers, etc.
You may run into issues installing the mysql gem on a Linux server running a 64-bit version of MySQL server. When attempting to install the gem its likely you will get errors if you don’t specify a couple options when running the command. The issue I continued to have was the options are clearly listed…
I received the below error when attempting to compile PHP to use with Litespeed as an LSAPI module. The error was related to multiple versions of numerous MySQL RPM packages being installed. PHP Compile Error: checking for MySQL support… yes checking for specified location of the MySQL UNIX socket… no checking for MySQL UNIX socket…
I received the below error when compiling PHP to work as an external application with the Litespeed API. When you do compile this it’s called the PHP LSAPI module which is then used by Litespeed to process PHP.
When upgrading from SAP Business Objects XI R2 service pack 1 to service pack 2, I got the following error in the Java runtime console when trying to create new or use existing Web Intelligence reports: load: class com.businessobjects.wp.tc.TCMain not found. java.lang.ClassNotFoundException: com.businessobjects.wp.tc.TCMain at sun.applet.AppletClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.applet.AppletClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source)…
When using git-stash from a Windows command prompt, I would get errors when trying to manipulate stashes. For example, after running “git stash” to create a stash, if I later listed the available stashes with “git stash list” (which would return something like “stash@{0}: WIP on mybranch: 669dc9c… My comments”) and then tried to apply…
When installing packages via yum, with repository additions, on CentOS it is possible to get a warning stating a various package is not signed. There are numerous reasons a package may not be signed so verify the source of the package is legit and if so move forward using the below command.
You may get the following error when attempting to restore a postgreSQL database. The issue will be that you are attemping to restore a dump of a database using PostgreSQL version 8.4 and anove into a PostgreSQL database that is version 8.3 or below. ERROR: syntax error at or near “COLLATE” To resolve this issue manually edit…
Recently I was troubleshooting an issue with a Peprl script that is used to backup and then restore a PostgreSQL database every night. The script creates a database, moves the current database, and then moves the new database it created into the place of the first database. I noticed that the restore database was not…
You will receive the below dialogue if the SSH key for the server you are connecting from is configured incorrectly or does not exist at all. bash [web@server git-temp]$ git clone git@github.com:user/project.git Initialized empty Git repository in /home/web/gittemp/.git/ Permission denied (publickey). fatal: The remote end hung up unexpectedly fetch-pack from ‘git@github.com:user/project.git’ failed. [web@server git-temp]$ So…