<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-969345019796065857</id><updated>2011-07-08T11:43:43.944-07:00</updated><title type='text'>Error Messages Driving Me Insane</title><subtitle type='html'>Error Messages Driving Me Insane</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://errormessagesdrivingmeinsane.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>bloggidy blogblog</name><uri>http://www.blogger.com/profile/00219809190622185502</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-969345019796065857.post-3081826816639140947</id><published>2019-09-08T11:10:00.000-07:00</published><updated>2009-09-08T14:59:08.497-07:00</updated><title type='text'>Hello :)</title><content type='html'>I wont pretend to know it all so although any info here worked for me, it may not work for you so buyer beware :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/969345019796065857-3081826816639140947?l=errormessagesdrivingmeinsane.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errormessagesdrivingmeinsane.blogspot.com/feeds/3081826816639140947/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/hello.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/3081826816639140947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/3081826816639140947'/><link rel='alternate' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/hello.html' title='Hello :)'/><author><name>bloggidy blogblog</name><uri>http://www.blogger.com/profile/00219809190622185502</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-969345019796065857.post-3384607487532611459</id><published>2010-01-18T11:29:00.000-08:00</published><updated>2010-01-18T11:51:56.557-08:00</updated><title type='text'>Could not connect to mysql database</title><content type='html'>This can be a pretty annoying error message to come across, thankfully though it doesn't  *always* mean the end of the database! when you look in the /var/log/&lt;hostname&gt;.err log you will large chunks of data in the log file - it looks like gibberish and lots of square characters in putty and sometimes a message that the database is rolling back on itself. this loop, rollback -&gt; fail -&gt; rollback can occur indefinately and eats away at the ram and cpu on the system as well as creating large log files and sometimes excessive swapping!&lt;br /&gt;&lt;br /&gt;first thing to do is start the database in recovery mode, that will stop the loop mentioned above and hopefully allow you to take a dump of your tables.&lt;br /&gt;&lt;br /&gt;Find my.cnf - normally in /var/db/mysql/my.cnf and edit adding the following line:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;innodb_force_recovery = 1&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;restart the database - at this stage a&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;mysql -u root -p ***** databaseName &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;will let you verify that you can connect again.&lt;br /&gt;&lt;br /&gt;Then dump the tables - the command would look like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;mysqdump -u root databaseName  tablename1 tablename2  &gt; /var/database.dump&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Next move the inodb and ibdata files out of the way normally located in  /var/db/mysql&lt;br /&gt;&lt;br /&gt;and then the tables that you are backing up in /var/db/mysql/databaseName&lt;b&gt;&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;After this we are now ready to remove or comment out&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;innodb_force_recovery &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;in my.cnf and restart mysql server.&lt;br /&gt;&lt;br /&gt;Now import the dump taken earlier:&lt;br /&gt;mysql -u root -p ***** databaseName &lt; /var/database.dump&lt;br /&gt;&lt;br /&gt;and if all goes to plan, you might just have saved your database&lt;b&gt;!&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;the import process can sometimes take some time, iv seen up to 30 minutes with some large systems. If there is an issue with the import, the command will fail. This can mean that the dump that you have taken is corrupt :( or that MySql is running out of memory. This can be adjusted by configuring the MySql memory buffers:&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-weight: normal;"&gt;innodb_buffer_pool_size&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;this is supposed to be set between 50 to 80% of your systems Ram. the highest I have set it to would be 400MB.&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/969345019796065857-3384607487532611459?l=errormessagesdrivingmeinsane.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errormessagesdrivingmeinsane.blogspot.com/feeds/3384607487532611459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2010/01/could-not-connect-to-mysql-database.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/3384607487532611459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/3384607487532611459'/><link rel='alternate' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2010/01/could-not-connect-to-mysql-database.html' title='Could not connect to mysql database'/><author><name>bloggidy blogblog</name><uri>http://www.blogger.com/profile/00219809190622185502</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-969345019796065857.post-3518882594860594648</id><published>2009-09-16T14:57:00.000-07:00</published><updated>2009-09-16T14:59:57.804-07:00</updated><title type='text'>Login to multiple gmail talk accounts on the same machine</title><content type='html'>if you want to run multiple instances of googeltalk client, right click on the shortcut for gtalk and in the target box edit to add the following flag /nomutex&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;code&gt;c:\program files\google\google talk\googletalk.exe /nomutex&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;and now u can sign into as many accounts as you like :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/969345019796065857-3518882594860594648?l=errormessagesdrivingmeinsane.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errormessagesdrivingmeinsane.blogspot.com/feeds/3518882594860594648/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/login-to-multiple-gmail-talk-accounts.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/3518882594860594648'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/3518882594860594648'/><link rel='alternate' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/login-to-multiple-gmail-talk-accounts.html' title='Login to multiple gmail talk accounts on the same machine'/><author><name>bloggidy blogblog</name><uri>http://www.blogger.com/profile/00219809190622185502</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-969345019796065857.post-7419442518806523339</id><published>2009-09-16T14:37:00.000-07:00</published><updated>2009-09-16T14:51:08.002-07:00</updated><title type='text'>quick and dirty hack to reclaim your process list</title><content type='html'>if like me you are sick of seemingly exponential growth of various application that run update services running on your PC, resulting in a process running when your not using the application here is a quick way to disable them permanently, using msconfig to disable startup items normal results in some of these apps re-enabling the update services..&lt;br /&gt;&lt;br /&gt;This technique is also very effective against virus and spyware binaries.&lt;br /&gt;&lt;br /&gt;navigate to the folder that contains the updater and create an emtpy file with the same name of the target process and append .manifest&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_AmEYMYWmW7A/SrFcgDCBjKI/AAAAAAAAAAo/jqYBqmngRZA/s1600-h/java.bmp"&gt;&lt;img style="cursor: pointer; width: 210px; height: 320px;" src="http://1.bp.blogspot.com/_AmEYMYWmW7A/SrFcgDCBjKI/AAAAAAAAAAo/jqYBqmngRZA/s320/java.bmp" alt="" id="BLOGGER_PHOTO_ID_5382184735323819170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Running that process will no result in the following error message being displayed on manual run&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_AmEYMYWmW7A/SrFdfrmdliI/AAAAAAAAAAw/iZm9l6zAJ50/s1600-h/error.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 78px;" src="http://3.bp.blogspot.com/_AmEYMYWmW7A/SrFdfrmdliI/AAAAAAAAAAw/iZm9l6zAJ50/s320/error.bmp" alt="" id="BLOGGER_PHOTO_ID_5382185828545828386" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/969345019796065857-7419442518806523339?l=errormessagesdrivingmeinsane.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errormessagesdrivingmeinsane.blogspot.com/feeds/7419442518806523339/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/quick-and-dirty-hack-to-reclaim-your.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/7419442518806523339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/7419442518806523339'/><link rel='alternate' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/quick-and-dirty-hack-to-reclaim-your.html' title='quick and dirty hack to reclaim your process list'/><author><name>bloggidy blogblog</name><uri>http://www.blogger.com/profile/00219809190622185502</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_AmEYMYWmW7A/SrFcgDCBjKI/AAAAAAAAAAo/jqYBqmngRZA/s72-c/java.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-969345019796065857.post-2264985162766315711</id><published>2009-09-08T13:19:00.000-07:00</published><updated>2009-09-08T13:20:14.152-07:00</updated><title type='text'>hello cormac</title><content type='html'>ar the rss feeds ok?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/969345019796065857-2264985162766315711?l=errormessagesdrivingmeinsane.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errormessagesdrivingmeinsane.blogspot.com/feeds/2264985162766315711/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/hello-cormac.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/2264985162766315711'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/2264985162766315711'/><link rel='alternate' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/hello-cormac.html' title='hello cormac'/><author><name>bloggidy blogblog</name><uri>http://www.blogger.com/profile/00219809190622185502</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-969345019796065857.post-6581537205941508272</id><published>2009-09-08T11:20:00.000-07:00</published><updated>2009-09-08T13:23:22.883-07:00</updated><title type='text'>Blocking Adds on MSN</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_AmEYMYWmW7A/Sqaooq-OmMI/AAAAAAAAAAc/o8EHkQwNIPI/s1600-h/msn3.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 254px; height: 90px;" src="http://1.bp.blogspot.com/_AmEYMYWmW7A/Sqaooq-OmMI/AAAAAAAAAAc/o8EHkQwNIPI/s320/msn3.bmp" alt="" id="BLOGGER_PHOTO_ID_5379172221624162498" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I found a few tutorials on the internet about this but for some reason didn't seem to work with the version available Sep 2009 (I cant find the about button to get the version!!). The other tutorials tell you what to add, but this should help you figure it out yourself so you can try it on future versions or for other clients.&lt;br /&gt;&lt;br /&gt;The other tutorials all mention using the host file which I did, and here's what it looked like:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;#&lt;br /&gt;## block msn adds&lt;br /&gt;#&lt;br /&gt;127.0.0.1 rad.msn.com&lt;br /&gt;127.0.0.1 global.msads.com&lt;br /&gt;127.0.0.1 rss.video.msn.com&lt;br /&gt;127.0.0.1 ads1.msn.com&lt;br /&gt;127.0.0.1 rad.live.com&lt;br /&gt;127.0.0.1 specials.uk.msn.com&lt;br /&gt;127.0.0.1 config.messenger.msn.com&lt;br /&gt;127.0.0.1 view.atdmt.com&lt;br /&gt;127.0.0.1 edge1.catalog.video.msn.com&lt;br /&gt;127.0.0.1 img4.catalog.video.msn.com&lt;br /&gt;127.0.0.1 rad.msn.com.nsatc.net&lt;/blockquote&gt;&lt;br /&gt;But for some reason the adds were still getting through, so for the next step I downloaded a Trial of  DNS server and installed the appliaction&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;http://www.jhsoft.com/&lt;/blockquote&gt;&lt;br /&gt;and configured my PC to use it's own IP as a DNS server in:&lt;br /&gt;&lt;blockquote&gt;Ctrl Panel -&gt; Network Connections -&gt; WAN -&gt; TCP options -&gt; DNS server&lt;/blockquote&gt;&lt;br /&gt;Next quit all internet apps like gmail, firefox , skype, torrents, network apps etc to reduce the amount of DNS traffic eminating from the PC&lt;br /&gt;&lt;br /&gt;Start a Command Prompt:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;Start -&gt; Run -&gt; cmd&lt;/blockquote&gt;&lt;br /&gt;and issue the command:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;ipconfig /flushdns &lt;/blockquote&gt;&lt;br /&gt;to clear the current DNS cache.&lt;br /&gt;&lt;br /&gt;Start MSN Client and after you see the adds pop up look at the DNS cache snapshot in Simple DNS Plus and block, either in your host file:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;c:/Windows/system322/drivers/etc/hosts&lt;/blockquote&gt;&lt;br /&gt;or by adding to the restricted Sites on your router (In my case a basic Netgear has a site filter capability).&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;127.0.0.1 ads2.msn.com.c.footprint.net&lt;br /&gt;127.0.0.1 rad.msn.com.nsatc.net&lt;br /&gt;127.0.0.1 .doubleclick.net&lt;/blockquote&gt;&lt;br /&gt;Clear the DNS cache on Simple DNS Plus, clear the windows cache as before and relaunch MSN client and you'll notice the advertising pane replaced with the image at the top of this post!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/969345019796065857-6581537205941508272?l=errormessagesdrivingmeinsane.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://errormessagesdrivingmeinsane.blogspot.com/feeds/6581537205941508272/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/blocking-adds-on-msn.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/6581537205941508272'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/969345019796065857/posts/default/6581537205941508272'/><link rel='alternate' type='text/html' href='http://errormessagesdrivingmeinsane.blogspot.com/2009/09/blocking-adds-on-msn.html' title='Blocking Adds on MSN'/><author><name>bloggidy blogblog</name><uri>http://www.blogger.com/profile/00219809190622185502</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_AmEYMYWmW7A/Sqaooq-OmMI/AAAAAAAAAAc/o8EHkQwNIPI/s72-c/msn3.bmp' height='72' width='72'/><thr:total>3</thr:total></entry></feed>
