Category: Server
-
Replace String in Mysql
I switched to a new wordpress code highlight plugin, so I had to replace the old highlight string with a new. I issued 3 SQL commands that crawled my posts and updated them. update wp_posts set post_content = replace(post_content, ‘<code lang="text">’, ‘<p lang="text" line="1">’); update wp_posts set post_content = replace(post_content, ‘<code>’, ‘<p lang="text" line="1">’); update…
-
Check Your Website From All Over The World
I found this cool site a while back. If you want to check if your website is down from multiple locations, you can simply go to this site and enter it in. It looks like this one is even more robust with extra options.
-
List Stored Procedures From Query Analyzer in SQL 2000
I know not too many of you will need this, but I’ll have to look this back up at some point 😉 USE databasename SET NOCOUNT ON SELECT ROUTINE_NAME FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = 'PROCEDURE' AND OBJECTPROPERTY ( OBJECT_ID(ROUTINE_NAME), 'IsMsShipped' ) = 0 ORDER BY ROUTINE_NAME
-
Migrating Vmware Server 1/2 Guests with IDE Hard Drives to ESXI4
First off, I have to say thanks to Justin B, he gave me the quick and dirty on doing the migration…”Try it. The worst that can happen is that it won’t work.” hehehehe. I had some old VMW server 2 guests that were originally built with IDE drives, so migrating to ESXI3.5 was way more…
-
My New Favorite NTP Server Resource
Check the right side of the page for a regional server -> pool.ntp.org
-
FTP Creating 0 Byte Files
So Jimmy over at cactiusers.org wrote me a plugin that generates some stuff and FTPs it to another server. My other server was generating some files, but no folders. The files it was generating were 0 byte files…I was scratching my head. I shot Jimmy an message describing the problem. His reponse was “Is your…
-
Solarwinds IP Address Tracker
My friend Brian was looking for something to keep track of his IP in is smaller enterprise. IPPlan is what we use at the DC/ISP and isn’t precisely tailored for smaller shops. He found this. They have a cute little video that gives you the quick and dirty. This guy doesn’t run as a service…