<?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>Coretanium &#187; Plesk</title>
	<atom:link href="http://www.coretanium.net/category/plesk/feed" rel="self" type="application/rss+xml" />
	<link>http://www.coretanium.net</link>
	<description>tech blah blah</description>
	<lastBuildDate>Tue, 29 Jun 2010 15:39:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>allow_url_fopen per domain</title>
		<link>http://www.coretanium.net/allow_url_fopen-per-domain</link>
		<comments>http://www.coretanium.net/allow_url_fopen-per-domain#comments</comments>
		<pubDate>Thu, 12 Mar 2009 08:35:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.xnetcore.com/?p=184</guid>
		<description><![CDATA[On Plesk you can allow allow_url_fopen per domain by editting the vhost.conf file for that domain and set the php_admin_flag as bellow.


php_admin_flag allow_url_fopen on


Once you have done this, run the Plesk magicwand

/usr/local/psa/admin/sbin/websrvmng -v -a

]]></description>
			<content:encoded><![CDATA[<p>On Plesk you can allow allow_url_fopen per domain by editting the vhost.conf file for that domain and set the php_admin_flag as bellow.</p>
<pre lang="apache">
<directory /home/httpd/vhosts/domain.com/httpdocs>
php_admin_flag allow_url_fopen on
</directory>
</pre>
<p>Once you have done this, run the Plesk magicwand</p>
<pre lang="shell">
/usr/local/psa/admin/sbin/websrvmng -v -a
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/allow_url_fopen-per-domain/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk domain status codes</title>
		<link>http://www.coretanium.net/plesk-domain-status-codes</link>
		<comments>http://www.coretanium.net/plesk-domain-status-codes#comments</comments>
		<pubDate>Tue, 02 Dec 2008 17:30:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://blog.coretanium.net/?p=58</guid>
		<description><![CDATA[List all active domains:
SELECT name FROM domains WHERE status = '0'


List all suspended domains:
SELECT name FROM domains WHERE status = '16'


List all expired (hosting) domains:
SELECT name FROM domains WHERE status = '256'


List all domains with backup/restore in progress:
SELECT name FROM domains WHERE status = '4'


List all domains suspended by client:
SELECT name FROM domains WHERE status [...]]]></description>
			<content:encoded><![CDATA[<hr /><strong>List all active domains:</strong></p>
<pre lang="sql">SELECT name FROM domains WHERE status = '0'
<span id="more-58"></span>
</pre>
<hr /><strong>List all suspended domains:</strong></p>
<pre lang="sql">SELECT name FROM domains WHERE status = '16'
<!--more-->
</pre>
<hr /><strong>List all expired (hosting) domains:</strong></p>
<pre lang="sql">SELECT name FROM domains WHERE status = '256'
<!--more-->
</pre>
<hr /><strong>List all domains with backup/restore in progress:</strong></p>
<pre lang="sql">SELECT name FROM domains WHERE status = '4'
<!--more-->
</pre>
<hr /><strong>List all domains suspended by client:</strong></p>
<pre lang="sql">SELECT name FROM domains WHERE status = '64'
<!--more-->
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/plesk-domain-status-codes/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How can I install custom Ruby web applications?</title>
		<link>http://www.coretanium.net/how-can-i-install-custom-ruby-web-applications</link>
		<comments>http://www.coretanium.net/how-can-i-install-custom-ruby-web-applications#comments</comments>
		<pubDate>Sat, 29 Nov 2008 19:37:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://blog.coretanium.net/?p=3</guid>
		<description><![CDATA[To install on your site an application written in Ruby:
1 On your Home page, under Hosting, click Setup.
2 Select the CGI and FastCGI check boxes, and click OK.
3 Connect to your FTP account, change to the /htdocs directory, and create a subdirectory where the application files will reside. Let’s call this directory your_application, for illustration [...]]]></description>
			<content:encoded><![CDATA[<div class="bText">
<p>To install on your site an application written in Ruby:</p>
<p>1 On your Home page, under Hosting, click Setup.</p>
<p>2 Select the CGI and FastCGI check boxes, and click OK.</p>
<p>3 Connect to your FTP account, change to the /htdocs directory, and create a subdirectory where the application files will reside. Let’s call this directory your_application, for illustration purposes.</p>
<p>4 Upload the application files to the httpsdocs/your_application directory.</p>
<p>5 Create a file with name .htaccess in this directory, open it with a text editor of your choice and add the following lines into the file:</p>
<p>RewriteEngine On RewriteRule ^$ /public/index.html [L]<br />
RewriteCond %{REQUEST_URI} !^/your_application/public<br />
RewriteRule ^(.*)$ /public/$1 [L] RewriteCond<br />
%{REQUEST_FILENAME} !-f RewriteRule ^(.*)$<br />
public/dispatch.fcgi/$1 [QSA,L]</p>
<p>6 Save the file.</p>
<p>7 Remove the file your_application/public/.htaccess</p>
<p>8 Open the file your_application/public/dispatch.fcgi with a text editor and put the following lines there: #!/usr/bin/ruby</p>
<p>9 Save the file.</p>
<p>Now the web application will be accessible at the following URL: <a href="http://yourdomain.com/your_application">http://yourdomain.com/your_application</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/how-can-i-install-custom-ruby-web-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
