<?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>PleskHacker &#187; misc</title> <atom:link href="http://pleskhacker.com/tag/misc/feed/" rel="self" type="application/rss+xml" /><link>http://pleskhacker.com</link> <description>Detailed documentation of the Plesk database</description> <lastBuildDate>Thu, 03 Jun 2010 13:00:52 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>Enable piped logs in Apache</title><link>http://pleskhacker.com/sql-queries/enable-piped-logs-in-apache/</link> <comments>http://pleskhacker.com/sql-queries/enable-piped-logs-in-apache/#comments</comments> <pubDate>Fri, 26 Sep 2008 02:56:20 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[MySQL Queries]]></category> <category><![CDATA[Web Queries]]></category> <category><![CDATA[apache]]></category> <category><![CDATA[misc]]></category> <category><![CDATA[piped logs]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=271</guid> <description><![CDATA[Run the following MySQL query: REPLACE INTO psa.misc &#40;param,val&#41; VALUES &#40;'apache_pipelog', 'true'&#41;; Rebuild the Apache configuration files: /usr/local/psa/admin/sbin/websrvmng -av Restart Apache: /etc/init.d/httpd restart]]></description> <content:encoded><![CDATA[<p>Run the following MySQL query:</p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">REPLACE</span> <span style="color: #990099; font-weight: bold;">INTO</span> psa.misc <span style="color: #FF00FF;">&#40;</span>param<span style="color: #000033;">,</span>val<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">VALUES</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">'apache<span style="color: #008080; font-weight: bold;">_</span>pipelog'</span><span style="color: #000033;">,</span> <span style="color: #008000;">'true'</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span></pre></div></div><p>Rebuild the Apache configuration files:</p><div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">/usr/local/psa/admin/sbin/websrvmng -av</pre></div></div><p>Restart Apache:</p><div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">/etc/init.d/httpd restart</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/sql-queries/enable-piped-logs-in-apache/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>psa.misc</title><link>http://pleskhacker.com/all-tables/psa_misc/</link> <comments>http://pleskhacker.com/all-tables/psa_misc/#comments</comments> <pubDate>Tue, 23 Sep 2008 04:19:51 +0000</pubDate> <dc:creator>major</dc:creator> <category><![CDATA[All Tables]]></category> <category><![CDATA[Server]]></category> <category><![CDATA[misc]]></category><guid isPermaLink="false">http://pleskhacker.com/?p=157</guid> <description><![CDATA[Overview The misc table contains server-level configuration details. Column Descriptions param &#8211; parameter keyword val &#8211; value that corresponds to the parameter Table Structure CREATE TABLE `misc` &#40; `param` varchar&#40;255&#41; character set ascii collate ascii_bin NOT NULL default '', `val` varbinary&#40;255&#41; NOT NULL default ' ', PRIMARY KEY &#40;`param`&#41; &#41; ENGINE=InnoDB DEFAULT CHARSET=latin1]]></description> <content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;">Overview</span></strong><br /> The <code>misc</code> table contains server-level configuration details.</p><p><strong><span style="text-decoration: underline;">Column Descriptions</span></strong><br /> <strong>param</strong> &#8211; parameter keyword<br /> <strong>val</strong> &#8211; value that corresponds to the parameter</p><p><strong><span style="text-decoration: underline;">Table Structure</span></strong></p><div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #008000;">`misc`</span> <span style="color: #FF00FF;">&#40;</span>
 <span style="color: #008000;">`param`</span> <span style="color: #999900; font-weight: bold;">varchar</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> character <span style="color: #990099; font-weight: bold;">set</span> <span style="color: #000099;">ascii</span> <span style="color: #CC0099; font-weight: bold;">collate</span> ascii_bin <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">''</span><span style="color: #000033;">,</span>
 <span style="color: #008000;">`val`</span> <span style="color: #999900; font-weight: bold;">varbinary</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">255</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span> <span style="color: #990099; font-weight: bold;">default</span> <span style="color: #008000;">'                                                                                                                                                                                                                                                               '</span><span style="color: #000033;">,</span>
 <span style="color: #990099; font-weight: bold;">PRIMARY KEY</span>  <span style="color: #FF00FF;">&#40;</span><span style="color: #008000;">`param`</span><span style="color: #FF00FF;">&#41;</span>
<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">ENGINE</span><span style="color: #CC0099;">=</span><span style="color: #990099; font-weight: bold;">InnoDB</span> <span style="color: #990099; font-weight: bold;">DEFAULT</span> <span style="color: #FF9900; font-weight: bold;">CHARSET</span><span style="color: #CC0099;">=</span>latin1</pre></div></div>]]></content:encoded> <wfw:commentRss>http://pleskhacker.com/all-tables/psa_misc/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching using disk: basic
Object Caching 238/288 objects using disk: basic

Served from: pleskhacker.com @ 2012-05-19 00:35:06 -->
