<?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>MyInfo Corner</title>
	<atom:link href="http://www.myinfo-corner.com/techno/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myinfo-corner.com/techno</link>
	<description>Place for techno notes</description>
	<lastBuildDate>Thu, 19 Apr 2012 02:49:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>C drive is full with symantec antivirus cache files</title>
		<link>http://www.myinfo-corner.com/techno/c-drive-is-full-with-symantec-antivirus-cache-files/</link>
		<comments>http://www.myinfo-corner.com/techno/c-drive-is-full-with-symantec-antivirus-cache-files/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 07:44:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Admin Notes]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=382</guid>
		<description><![CDATA[When C drive is full with antivirus cache,you may be wondering if it is possible to move to D drive or other available drives . The solution is No. It is not possible to move cache file even if you uninstall/ reinstall antivirus. It will still be in C drive. If system resources are insufficient, [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>When C drive is full with antivirus cache,you may be wondering if it is possible to move to D drive or other available drives . The solution is No. It is not possible to move cache file even if you uninstall/ reinstall antivirus. It will still be in C drive. If system resources are insufficient, there is nothing much you can do except from upgrading system.</p>
<p>As interim solution, you may be able to housekeep some folders from following locations.</p>
<p>1. You can clear the folders from</p>
<p>C:\Program Files\Common Files\Symantec Shared\VirusDefs but leave the latest definition folders.</p>
<p>2. Delete all files/folders from</p>
<p>C:\Documents and Settings\All Users\Application Data\Symantec\LiveUpdate\Downloads</p>
<p>&nbsp;</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/c-drive-is-full-with-symantec-antivirus-cache-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rotate landing pages for PPV offers</title>
		<link>http://www.myinfo-corner.com/techno/rotate-landing-pages-for-ppv-offers/</link>
		<comments>http://www.myinfo-corner.com/techno/rotate-landing-pages-for-ppv-offers/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 17:59:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet marketing]]></category>
		<category><![CDATA[PPV]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=376</guid>
		<description><![CDATA[Everyone working on internet marketing knows that it is required to rotate landing pages to test which landing pages can have better CTR and convert better. Here is code which I have been using. 1. Create index.php and paste the following code. $landingpage[1] = is where you need to keep on adding landingpages as $landingpage[1], [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Everyone working on internet marketing knows that it is required to rotate landing pages to test which landing pages can have better CTR and convert better. Here is code which I have been using.</p>
<p>1. Create index.php and paste the following code. $landingpage[1] =</p>
<p>is where you need to keep on adding landingpages as $landingpage[1], $landingpage[2], $landingpage[3] and so on. all landing pages should be in same directory.</p>
<p>&#8212;&#8212;&#8212;</p>
<p>&lt;?</p>
<p>//Tracking202 Landing Page Rotation Script</p>
<p>//landing pages filenames, theses will be rotated between eachother<br />
//theses landing pages must be in the same DIRECTORY as this file<br />
//you can add as many landing pages here as you like<br />
$landingpage[1] = &#8216;fb1.htm&#8217;;<br />
$landingpage[2] = &#8216;fb2.htm&#8217;;</p>
<p>//this is the text file, which will be stored in the same directory as this file,<br />
//count.txt needs to be CHMOD to 777, full privlledges, to read and write to it.<br />
$myFile = &#8220;count.txt&#8221;;</p>
<p>//open the txt file<br />
$fh = @fopen($myFile, &#8216;r&#8217;);<br />
$lpNumber = @fread($fh, 5);<br />
@fclose($fh);</p>
<p>//see which landing page is next in line to be shown.<br />
if ($lpNumber &gt;= count($landingpage)) {<br />
$lpNumber = 1;<br />
} else {<br />
$lpNumber = $lpNumber + 1;<br />
}</p>
<p>//write to the txt file.<br />
$fh = fopen($myFile, &#8216;w&#8217;) or die(&#8220;can&#8217;t open file&#8221;);<br />
$stringData = $lpNumber . &#8220;\n&#8221;;<br />
fwrite($fh, $stringData);<br />
fclose($fh);</p>
<p>//include the landing page<br />
include_once($landingpage[$lpNumber]);</p>
<p>//terminate script<br />
die();</p>
<p>?&gt;</p>
<p>&#8212;&#8212;&#8211;</p>
<p>2. Create count.txt , empty file</p>
<p>3. I have more than one scripts to rotate landing pages and I can&#8217;t recall where I copied this code from but this really is helpful to me. I am grateful to the person who posted this code on internet.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/rotate-landing-pages-for-ppv-offers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to create disk partition more than 2TB in window2003 server</title>
		<link>http://www.myinfo-corner.com/techno/unable-to-create-disk-partition-more-than-2tb-in-window2003-server/</link>
		<comments>http://www.myinfo-corner.com/techno/unable-to-create-disk-partition-more-than-2tb-in-window2003-server/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 08:48:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Admin Notes]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=371</guid>
		<description><![CDATA[As windows used 32bit block numbers lowest storage stack, this actually limit to support single storage drives (LUNs) using hardware raid not having more than 2TB.  In order to have logical disk more than 2TB, disk format must convert from MBR (Master boot record) to GPT (GUID partition tables) to be usable. How to convert [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>As windows used 32bit block numbers lowest storage stack, this actually limit to support single storage drives (LUNs) using hardware raid not having more than 2TB.  In order to have logical disk more than 2TB, disk format must convert from MBR (Master boot record) to GPT (GUID partition tables) to be usable.</p>
<p><strong>How to convert from MBR to GPT</strong></p>
<p>1. download<strong> diskpart </strong></p>
<p>2. use diskpart command. Open command prompt-&gt; type <strong>diskpart </strong></p>
<p>3. at diskpart prompt, type <strong>list disk.</strong></p>
<p>4. at the diskpart prompt, type <strong>select disk &lt;disk number&gt;</strong></p>
<p>5. at the diskpart prompt, type <strong>clean. </strong>Clean command will delete partitions and volumns on the disk</p>
<p>6. then type <strong>convert gpt</strong></p>
<p><strong><br />
</strong></p>
<p>references:</p>
<div><a title="blocked::http://msdn.microsoft.com/en-us/windows/hardware/gg463528" href="http://msdn.microsoft.com/en-us/windows/hardware/gg463528">http://msdn.microsoft.com/en-us/windows/hardware/gg463528</a></div>
<div><a title="blocked::http://technet.microsoft.com/en-us/library/cc725671.aspx" href="http://technet.microsoft.com/en-us/library/cc725671.aspx">http://technet.microsoft.com/en-us/library/cc725671.aspx</a></div>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/unable-to-create-disk-partition-more-than-2tb-in-window2003-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress database error Table &#8216;tablename.wp_options&#8217; doesn&#8217;t exist for query SELECT option_value FROM wp_options WHERE option_name&#8230;..</title>
		<link>http://www.myinfo-corner.com/techno/wordpress-database-error-table-tablename-wp_options-doesnt-exist-for-query-select-option_value-from-wp_options-where-option_name/</link>
		<comments>http://www.myinfo-corner.com/techno/wordpress-database-error-table-tablename-wp_options-doesnt-exist-for-query-select-option_value-from-wp_options-where-option_name/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 21:45:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=359</guid>
		<description><![CDATA[What happened to me was I changed my website DNS to new host's DNS and website stop working and redirects to wordpress installation page and wordpress log file showed above error..........]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>What happened to me was I changed my website DNS to new host&#8217;s DNS and website stop working and redirects to wordpress installation page and wordpress log file showed above error.</p>
<p>WordPress forum has some methods to resolve this issue but it didn&#8217;t work for me or rather I don&#8217;t want to change codes and test again and again. Hence, I did try myself to resolve it.</p>
<p>Here is how i did it.</p>
<p>1. I downloaded lastest version of wordpress and overwrite wp-includes and wp-admin folders of current website</p>
<p>2. Go to phpMyadmin and export the database of website.</p>
<p>3. Then create new database and import database</p>
<p>To see How to create/export/import database/change new database, <a href="http://youtu.be/aS2drk0lFe8">Click  here.</a></p>
<p>4. After everything is done, update wp-config.php with new database.</p>
<p><a href="http://youtu.be/JmLlbFiWJjg">How to create database in cpanel</a></p>
<p>The procedure is the almost the same as moving site from one host to another. That should be able to resolve this error if you have tried different methods and still unable to resolve.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/wordpress-database-error-table-tablename-wp_options-doesnt-exist-for-query-select-option_value-from-wp_options-where-option_name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Uninstaller</title>
		<link>http://www.myinfo-corner.com/techno/useful-uninstaller/</link>
		<comments>http://www.myinfo-corner.com/techno/useful-uninstaller/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 07:34:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=354</guid>
		<description><![CDATA[Sometimes it is difficult to uninstall software cleanly from add/remove programs. It doesn&#8217;t clean registry and leftover files/folders. This prevents from installing new software or work new program properly. Shareware software, Revo is one good software to clean program and able to trace registry settings, files associated with program. Instead of manually cleaning registry settings, [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Sometimes it is difficult to uninstall software cleanly from add/remove programs. It doesn&#8217;t clean registry and leftover files/folders. This prevents from installing new software or work new program properly.</p>
<p>Shareware software, Revo is one good software to clean program and able to trace registry settings, files associated with program. Instead of manually cleaning registry settings, it is worth to try with 30 days free trial.</p>
<p>http://www.revouninstaller.com/</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/useful-uninstaller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unappendable (End Marker Unreadable)</title>
		<link>http://www.myinfo-corner.com/techno/unappendable-end-marker-unreadable/</link>
		<comments>http://www.myinfo-corner.com/techno/unappendable-end-marker-unreadable/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 07:13:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Admin Notes]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=352</guid>
		<description><![CDATA[If you encounter end marker unreadable in symantec backup exec, follow symantec link as below. http://www.symantec.com/business/support/index?page=content&#038;id=TECH50884 This helps to resolve my issue &#160;]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>If you encounter end marker unreadable in symantec backup exec, follow symantec link as below.</p>
<p>http://www.symantec.com/business/support/index?page=content&#038;id=TECH50884</p>
<p>This helps to resolve my issue</p>
<p>&nbsp;</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/unappendable-end-marker-unreadable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>0xe000fe7d &#8211; Access is denied. To back up or restore System State, administrator privileges are required</title>
		<link>http://www.myinfo-corner.com/techno/0xe000fe7d-access-is-denied-to-back-up-or-restore-system-state-administrator-privileges-are-required/</link>
		<comments>http://www.myinfo-corner.com/techno/0xe000fe7d-access-is-denied-to-back-up-or-restore-system-state-administrator-privileges-are-required/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 07:30:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Admin Notes]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=346</guid>
		<description><![CDATA[System states access rights issued can be resolved by following below steps. This is to bypass the authentication on master and media servers....]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>System states access rights issued can be resolved by following below steps. This is to bypass the authentication on master and media servers.</p>
<p>1. Locate <strong>HKEY_LOCAL_MACHINE\Software\Symantec\Backup Exec for Windows\backup Exec\Engine\NTFS</strong></p>
<p>2. Risht click -&gt; New DWORD Value -&gt; Type useAdSSCheck as value name.</p>
<p>3. Ensure value must be 0.</p>
<p>4. Restart netbackup services on both master and media servers.</p>
<p><strong><br />
</strong></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/0xe000fe7d-access-is-denied-to-back-up-or-restore-system-state-administrator-privileges-are-required/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The .DR file that is required for Intelligent Disaster Recovery is not updated The .DR file that is required for Intelligent Disaster Recovery is not updated</title>
		<link>http://www.myinfo-corner.com/techno/the-dr-file-that-is-required-for-intelligent-disaster-recovery-is-not-updated-the-dr-file-that-is-required-for-intelligent-disaster-recovery-is-not-updated/</link>
		<comments>http://www.myinfo-corner.com/techno/the-dr-file-that-is-required-for-intelligent-disaster-recovery-is-not-updated-the-dr-file-that-is-required-for-intelligent-disaster-recovery-is-not-updated/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 04:09:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Admin Notes]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=343</guid>
		<description><![CDATA[Symantec tech note should be followed as below http://www.symantec.com/business/support/index?page=content&#038;id=TECH36571]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Symantec tech note should be followed as below</p>
<p>http://www.symantec.com/business/support/index?page=content&#038;id=TECH36571</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/the-dr-file-that-is-required-for-intelligent-disaster-recovery-is-not-updated-the-dr-file-that-is-required-for-intelligent-disaster-recovery-is-not-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to add Unix clients to veritas netbackup</title>
		<link>http://www.myinfo-corner.com/techno/unable-to-add-unix-clients-to-veritas-netbackup/</link>
		<comments>http://www.myinfo-corner.com/techno/unable-to-add-unix-clients-to-veritas-netbackup/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 13:30:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System Admin Notes]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=334</guid>
		<description><![CDATA[Adding unix clients to netbackup seems very simple but you will be frustrated when you are unable to add clients and no error is prompted. Solution to resolve this is to create a job first. When you create a job using a wizard and asked for the client server name, you can either browse or [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Adding unix clients to netbackup seems very simple but you will be frustrated when you are unable to add clients and no error is prompted.</p>
<p>Solution to resolve this is to create a job first. When you create a job using a wizard and asked for the client server name, you can either browse or key in client server name (if client name is not in the network, keyin as per host file on your system &#8211; drivers/etc/hosts. It should be the same as hosts).</p>
<p>Then go to host properties-&gt; clients on veritas. Client name should be appeared there. Try to connect and see if there is any error. If there is any erorr such as error code 46 relating to access authenticated problem, you have to check host name in your client system. In solaris, default installation path of veritas is</p>
<p>/usr/openv/netbackup/bp.conf</p>
<p>view bp.conf and check the server name. It should be the same name as you placed under etc/hosts.</p>
<p>This is very simple but i have wasted few hours trying to figure out why veritas can&#8217;t add clients.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>a waste of your time to figure out what actually happened.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/unable-to-add-unix-clients-to-veritas-netbackup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to recover netbackup catalog from wizard. How to recover veritas netback catalog without using media</title>
		<link>http://www.myinfo-corner.com/techno/unable-to-reover-netbackup-catalog-from-wizard-how-to-recover-veritas-netback-catalog-without-using-media/</link>
		<comments>http://www.myinfo-corner.com/techno/unable-to-reover-netbackup-catalog-from-wizard-how-to-recover-veritas-netback-catalog-without-using-media/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 03:28:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.myinfo-corner.com/techno/?p=331</guid>
		<description><![CDATA[My case: I am planning to migrate old netbackup server (server1) to new server with the same host name (server1). My old server has 2 media servers,server1 and server2 which means it is connected to two media servers with two different tape loaders. When i am trying to backup catalog, i have no choice but [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>My case: I am planning to migrate old netbackup server (server1) to new server with the same host name (server1). My old server has 2 media servers,server1 and server2 which means it is connected to two media servers with two different tape loaders. When i am trying to backup catalog, i have no choice but to use server2 to backup just because server1 is using SDLT loader whereas server2 and new server are using LTO so that i will be able to recover catalog using LTO tape.</p>
<p>However, the problem is new server,server1 is trying to recover catalog from tape backup used by media server,server2. I did a hot catalog backup using tape. When I tried to restore using netbackup disaster recovery wizard, there is an error something like &#8216;unable to located /usr/&#8230;&#8230;/../ from &lt;server2&gt;&#8217; . Since server name is different, it is doubtful whether I am able to recover catalog using tape.</p>
<p>In order to restore catalog, here is what i have done.</p>
<p>1. Instead of hot catalog backup, i did offline(cold) catalog backup.</p>
<p>2. Instead of tapes, i used disk backup in offline catalog backup configuration. While doing that, there is an erorr 97, requested media id is in use which actually is catalog tape being assigned to use . So  i follow this link http://www.symantec.com/business/support/index?page=content&amp;id=TECH35504 for solution. I expired catalog tape and configure offline backup to disk successfully.</p>
<p>3. I copied catalog files to new server, server1 , then use bprecovery command to recover catalog. Exact command i use is</p>
<p>bprecover -r -dpath g:\offlinecatalog.</p>
<p>Ensure not to have any space in folder name. I used g:\offline catalog which leads to invalid command.In fact, i forgot to stop following services as per symantec doc but it is still working.</p>
<p>NetBackup Service Monitor service<br />
■<br />
NetBackup Device Manager service<br />
■<br />
NetBackup Volume Manager service</p>
<p>To verify before recovery, the command bprecover -l -dpath g:\offlinecatalog can be used.</p>
<p>As for Unix, Linux, refer to symantec troubleshooting guide at</p>
<p>http://www.symantec.com/business/support/index?page=content&amp;id=TECH52829  at page 566, the most important part of whole docs.</p>
<p>This method is very simple to recover catalog. No need to rely on the media to import catalog anymore.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.myinfo-corner.com/techno/unable-to-reover-netbackup-catalog-from-wizard-how-to-recover-veritas-netback-catalog-without-using-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

