<?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>OpenKB::Server Technical Papers &#187; Uncategorized</title>
	<atom:link href="http://www.openkb.org/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.openkb.org</link>
	<description>Computer , server issues and solutions</description>
	<lastBuildDate>Thu, 02 Feb 2012 16:50:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SOPA Protest</title>
		<link>http://www.openkb.org/sopa_protest/</link>
		<comments>http://www.openkb.org/sopa_protest/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 07:52:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=1099</guid>
		<description><![CDATA[We at OPENKB are highly against the SOPA Bill, Please join us in the protest against the bill .  &#160; &#160; &#160; &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p><strong>We at OPENKB are highly against the SOPA Bill, Please join us in the protest against the bill . </strong></p>
<p>&nbsp;</p>
<p><img class="alignnone" src="http://www.anunews.net/blog/wp-content/uploads/2012/01/aa-SOPA-government-censorship-300x207.jpg" alt="" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/sopa_protest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blackberry: Unable to Delete contact list</title>
		<link>http://www.openkb.org/blackberry-unable-to-delete-contact-list/</link>
		<comments>http://www.openkb.org/blackberry-unable-to-delete-contact-list/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 07:24:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=1078</guid>
		<description><![CDATA[I was helping a friend/associate of mine with his CrackBerry. (android insider) We spent hours trying to find a way to delete one of his contact list. You would think this was a easy task. Select list , click delete NO this was not the case. After 3 wipes of the device and 3-4 restores. [...]]]></description>
			<content:encoded><![CDATA[<p>I was helping a friend/associate of mine with his CrackBerry. (android insider) We spent hours trying to find a way to delete one of his contact list. You would think this was a easy task. Select list , click delete </p>
<p>NO this was not the case. After 3 wipes of the device and 3-4 restores. The simple fix was to go to contacts, select the list , then click on options, bring up the keyboard and type rset. </p>
<p>A new window will pop up on the phone&#8217;s screen, which will ask you if you want to wipe the contacts.</p>
<p>Simply choose YES and go through all windows. You will then be able to wirelessly sync or use Desktop Manager to repopulate contacts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/blackberry-unable-to-delete-contact-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql: Innodb storage issues- ibdata1</title>
		<link>http://www.openkb.org/mysql-innodb-storage-issues-ibdata1/</link>
		<comments>http://www.openkb.org/mysql-innodb-storage-issues-ibdata1/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 23:36:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=1072</guid>
		<description><![CDATA[We encountered a System Administrator Nightmare. Received notice that a server was running low on /var storage. After checking the server we found that the mysql folder was using 9GB. Come to find out it was only one particular file that was using 7GB which was ibdata1. When the server was launch we did not [...]]]></description>
			<content:encoded><![CDATA[<p>We encountered a System Administrator Nightmare. Received notice that a server was running low on /var storage. After checking the server we found that the mysql folder was using 9GB. Come to find out it was only one particular file that was using 7GB which was ibdata1. When the server was launch we did not disable Innodb which use this file for storage. The file grows and grows without regard to server space. There is no truncate or shrink option for this file.<br />
So my question is why use Innodb? Send me a response on Twitter , G+ or Facebook. I want to know seriously , you can my contact info on the <a href="http://www.openkb.org/about/">about page </a></p>
<p>Below is what I had to do to correct the issue.<br />
1. Perform a entire dump of OF THE databases on the server. Roughly about 2GB of data .<br />
2. Stop the service<br />
3. Move the current mysql data folder to another partition.<br />
Command: mv /var/lib/mysql /home/mysql_backup<br />
4. Recreate the folder /var/lib/mysql<br />
Command: mkdir /var/lib/mysql and then: Chown mysql:mysql /var/lib/mysql<br />
<b> Note: if the permissions are not correct you will receive a error such as &#8220;ERROR! Manager of pid-file quit without updating file.&#8221; </b><br />
5. next you will need to locate and run mysql_install_db<br />
<b> Note: mysql_install_db initializes the MySQL data directory and creates the system tables that it contains, if they do not exist.  </b><br />
6. you may want to add the following to your /etc/my.cnf file<br />
innodb_file_per_table </p>
<p>7. Start the service<br />
8. Enter the mysql console and run each command individually<br />
SET FOREIGN_KEY_CHECKS=0;<br />
SOURCE backup.SQL;  < when running this command it may be best to be in the directory when you backed up the mysqldump. or you can specify the path to the file. Replace backup.sql with the actual file name of the dump<br />
SET FOREIGN_KEY_CHECKS=1;</p>
<p>9. Restart the service and confirm the data.<br />
Estimated turn around time: 1-2 hours depending on the database size</p>
<p><a href="http://dev.mysql.com/doc/refman/5.5/en/mysqldump.html">MysqlDump</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/mysql-innodb-storage-issues-ibdata1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Off Topic: Netflix New pricing Effective 8/1/2011</title>
		<link>http://www.openkb.org/off-topic-netflix-new-pricing-effective-812011/</link>
		<comments>http://www.openkb.org/off-topic-netflix-new-pricing-effective-812011/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 17:13:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=983</guid>
		<description><![CDATA[:( Netflix is forcing us to make a life changing decision. no really they are  see the new pricing below. Unlimited Plans Unlimited Streaming (no DVDs) Unlimited Streaming  $7.99 a month Watch instantly as often as you want on your PC, Mac or TV Includes Starz Play service Unlimited DVDs (no streaming) Exchange DVDs as often [...]]]></description>
			<content:encoded><![CDATA[<fieldset id="unlimited-plans">
<h1>:( Netflix is forcing us to make a life changing decision. no really they are  see the new pricing below.</h1>
<h1></h1>
<h1>Unlimited Plans</h1>
<h2>Unlimited Streaming (no DVDs)</h2>
<ul>
<li>Unlimited Streaming
<div><label></p>
<input id="2909" type="radio" name="option" value="2909" /> $7.99 a month</label></div>
<ul>
<li>Watch instantly as often as you want on your PC, Mac or TV</li>
<li>Includes Starz Play service</li>
</ul>
</li>
</ul>
<h2>Unlimited DVDs (no streaming)</h2>
<ul>
<li>Exchange DVDs as often as you want</li>
<li>Click here to <a href="https://www.netflix.com/MediaSelection/MediaPref">add Blu-ray access for an additional cost</a></li>
</ul>
<ul>
<li>1 DVD out at-a-time
<div><label></p>
<input id="2984" type="radio" name="option" value="2984" />$7.99 a month</label></div>
</li>
<li>As of 08/12/2011 you will be on this plan:</li>
<li>2 DVDs out at-a-time
<div><label></p>
<input id="2986" type="radio" name="option" value="2986" checked="checked" />$11.99 a month</label></div>
</li>
</ul>
<div><a id="dvdToggle" href="https://www.netflix.com/SubscriptionChange?lnkctr=yas_change&amp;nfso=60751078&amp;trkid=496625&amp;showDVD=true" data-toggletext="Hide Additional all DVD Plans">Show Additional all DVD Plans</a></div>
<h2>Unlimited Streaming + DVDs</h2>
<ul>
<li>Watch instantly as often as you want on your PC, Mac, or TV</li>
<li>Includes Starz Play service</li>
<li>Exchange DVDs as often as you want</li>
<li>Click here to <a href="https://www.netflix.com/MediaSelection/MediaPref">add Blu-ray access for an additional cost</a></li>
</ul>
<ul>
<li>Unlimited Streaming
<div>+ 1 DVD out at-a-time</div>
<div><label></p>
<input id="2968" type="radio" name="option" value="2968" />$15.98 a month</label></div>
</li>
<li>Unlimited Streaming
<div>+ 2 DVDs out at-a-time</div>
<div><label></p>
<input id="2970" type="radio" name="option" value="2970" />$19.98 a month</label></div>
</li>
<li>Unlimited Streaming
<div>+ 3 DVDs out at-a-time</div>
<div><label></p>
<input id="2972" type="radio" name="option" value="2972" />$23.98 a month</label></div>
</li>
<li>Unlimited Streaming
<div>+ 4 DVDs out at-a-time</div>
<div><label></p>
<input id="2974" type="radio" name="option" value="2974" />$29.98 a month</label></div>
</li>
</ul>
<div><a id="unlimToggle" href="https://www.netflix.com/SubscriptionChange?lnkctr=yas_change&amp;nfso=60751078&amp;trkid=496625&amp;showUnlim=true" data-toggletext="Hide additional Instant + DVD Plans">Show additional Instant + DVD Plans</a></div>
</fieldset>
<fieldset id="limited-plans">
<h1>Limited Plans</h1>
<ul>
<li>1 DVD out at-a-time
<div>(limit 2 rentals a month)</div>
<div><label></p>
<input id="1467" type="radio" name="option" value="1467" /> $4.99 a month</label></div>
<ul>
<li>Watch instantly (up to 2 hours a month) on your PC or Mac</li>
<li>A Netflix ready device cannot be used with this plan</li>
</ul>
</li>
</ul>
</fieldset>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/off-topic-netflix-new-pricing-effective-812011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.net : Integrated managed pipeline mode</title>
		<link>http://www.openkb.org/asp-net-integrated-managed-pipeline-mode/</link>
		<comments>http://www.openkb.org/asp-net-integrated-managed-pipeline-mode/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 02:39:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=940</guid>
		<description><![CDATA[error : An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode &#160; adding the following code to your web.config file should resolve this error &#160; &#160; &#60;system.webServer&#62; &#60;validation validateIntegratedModeConfiguration="false" /&#62; &#60;/system.webServer&#62; &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>error :</p>
<h3>An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode</h3>
<p>&nbsp;</p>
<p>adding the following code to your web.config file should resolve this error</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><code><br />
&lt;system.webServer&gt;<br />
    &lt;validation validateIntegratedModeConfiguration="false" /&gt;<br />
&lt;/system.webServer&gt;</code></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/asp-net-integrated-managed-pipeline-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP. Disable functions</title>
		<link>http://www.openkb.org/php-disable-functions/</link>
		<comments>http://www.openkb.org/php-disable-functions/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 04:48:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=938</guid>
		<description><![CDATA[You can disable any PHP functions via the php.ini file. You will need to add the function name to the disable_functions list. openkb.org]]></description>
			<content:encoded><![CDATA[<p>You can disable any PHP functions via the php.ini file. You will need to add the function name to the disable_functions list.</p>
<p>openkb.org</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/php-disable-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASN1 bad tag value met. 0x8009310b (IIS7)</title>
		<link>http://www.openkb.org/asn1-bad-tag-value-met-0x8009310b/</link>
		<comments>http://www.openkb.org/asn1-bad-tag-value-met-0x8009310b/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 05:02:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=837</guid>
		<description><![CDATA[Error encountered when trying to complete a SSL certificate within iis 7 CertEnroll::Cx509Enrollment::p_InstallResponse: ASN1 bad tag value met. 0x8009310b Theory: We believe this error occurs when Windows forget where the CSR key was placed. repairing a damaged certificate. You will need to first open the Certificate snap-in following the instructions outlines here You will need [...]]]></description>
			<content:encoded><![CDATA[<p>Error encountered when trying to complete a SSL certificate within iis 7</p>
<p>CertEnroll::Cx509Enrollment::p_InstallResponse: ASN1 bad tag value met. 0x8009310b</p>
<p>Theory: We believe this error occurs when Windows forget where the CSR key was placed.</p>
<p>repairing a damaged certificate.</p>
<p>You will need to first open the Certificate snap-in following the instructions outlines <a href="http://msdn.microsoft.com/en-us/library/ms788967.aspx" target="_blank">here </a></p>
<p>You will need to open the snap-in for the local computer and user.</p>
<p>Repair option 1.</p>
<p>Open up DOS prompt (cmd.exe)</p>
<p>Type: certutil -repairstore my &#8220;THUMBPRINT/SERIALNUMBER&#8221;</p>
<p>(Follow the <a href="https://support.comodo.com/index.php?_m=knowledgebase&amp;_a=viewarticle&amp;kbarticleid=1274" target="_blank">instructions here </a> on how to obtain the serial number)</p>
<p>Go back into the IIS Manager and re-edit the bindings for this site. (Where you can select the certificate.</p>
<p>Note: Sometimes, you will get an error, so just ignore the error and try again. When trying again, the certificate may already be selected and nothing else needs to be done.</p>
<p>Option #2: Restore Certificate to the Local Computer Store</p>
<p>Open the Certificate Snap-In from within the MMC (Microsoft Management Console)<br />
Start -&gt; Run -&gt; Type &#8220;mmc&#8221; -&gt; File -&gt; Add/Remove Snap-in -&gt; Add -&gt; Certificates</p>
<p>Add Current User account.<br />
My User Account -&gt; Finish.</p>
<p>Add Local Computer account.<br />
Computer account -&gt; Local Computer -&gt; Finish.</p>
<p>Close Add Standalone Snap-in.</p>
<p>Click Ok.</p>
<p>Drag the certificate that will not install, out of the Other People store and drop it under the Local Computer -&gt; Personal -&gt; Certificates.</p>
<p>Do not close out of the MMC at this time.</p>
<p>Open up a command prompt.<br />
Start -&gt; Run -&gt; Type cmd.</p>
<p>Type: certutil -repairstore my &#8220;THUMBPRINT_OF_CERTIFICATE&#8221;. (with quotes)</p>
<p>You should now have the private key back on the certificate so now open up IIS and assign it to your website.</p>
<p>**This article is currently being modified *** to be completed on 10/8/10</p>
<p><!-- reference https://support.comodo.com/index.php?_m=knowledgebase&#038;_a=viewarticle&#038;kbarticleid=1222 --></p>
<p>Short version:**<br />
1. click run and enter inetmgr<br />
2. click the server name in the IIS Manager, Double-click on Server Certificates.<br />
3. Under actions on the left click on import<br />
4. locate your pfx file and import the cert to the server.<br />
5. bind the new ssl cert to the virtual host</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/asn1-bad-tag-value-met-0x8009310b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Miva_cart:  Unable to find function &#8216;SystemModule_Action&#8217;</title>
		<link>http://www.openkb.org/miva_cart-unable-to-find-function-systemmodule_action/</link>
		<comments>http://www.openkb.org/miva_cart-unable-to-find-function-systemmodule_action/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 07:44:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=819</guid>
		<description><![CDATA[Error: Runtime error in 5.00/merchant.mvc @ [00000002:00000168]: merchant.mv: Line 223: MvDO: Unable to find function &#8216;SystemModule_Action&#8217; issue: This is caused by a outdated module being enabled. You will need to locate this module and disable it. If you intend to continue using it, you will need to update it.]]></description>
			<content:encoded><![CDATA[<p>Error:<br />
Runtime error in 5.00/merchant.mvc @ [00000002:00000168]: merchant.mv:  Line 223: MvDO: Unable to find function &#8216;SystemModule_Action&#8217;</p>
<p>issue:<br />
This is caused by a outdated module being enabled. You will need to locate this module and disable it. If you intend to continue using it, you will need to update it. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/miva_cart-unable-to-find-function-systemmodule_action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML: Using the alt tag</title>
		<link>http://www.openkb.org/html-using-the-alt-tag/</link>
		<comments>http://www.openkb.org/html-using-the-alt-tag/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 02:00:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=694</guid>
		<description><![CDATA[Per the w3c Standards the alt tag is used to serve as content when the element(image) cannot be rendered normally. The means the value define by the alt tag should only display if the image is not available. It was not meant to be used as a tooltip but earlier version of internet explorer ignored [...]]]></description>
			<content:encoded><![CDATA[<p>Per the w3c Standards the alt tag is used to serve as content when the element(image) cannot be rendered normally. The means the value define by the alt tag should only display if the image is not available. It was not meant to be used as a tooltip but earlier version of internet explorer ignored this specification. This standard was adopted in IE 7 and above. This has always been the case with Firefox ,and Opera. if you are looking for a tooltip to pop up then you will need to use the title tag.</p>
<p>  <a href="http://www.w3.org/TR/1999/REC-html401-19991224/struct/objects.html#h-13.8">13.8 How to specify alternate text</a><br />
<a href="http://www.w3.org/TR/1999/REC-html401-19991224/struct/global.html#adef-title">7.4.3 The title attribute</a></p>
<p><a href="http://robertnyman.com/2009/05/07/the-alt-attribute-is-not-for-tooltips/">Tooltips</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/html-using-the-alt-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paypal Deadline</title>
		<link>http://www.openkb.org/paypal-deadline/</link>
		<comments>http://www.openkb.org/paypal-deadline/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 16:32:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openkb.org/?p=566</guid>
		<description><![CDATA[The Paypal Gateway upgrade deadline is near folks .. More information can be found at >>>>>>>> CF Custom tag to use the latest version can be downloaded from RiaForge]]></description>
			<content:encoded><![CDATA[<p>The Paypal Gateway upgrade deadline is near folks ..<br />
More information can be found at <a href="http://www.openkb.org/security_center/">>>>>>>>></a></p>
<p>CF Custom tag to use the latest version can be downloaded from <a href="http://cf_payflowpro.riaforge.org/">RiaForge</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openkb.org/paypal-deadline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

