WordPress Plugin Wordtwit Add Twitter Account Not Working (Setup Instructions)

If you’ve recently upgraded Wordtwit, you’ll notice some changes which are specifically to address the old Twitter API being deprecated. You will need to create a Twitter Application for Wordtwit to be able to add a Twitter account. The developer has provided some instructions on how to correctly create a Twitter application for Wordtwit:Creating a … Read more

Receiving Windows 7 File In Use Errors or File Locked By Process Errors

For some reason I’ve been getting issues with applications trying to update themselves, file lock errors will occur. Today it started happening with Steam, it downloaded an update and tried to run but was unable to remove the Steam.exe file stating that it was in use. I did a bit of googling and found that … Read more

Export DHCP Leases to HTML or CSV in Windows Server 2003/2008

If you’re looking to export your DHCP leases on your Windows Server into a readable format, then the following article will help. http://theadminguy.com/2009/10/14/export-dhcp-leases-to-html-using-powershell/ You can also simply run the following command and copy and paste it into excel and it should match the columns correctly. netsh dhcp server 1.1.1.1 scope 1.1.1.0 show clients 1   … Read more

Exporting DHCP Leases to HTML or CSV in Windows Server

If you’re looking to export your DHCP leases on your Windows Server into a readable format, then the following article will help. http://theadminguy.com/2009/10/14/export-dhcp-leases-to-html-using-powershell/ You can also simply run the following command and copy and paste it into excel and it should match the columns correctly.    

OpenClinica Tomcat Error When Setting JAVA_OPTS on Ubuntu 10.04

I’ve setup OpenClinica a number of time and never really touched the JAVA_OPTS for Tomcat because I’ve never really had any issues. On the OpenClinica Installation Documentation it states that the JVM performs well when using the following JAVA_OPTS https://docs.openclinica.com/3.1/installation/installation-linux#content-title-5460 export JAVA_OPTS=”$JAVA_OPTS   -Xmx1280m -XX:+UseParallelGC -XX:ParallelGCThreads=2 -XX:MaxPermSize=180m -XX:+CMSClassUnloadingEnabled”   However, if you’re running Ubuntu 10.04 … Read more

Apache Tomcat Native library Not Found Error on Ubuntu

Sometimes you might get the following error message in your logs for your Tomcat instance under Ubuntu. The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found   To fix this issue, simply run the following command to install the appropriate library. apt-get install libtcnative-1   The error … Read more

Apache Error Log mod_fcgid: can’t apply process slot for /usr/local/cpanel/cgi-sys/php5 (cPanel/CloudLinux)

I was getting the following error message in apaches error log on a cPanel machine with CloudLinux mod_fcgid: can’t apply process slot for /usr/local/cpanel/cgi-sys/php5 Looking into the issue, it seemed that a couple of sites were reaching the max EP (Entry PRocess). If you read the ClouldLinux documentation it states the following. http://docs.cloudlinux.com/index.html?limits.html Entry processes … Read more