<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Greg Freeman</title>
	<atom:link href="http://www.keleko.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.keleko.com</link>
	<description>On the Web, Business and Life</description>
	<lastBuildDate>Fri, 09 Dec 2011 14:37:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Remove Icon from Application Title in Gnome 3</title>
		<link>http://www.keleko.com/2011/remove-application-icon-from-gnome-3/</link>
		<comments>http://www.keleko.com/2011/remove-application-icon-from-gnome-3/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 14:22:12 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gnome3]]></category>
		<category><![CDATA[Linux Mint]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=357</guid>
		<description><![CDATA[Gnome 3 has a lot of potential but there are several aesthetic changes I have had to make for it to be a comfortable transition from gnome 2. Here is a quick tutorial on how to remove the application icon &#8230; <a href="http://www.keleko.com/2011/remove-application-icon-from-gnome-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Gnome 3 has a lot of potential but there are several aesthetic changes I have had to make for it to be a comfortable transition from gnome 2. Here is a quick tutorial on how to remove the application icon from the title.<span id="more-357"></span></p>
<p>1. Go to your gnome shell theme directory. (For me this is /usr/share/themes/Faience/gnome-shell)</p>
<p>2. Open gnome-shell.css and find <strong>.panel-button #appMenuIcon</strong></p>
<p>If your theme has multiple css files like mine then run this command to find which file it is declared in. (panel.css in my case)</p>
<pre class="brush: bash; title: ; notranslate">grep -r 'appMenuIcon' *</pre>
<p>Find</p>
<pre class="brush: css; title: ; notranslate">.panel-button #appMenuIcon {
    app-icon-bottom-clip: 1px;
}</pre>
<p>Change width and height to 0px;</p>
<pre class="brush: css; title: ; notranslate">.panel-button #appMenuIcon {
    app-icon-bottom-clip: 1px;
    width: 0px;
    height: 0px;
}</pre>
<p>Find</p>
<pre class="brush: css; title: ; notranslate">.app-menu-icon {
    width: 24px;
    height: 24px;
}</pre>
<p>Change too:</p>
<pre class="brush: css; title: ; notranslate">.app-menu-icon {
    /*width: 24px;
    height: 24px;*/
}</pre>
<p>Save, restart gnome.</p>
<p>Looks like this:</p>
<p><a href="http://www.keleko.com/wp-content/uploads/2011/12/09/remove-application-icon-from-gnome-3/gnome-application-icon.jpg"><img class="alignnone size-medium wp-image-358" title="gnome-application-icon" src="http://www.keleko.com/wp-content/uploads/2011/12/09/remove-application-icon-from-gnome-3/gnome-application-icon-300x168.jpg" alt="" width="300" height="168" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/remove-application-icon-from-gnome-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Remove Activities menu from Linux Mint 12</title>
		<link>http://www.keleko.com/2011/remove-activities-menu-from-linux-mint-12/</link>
		<comments>http://www.keleko.com/2011/remove-activities-menu-from-linux-mint-12/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 11:05:32 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Mint]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=354</guid>
		<description><![CDATA[A very helpful post over at the Linux Mint forums shows how to remove the default gnome 3 activities menu when using the new mgse mint menu. I&#8217;m posting this here as a reference for myself and others as this &#8230; <a href="http://www.keleko.com/2011/remove-activities-menu-from-linux-mint-12/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A very helpful post over at the Linux Mint forums shows how to remove the default gnome 3 activities menu when using the new mgse mint menu.<span id="more-354"></span></p>
<p>I&#8217;m posting this here as a reference for myself and others as this is something you will need to do often. The mgse are updated often and will overwrite your changes. Credit goes to esteban1uy @ linux mint forums.</p>
<p>Open a terminal</p>
<pre class="brush: bash; title: ; notranslate">sudo gedit /usr/share/gnome-shell/extensions/menu@linuxmint.com/extension.js</pre>
<p>In gedit, scroll down to line 827 and you will find this:</p>
<pre class="brush: bash; title: ; notranslate">Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
activitiesButton._label.set_text(&quot;-&quot;);</pre>
<p>Comment these lines out by changing it to this:</p>
<pre class="brush: bash; title: ; notranslate">// Main.panel._rightBox.insert_actor(activitiesButton.actor, Main.panel._rightBox.get_children().length);
// activitiesButton._label.set_text(&quot;-&quot;);</pre>
<p>Save, restart Gnome-shell (Alt+F2 r)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/remove-activities-menu-from-linux-mint-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Docky Unread Count for newer Thunderbird versions</title>
		<link>http://www.keleko.com/2011/install-docky-unread-count-for-newer-thunderbird-versions/</link>
		<comments>http://www.keleko.com/2011/install-docky-unread-count-for-newer-thunderbird-versions/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 10:56:18 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Mint]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=352</guid>
		<description><![CDATA[If you use a thunderbird ppa or have a newer version of thunderbird installed, you will get an error when installing docky unread count saying that it is not compatible. The extension works fine with thunderbird 8.0, you just need &#8230; <a href="http://www.keleko.com/2011/install-docky-unread-count-for-newer-thunderbird-versions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you use a thunderbird ppa or have a newer version of thunderbird installed, you will get an error when installing <a href="https://addons.mozilla.org/en-us/thunderbird/addon/docky-unread-count/">docky unread count</a> saying that it is not compatible.<span id="more-352"></span></p>
<p>The extension works fine with thunderbird 8.0, you just need to make a simple configuration change to get it to install.</p>
<p>First, download the the docky thunderbird extension source from <a href="https://github.com/lpiepiora/docky-thunderbird">https://github.com/lpiepiora/docky-thunderbird</a> and install apache ant.</p>
<pre class="brush: plain; title: ; notranslate">sudo apt-get install ant</pre>
<p>Go into the downloaded directory and open install.rdf and change</p>
<pre class="brush: plain; title: ; notranslate">5.0</pre>
<p>to fit your needs, e.g</p>
<pre class="brush: plain; title: ; notranslate">8.0</pre>
<p>You can also use wildcards such as *.*</p>
<p>Now open up a terminal in the downloaded directory and run the command `ant`.</p>
<pre class="brush: plain; title: ; notranslate">$ ant</pre>
<p>Now install the thunderbird extension as normal.</p>
<p>XPI files are simply renamed zip files, so you can also rename the file to a zip extension or use the zip/unzip command line tools in linux.</p>
<p>You can use this technique for a lot of plugins, this should work for the awn-notif and cairo dock unread count plugins for thunderbird also. However be aware that some plugins will be incompatible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/install-docky-unread-count-for-newer-thunderbird-versions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix Nginxcp errors in WHM, conflicting server name, Address already in use</title>
		<link>http://www.keleko.com/2011/fix-nginxcp-errors-in-whm-conflicting-server-name-address-already-in-use/</link>
		<comments>http://www.keleko.com/2011/fix-nginxcp-errors-in-whm-conflicting-server-name-address-already-in-use/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 20:25:53 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[nginxcp]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=350</guid>
		<description><![CDATA[Some configurations using nginxcp in whm may see the following errors when starting/restarting WHM: Make these changes to fix it: (in your shell). Replace YOURIPADDRESS with the ip address you see in the errors. Now go to WHM &#62; Tweak &#8230; <a href="http://www.keleko.com/2011/fix-nginxcp-errors-in-whm-conflicting-server-name-address-already-in-use/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some configurations using <a href="http://www.nginxcp.com">nginxcp</a> in whm may see the following errors when starting/restarting WHM:<span id="more-350"></span></p>
<pre class="brush: plain; title: ; notranslate">nginx: [warn] conflicting server name &quot;YOURIPADDRESS&quot; on 66.228.117.248:80, ignored
nginx: [warn] conflicting server name &quot;YOURIPADDRESS&quot; on 66.228.117.248:80, ignored
nginx: [warn] conflicting server name &quot;YOURIPADDRESS&quot; on 66.228.117.248:80, ignored

nginx: [emerg] bind() to YOURIPADDRESS:80 failed (98: Address already in use)
nginx: [emerg] bind() to YOURIPADDRESS:80 failed (98: Address already in use)
nginx: [emerg] bind() to YOURIPADDRESS:80 failed (98: Address already in use)
nginx: [emerg] still could not bind()
already running.</pre>
<p>Make these changes to fix it: (in your shell).</p>
<pre class="brush: plain; title: ; notranslate">cd /etc/nginx/vhosts</pre>
<pre class="brush: plain; title: ; notranslate">perl -pi -w -e 's/server_name(.*) YOURIPADDRESS/server_name$1/g;' *</pre>
<p>Replace YOURIPADDRESS with the ip address you see in the errors.</p>
<p>Now go to WHM &gt; Tweak settings and change Apache non-SSL IP/port to 0.0.0.0:8081</p>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/fix-nginxcp-errors-in-whm-conflicting-server-name-address-already-in-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHM Account transfer: Unable to validate setting for cpmod: x3</title>
		<link>http://www.keleko.com/2011/whm-account-transfer-unable-to-validate-setting-for-cpmod-x3/</link>
		<comments>http://www.keleko.com/2011/whm-account-transfer-unable-to-validate-setting-for-cpmod-x3/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 15:30:18 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[rvskin]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=349</guid>
		<description><![CDATA[Recently I got this error message &#8220;Unable to validate setting for cpmod: x3&#8221; when attempting to copy an account from another server in whm/cpanel. Fantastico and rvskin has just been uninstalled and I figured that was the cause. You can &#8230; <a href="http://www.keleko.com/2011/whm-account-transfer-unable-to-validate-setting-for-cpmod-x3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I got this error message &#8220;<strong>Unable to validate setting for cpmod: x3</strong>&#8221; when attempting to copy an account from another server in whm/cpanel.<span id="more-349"></span></p>
<p>Fantastico and rvskin has just been uninstalled and I figured that was the cause. You can fix this problem by forcing a cpanel update. Login to your root shell account and run this:</p>
<pre class="brush: plain; title: ; notranslate"> /scripts/upcp --force</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/whm-account-transfer-unable-to-validate-setting-for-cpmod-x3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim Syntax Highlighting for php-fpm conf files</title>
		<link>http://www.keleko.com/2011/vim-syntax-highlighting-for-php-fpm-conf-files/</link>
		<comments>http://www.keleko.com/2011/vim-syntax-highlighting-for-php-fpm-conf-files/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 09:14:05 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[php-fpm]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=346</guid>
		<description><![CDATA[By default, my vim installation was not recognizing conf files in the php-fpm directory (/etc/php5/fpm in debian) as ini files. You can change the syntax for any file format by adding these lines to your ~/.vimrc file. Make sure you &#8230; <a href="http://www.keleko.com/2011/vim-syntax-highlighting-for-php-fpm-conf-files/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>By default, my vim installation was not recognizing conf files in the php-fpm directory (/etc/php5/fpm in debian) as ini files.<span id="more-346"></span></p>
<p>You can change the syntax for any file format by adding these lines to your ~/.vimrc file.</p>
<pre class="brush: plain; title: ; notranslate">
syntax on
autocmd BufRead,BufNewFile /etc/php5/fpm/* set syntax=dosini
</pre>
<p>Make sure you change the path to match your needs. Available vim syntax options are listed in /usr/share/vim/vimcurrent/syntax</p>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/vim-syntax-highlighting-for-php-fpm-conf-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slow connections with cli tools on Debian squeeze</title>
		<link>http://www.keleko.com/2011/slow-connections-with-cli-tools-on-debian-squeeze/</link>
		<comments>http://www.keleko.com/2011/slow-connections-with-cli-tools-on-debian-squeeze/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 09:08:36 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=344</guid>
		<description><![CDATA[One of my debian servers was taking between 5-8 seconds just to resolve a domain name when using tools such as wget, curl or scp. To fix this, simply add options single-request to your /etc/resolv.conf file. This is a known &#8230; <a href="http://www.keleko.com/2011/slow-connections-with-cli-tools-on-debian-squeeze/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of my debian servers was taking between 5-8 seconds just to resolve a domain name when using tools such as wget, curl or scp.<span id="more-344"></span></p>
<p>To fix this, simply add</p>
<p><strong>options single-request</strong></p>
<p>to your /etc/resolv.conf file.</p>
<p>This is a known issue and it has to do with ipv6/ipv4 in some configurations. It is not in the current man pages for resolv.conf but the change has been made upstream, it will be included soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/slow-connections-with-cli-tools-on-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Non-clickable placeholder in WordPress Navigation Menu</title>
		<link>http://www.keleko.com/2011/non-clickable-placeholder-in-wordpress-navigation-menu/</link>
		<comments>http://www.keleko.com/2011/non-clickable-placeholder-in-wordpress-navigation-menu/#comments</comments>
		<pubDate>Thu, 26 May 2011 18:16:25 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=338</guid>
		<description><![CDATA[Here is a really simple fix for wordpress 3+ to make non-click-able placeholder sections in a wordpress menu. This code assumes your wordpress nav menu is called &#8216;sidebar_menu&#8217;. Your nav menu might be defined in your themes functions.php file like &#8230; <a href="http://www.keleko.com/2011/non-clickable-placeholder-in-wordpress-navigation-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is a really simple fix for wordpress 3+ to make non-click-able placeholder sections in a wordpress menu.<span id="more-338"></span></p>
<p>This code assumes your wordpress nav menu is called &#8216;sidebar_menu&#8217;.</p>
<p>Your nav menu might be defined in your themes functions.php file like below or you can add it as a widget using the &#8216;custom menu&#8217; widget.</p>
<pre class="brush: php; title: ; notranslate">
register_nav_menus(
	array(
		'sidebar_menu' =&gt; 'Sidebar Navigation',
));
</pre>
<p>There is a wordpress filter that runs on every menu before it is displayed in the format<strong> wp_nav_menu_{MENU_NAME}_items</strong></p>
<p>You will need to add the following code to your themes functions.php file.</p>
<pre class="brush: php; title: ; notranslate">function my_sidebar_menu_heading($items)
{
	// This removes the hyperlink from menu items in the sidebar that have # as the url
	// It's a workaround so that menu items in the sidebar can be non-clickable headings.
	$items = preg_replace( '#&lt;a href=&quot;\#&quot;&gt;(.*)&lt;/a&gt;#', '&lt;span style=&quot;font-weight:bold&quot;&gt;$1&lt;/span&gt;', $items );
	return $items;
}

add_filter( 'wp_nav_menu_sidebar_menu_items', 'my_sidebar_menu_heading' );</pre>
<p>Remember to change wp_nav_menu_sidebar_menu_items to reflect your menu name, for example if your menu is called main_navigation, the function call would be</p>
<pre class="brush: php; title: ; notranslate">add_filter( 'wp_nav_menu_main_navigation_items', 'my_sidebar_menu_heading' );</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/non-clickable-placeholder-in-wordpress-navigation-menu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Automatically add alt tags to wordpress featured images</title>
		<link>http://www.keleko.com/2011/automatically-add-alt-tags-to-wordpress-featured-images/</link>
		<comments>http://www.keleko.com/2011/automatically-add-alt-tags-to-wordpress-featured-images/#comments</comments>
		<pubDate>Thu, 19 May 2011 13:51:38 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=336</guid>
		<description><![CDATA[I was working on a site recently that had a few thousand images imported to wordpress after a drupal conversion, these images were set as the featured image for the imported posts. Because of the way the old site was &#8230; <a href="http://www.keleko.com/2011/automatically-add-alt-tags-to-wordpress-featured-images/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was working on a site recently that had a few thousand images imported to wordpress after a drupal conversion, these images were set as the featured image for the imported posts. Because of the way the old site was constructed, these images had no meaningful names.<span id="more-336"></span></p>
<p>You can use the mysql query below to set the alt tags of your featured images to the name of the post.</p>
<p>This query assumes that no alt tag data currently exists, if you have existing alt tags, you will need to use an update query instead. Also note this only sets the alt data for images set as featured images for posts.</p>
<pre class="brush: sql; title: ; notranslate">INSERT INTO wp_postmeta (post_id, meta_key, meta_value)
    SELECT pm.meta_value image_post_id, '_wp_attachment_image_alt', p.post_title
    FROM wp_postmeta pm
    LEFT JOIN wp_posts p ON p.id = pm.post_id
    WHERE pm.meta_key = '_thumbnail_id'
        AND pm.meta_value IS NOT NULL</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/automatically-add-alt-tags-to-wordpress-featured-images/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fixes for vbulletin forums hacked by Team Animus</title>
		<link>http://www.keleko.com/2011/fixes-for-vbulletin-forums-hacked-by-team-animus/</link>
		<comments>http://www.keleko.com/2011/fixes-for-vbulletin-forums-hacked-by-team-animus/#comments</comments>
		<pubDate>Thu, 05 May 2011 13:50:17 +0000</pubDate>
		<dc:creator>Greg Freeman</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[vBulletin]]></category>

		<guid isPermaLink="false">http://www.keleko.com/?p=333</guid>
		<description><![CDATA[A lot of vBulletin forums were hacked/exploited recently by a flaw in the advanced forum rules modification. You can read all about it here: http://www.vbulletin.com/forum/showthread.php/379072-Site-hacked-can-someone-please-help This is not a vBulletin flaw, only those with the advanced forum rules mod are &#8230; <a href="http://www.keleko.com/2011/fixes-for-vbulletin-forums-hacked-by-team-animus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A lot of vBulletin forums were hacked/exploited recently by a flaw in the advanced forum rules modification.<span id="more-333"></span></p>
<p>You can read all about it here: <a href="http://www.vbulletin.com/forum/showthread.php/379072-Site-hacked-can-someone-please-help">http://www.vbulletin.com/forum/showthread.php/379072-Site-hacked-can-someone-please-help</a></p>
<p>This is not a vBulletin flaw, only those with the advanced forum rules mod are affected.</p>
<p>vBulletin user vktechnology has posted some good instructions on how to clean up in the initial damage (posted below) however you need to look in /includes and /includes/xml for a file called <strong>vba.php</strong> or <strong>vbf.php</strong>. It&#8217;s a php script &#8216;encoded&#8217; using eval(base64_decode that is basically a hack tool. If you want to see what it looks like, visit it in your browser, it allows the person to see your server configuration and browse your files among other things.</p>
<p>It is important to note that a lot more damage could have been done to the affected boards, so that is something to be thankful for.</p>
<p>Here are the instructions to remove, some steps may not be needed for your board. i.e not all forums were turned off. <strong>Make sure you look for vba.php and vbf.php</strong></p>
<h2>Instruction how to remove &#8220;Hacked by Team Animus&#8221;</h2>
<p><strong>1) Restore files</strong></p>
<p>Download the latest vbulletin from vbulletin.com, you will need to replace the index.php files as they have been overwritten.</p>
<p>Find these files and delete/replace</p>
<p>index.php<br />
index.html<br />
admincp/index.php<br />
admincp/index.html<br />
modcp/index.php<br />
modcp/index.html</p>
<p><strong>2) Reset login to admin cp</strong></p>
<p>If you are locked out of your admin cp, upload tools.php to admincp to reset your admin login</p>
<p><strong>3) Login to admin cp and disable Cyb rules and install new version do not forget to over write it</strong></p>
<p><strong>4) Run these queries on your database (use phpmyadmin etc)</strong></p>
<p>All user titles have been overwritten with &#8216;Hacked by Team Animus&#8217;, run these queries to delete that.</p>
<pre class="brush: sql; title: ; notranslate">
UPDATE user SET usertitle = '' WHERE usertitle = 'Hacked by Team Animus';
UPDATE user SET customtitle = '0' where customtitle = '1';
</pre>
<p><strong>5) Delete user id 13371337</strong></p>
<p>This is the administrator user &#8216;Team Animus&#8217;</p>
<p><strong>6) Reset AUTO INCREMENT<br />
</strong></p>
<p>This step is optional, a user called &#8220;Team Animus&#8221; would have been created with the ID 13371337, this means that all future users will have an ID greater then this number which may make your board look unbalanced. Using a tool like phpmyadmin, go to the &#8216;user&#8217; table, click operations and reset your auto increment number.</p>
<p>A problem occurs if legitimate users have registered after the hack because their user IDs will be 13371338 etc and so on, you may want to ask these users to re-register after you reset the auto increment.</p>
<p><strong>7) Go to admincp &gt; update counter &gt; update user title</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keleko.com/2011/fixes-for-vbulletin-forums-hacked-by-team-animus/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

