<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>MediaCore Community &#187; Tag: deployment - Recent Topics</title>
		<link>http://mediacorecommunity.org/community/tags/deployment</link>
		<description>The support &amp; development community for MediaCore</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Feb 2012 03:11:46 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://mediacorecommunity.org/community/search.php</link>
		</textInput>
		<atom:link href="http://mediacorecommunity.org/community/rss/tags/deployment/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>nbruzzi on "Deployment Issues (Apache &#38; mod_wsgi)"</title>
			<link>http://mediacorecommunity.org/community/topic/deployment-issues-apache-mod_wsgi#post-3528</link>
			<pubDate>Mon, 06 Feb 2012 12:07:09 +0000</pubDate>
			<dc:creator>nbruzzi</dc:creator>
			<guid isPermaLink="false">3528@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;With no knowledge of what I am actually doing - (I am a complete beginner when it comes to anything of this nature) - I have MediaCore up and running on a VPS (CENTOS 6.2 i686).  I am having issues with deployment though.  As stated in &#34;Note 3&#34; from the instructions &#60;a href=&#34;http://mediacorecommunity.org/docs/install/apache-wsgi.html&#34;&#62;here&#60;/a&#62;, I have added a VirtualHost include with the additional lines needed, changed to meet my installation of course.&#60;/p&#62;
&#60;p&#62;Currently, I still receive a 404.... what might be the problem?  Apparently with my lack of any foundational knowledge in anything web related there is something I am missing! :)&#60;/p&#62;
&#60;p&#62;Help would be greatly appreciated!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sixinco on "Problem with Apache and mod_fastcgi"</title>
			<link>http://mediacorecommunity.org/community/topic/problem-with-apache-and-mod_fastcgi#post-3271</link>
			<pubDate>Wed, 02 Nov 2011 13:47:30 +0000</pubDate>
			<dc:creator>sixinco</dc:creator>
			<guid isPermaLink="false">3271@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;I have a new problem, I get a strange error:&#60;/p&#62;
&#60;p&#62;[Wed Nov 02 19:07:17 2011] [crit] (13)Permission denied: FastCGI: can't create (dynamic) server &#34;/var/www/.../my_media/mediacore.fcgi &#60;/p&#62;
&#60;p&#62;What can it be and how do I solve this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aicm on "How to Install MediaCore on Webfaction"</title>
			<link>http://mediacorecommunity.org/community/topic/how-to-install-mediacore-on-webfaction#post-836</link>
			<pubDate>Tue, 09 Nov 2010 01:25:45 +0000</pubDate>
			<dc:creator>aicm</dc:creator>
			<guid isPermaLink="false">836@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Step 1:&#60;/strong&#62; Go to your control panel and create a custom app (listening on port) - remember the port for mysql. Then login via SSH.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Step 2:&#60;/strong&#62; Get your own MySQL server.&#60;br /&#62;
Set MY_PORT variable for our my.cnf later on.&#60;br /&#62;
&#60;code&#62;MY_PORT=PUT_RESERVED_PORT_NUMBER_HERE&#60;/code&#62;&#60;br /&#62;
Make a folder to house our source.&#60;br /&#62;
&#60;code&#62;mkdir -p ~/mysql/.src ~/mysql/tmp&#60;/code&#62;&#60;br /&#62;
Get source and install it. Visit &#60;a href=&#34;http://dev.mysql.com/downloads/mysql/#downloads&#34;&#62;the downloads section at mysql.com&#60;/a&#62; and get the latest source code link. Copy it for the command below:&#60;br /&#62;
&#60;code&#62;wget &#60;a href=&#34;http://LINK/goes/here.tar.gz&#34; rel=&#34;nofollow&#34;&#62;http://LINK/goes/here.tar.gz&#60;/a&#62;&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;tar xf mysql-5.x.x.tar.gz&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;cd mysql-5.x.x&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;./configure --prefix=$HOME/mysql&#60;/code&#62;&#60;br /&#62;
You have to wait a while here.&#60;br /&#62;
&#60;code&#62;make&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;make install&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Okay, now on to config:&#60;br /&#62;
&#60;code&#62;mkdir $HOME/mysql/etc&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;cat &#38;gt; $HOME/mysql/etc/my.cnf &#38;lt;&#38;lt; EOF&#60;/code&#62;&#60;br /&#62;
now copy paste this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[mysqld]
port=$MY_PORT
socket=$HOME/mysql/mysql.sock
basedir=$HOME/mysql
datadir=$HOME/mysql/data

[client]
port=$MY_PORT
socket=$HOME/mysql/mysql.sock
EOF&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;All done. Now to export the new bin folder&#60;br /&#62;
&#60;code&#62;echo export PATH=$HOME/mysql/bin:$PATH &#38;gt;&#38;gt; ~/.bash_profile&#60;/code&#62;&#60;br /&#62;
load up changes&#60;br /&#62;
&#60;code&#62;source ~/.bash_profile&#60;/code&#62;&#60;br /&#62;
set up initial db&#60;br /&#62;
&#60;code&#62;mysql_install_db --basedir=$HOME/mysql --datadir=$HOME/mysql/data --tmpdir=$HOME/mysql/tmp&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now you can start your mysql server by using this command. You may want to add this to a cron to make sure mysqld stays on.&#60;br /&#62;
&#60;code&#62;cd $HOME/mysql; mysqld_safe --defaults-file=$HOME/mysql/etc/my.cnf  &#38;amp;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Choose a password for your root user:&#60;br /&#62;
&#60;code&#62;mysqladmin -u root -P $MY_PORT -S $HOME/mysql/mysql.sock password &#38;quot;YOURPASSWORDHERE&#38;quot;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now that we have some libs python is going to use later on, let's add them to LD_LIBRARY_PATH&#60;br /&#62;
&#60;code&#62;echo export LD_LIBRARY_PATH=$HOME/mysql/lib/mysql &#38;gt;&#38;gt; ~/.bash_profile&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Step 3:&#60;/strong&#62; On to the fun stuff -installing MediaCore.&#60;br /&#62;
Go to the control panel and add another app, this time a mod_wsgi 3.2/Python 2.5 one. &#60;/p&#62;
&#60;p&#62;Back to ssh now.&#60;br /&#62;
Give mod_wsgi what it needs for later on:&#60;br /&#62;
&#60;code&#62;cd $HOME/webapps/NAMEYOUGAVEYOURAPP/apache2/lib&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;ln -s $HOME/mysql/lib/mysql/libmysqlclient_r.so.16 ./libmysqlclient_r.so.16&#60;/code&#62;&#60;br /&#62;
Install virtualenv:&#60;br /&#62;
&#60;code&#62;cd ../../&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;easy_install-2.5 virtualenv&#60;/code&#62;&#60;br /&#62;
set up env for mediacore.&#60;br /&#62;
&#60;code&#62;virtualenv --no-site-packages mediacore_env&#60;/code&#62;&#60;br /&#62;
activate env&#60;br /&#62;
&#60;code&#62;source mediacore_env/bin/activate&#60;/code&#62;&#60;br /&#62;
There's no git, so unless you want to install it yourself or use git on your home pc and then upload mediacore files, just get the latest release of mediacore. At this time, it's 0.8.2.&#60;/p&#62;
&#60;p&#62;From here on you can follow the official installation documentation. I am including it in an attempt to save you time.&#60;br /&#62;
&#60;code&#62;wget &#60;a href=&#34;http://getmediacore.com/files/MediaCore-0.8.2.tar.gz&#34; rel=&#34;nofollow&#34;&#62;http://getmediacore.com/files/MediaCore-0.8.2.tar.gz&#60;/a&#62;&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;tar zxvf MediaCore-0.8.2.tar.gz&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;cd MediaCore-0.8.2&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;python2.5 setup.py develop&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;$HOME/mysql/bin/mysql -u root -p -S=$HOME/mysql/mysql.sock&#60;/code&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;create database DBNAMEHERE;
grant usage on DBNAMEHERE.* to DBUSER@localhost identified by &#38;#39;PASSWORDFORDBUSER&#38;#39;;
grant all privileges on DBNAMEHERE.* to DBUSER@localhost;
exit&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Edit your development.ini file and set your sqlalchemy.url to something like this. Remember to set the right MYSQLPORT - the first app you added in your control panel.&#60;br /&#62;
&#60;code&#62;sqlalchemy.url = mysql://DBUSER:PASSWORDFORDBUSER@127.0.0.1:MYSQLPORT/DBNAMEHERE?charset=utf8&#38;amp;use_unicode=0&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;paster setup-app development.ini&#60;/code&#62;&#60;br /&#62;
ok, now we have basic table structure, on to making search work:&#60;br /&#62;
&#60;code&#62;$HOME/mysql/bin/mysql -u root -p -S=$HOME/mysql/mysql.sock DBNAMEHERE &#38;lt; setup_triggers.sql&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Step 4:&#60;/strong&#62; Deploying via mod_wsgi.&#60;/p&#62;
&#60;p&#62;Get another port for MediaCore's by adding a new listening on port custom app. Edit your deployment.ini, set your email, listening port to whatever port they give you for that last custom app, and then simply copy the sqlalchemy.url over from development.ini.&#60;/p&#62;
&#60;p&#62;The rest can be the same as &#60;a href=&#34;http://getmediacore.com/docs/install/apache-wsgi.html&#34;&#62;http://getmediacore.com/docs/install/apache-wsgi.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Make sure you restart your apache server after modifying httpd.conf.&#60;br /&#62;
I'll try to answer questions for as long as I can remember to revisit this post. If you see any errors or have additions, post them below.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aicm on "0.8.2 wsgi deployment - httpd.conf invalid command &#039;allow&#039; error"</title>
			<link>http://mediacorecommunity.org/community/topic/082-wsgi-deployment-httpdconf-invalid-command-allow-error#post-772</link>
			<pubDate>Thu, 04 Nov 2010 19:16:22 +0000</pubDate>
			<dc:creator>aicm</dc:creator>
			<guid isPermaLink="false">772@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;Hello there,&#60;/p&#62;
&#60;p&#62;I am using webfaction and have managed to pull and install the latest git release of 0.8.2. Everything is working fine, except deployment as wsgi. I have user level access, no root level, however I have a feeling that this isn't my problem.&#60;/p&#62;
&#60;p&#62;I followed &#60;a href=&#34;http://getmediacore.com/docs/install/apache-wsgi.html&#34;&#62;Apache &#38;amp; mod_wsgi Deployment&#60;/a&#62; guide and have added the necessary lines to httpd.conf however when trying to start apache, I get the following error:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Syntax error on line 49 of /home/aicm/webapps/mediacore_wsgi/apache2/conf/httpd.conf:
Invalid command &#38;#39;Allow&#38;#39;, perhaps misspelled or defined by a module not included in the server configuration&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I don't know much about how apache works, but which one is the module needed to have apache understand Order, Allow and so on? I would think it's part of its core...&#60;/p&#62;
&#60;p&#62;Here's what my httpd.conf looks like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;ServerRoot &#38;quot;/home/aicm/webapps/mediacore_wsgi/apache2&#38;quot;

LoadModule dir_module        modules/mod_dir.so
LoadModule env_module        modules/mod_env.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module       modules/mod_mime.so
LoadModule rewrite_module    modules/mod_rewrite.so
LoadModule setenvif_module   modules/mod_setenvif.so
LoadModule wsgi_module       modules/mod_wsgi.so

LogFormat &#38;quot;%{X-Forwarded-For}i %l %u %t \&#38;quot;%r\&#38;quot; %&#38;gt;s %b \&#38;quot;%{Referer}i\&#38;quot; \&#38;quot;%{User-Agent}i\&#38;quot;&#38;quot; combined
CustomLog /home/aicm/logs/user/access_mediacore_wsgi.log combined
DirectoryIndex index.py
DocumentRoot /home/aicm/webapps/mediacore_wsgi/htdocs
ErrorLog /home/aicm/logs/user/error_mediacore_wsgi.log
KeepAlive Off
Listen 16225
MaxSpareThreads 3
MinSpareThreads 1
ServerLimit 1
SetEnvIf X-Forwarded-SSL on HTTPS=1
ThreadsPerChild 5
WSGIDaemonProcess mediacore_wsgi processes=5 python-path=/home/aicm/webapps/mediacore_wsgi/lib/python2.6 threads=1

&#38;lt;Directory /home/aicm/webapps/mediacore_wsgi/htdocs&#38;gt;
    AddHandler wsgi-script .py
&#38;lt;/Directory&#38;gt;

# You can tweak the WSGIDaemonProcess directive for performance, but this
# will work for now.
# Relevant doc pages:
#     &#60;a href=&#34;http://code.google.com/p/modwsgi/wiki/ProcessesAndThreading&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/modwsgi/wiki/ProcessesAndThreading&#60;/a&#62;
#     &#60;a href=&#34;http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIDaemonProcess&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGIDaemonProcess&#60;/a&#62;
# Hint: pay attention to issues surrounding worker-mpm and prefork-mpm.

WSGIDaemonProcess mcore \
    threads=10 \
    display-name=%{GROUP} \
    python-path=/home/aicm/webapps/mediacore_wsgi/htdocs/9beta/lib/python2.5/site-packages \
    python-eggs=/home/aicm/webapps/mediacore_wsgi/htdocs/mediacore9beta/data/python-egg-cache

WSGIProcessGroup mcore

# Intercept all requests to /my_media/* and pass them to mediacore.wsgi
WSGIScriptAlias / /home/aicm/webapps/mediacore_wsgi/htdocs/mediacore9beta/deployment-scripts/mod_wsgi/mediacore.wsgi

# Make the url accessible (just in case it&#38;#39;s not already)
&#38;lt;Location &#38;quot;/&#38;quot;&#38;gt;
    Allow from all
&#38;lt;/Location&#38;gt;

# Make the wsgi script accessible
&#38;lt;Directory /home/aicm/webapps/mediacore_wsgi/htdocs/mediacore9beta/deployment-scripts/mod_wsgi&#38;gt;
    Order allow,deny
    Allow from all
&#38;lt;/Directory&#38;gt;

# Create exceptions for all static content
AliasMatch /(admin/)?(images&#124;scripts&#124;styles)(/?.*) /home/aicm/webapps/mediacore_wsgi/htdocs/mediacore9beta/mediacore/public/$1$2$3

# Make all the static content accessible
&#38;lt;Directory /home/aicm/webapps/mediacore_wsgi/htdocs/mediacore9beta/mediacore/public/*&#38;gt;
    Order allow,deny
    Allow from all
&#38;lt;/Directory&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Obviously, there's two different WSGIDaemonProcess, one from webfaction and one from you. I have tried removing the first and leaving yours alone, but no go. I also tried commenting out mediacore WSGI statements but that didn't work either. So far, I have had 0 bright ideas. &#60;/p&#62;
&#60;p&#62;My available modules inside /modules are:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;mod_actions.so
 mod_alias.so
 mod_asis.so
 mod_auth_basic.so
 mod_auth_digest.so
 mod_authn_anon.so
 mod_authn_dbd.so
 mod_authn_dbm.so
 mod_authn_default.so
 mod_authn_file.so
 mod_authz_dbm.so
 mod_authz_default.so
 mod_authz_groupfile.so
 mod_authz_host.so
 mod_authz_owner.so
 mod_authz_user.so
 mod_autoindex.so
 mod_cern_meta.so
 mod_cgi.so
 mod_dav_fs.so
 mod_dav.so
 mod_dbd.so
 mod_deflate.so
 mod_dir.so
 mod_dumpio.so
 mod_env.so
 mod_expires.so
 mod_ext_filter.so
 mod_filter.so
 mod_headers.so
 mod_ident.so
 mod_imagemap.so
 mod_include.so
 mod_info.so
 mod_log_config.so
 mod_log_forensic.so
 mod_logio.so
 mod_mime_magic.so
 mod_mime.so
 mod_negotiation.so
 mod_reqtimeout.so
 mod_rewrite.so
 mod_setenvif.so
 mod_speling.so
 mod_status.so
 mod_substitute.so
 mod_unique_id.so
 mod_userdir.so
 mod_usertrack.so
 mod_version.so
 mod_vhost_alias.so
 mod_wsgi.so&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thank you for being willing to take a look at this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>edsonsantoro on "Issues deploying MediaCore 9"</title>
			<link>http://mediacorecommunity.org/community/topic/issues-deploying-mediacore-9#post-2141</link>
			<pubDate>Thu, 19 May 2011 22:20:22 +0000</pubDate>
			<dc:creator>edsonsantoro</dc:creator>
			<guid isPermaLink="false">2141@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;I'm trying to install MediaCore 9 in Hostmonster shared hosting for 3 days, looking in help section, googleing pages, following tutorials, asking help from HostMonster support, and I still can't get it working!&#60;/p&#62;
&#60;p&#62;HostMonster: PHP5 + MySQL + Python2.4 and 2.6 natively + FastCGI   &#60;/p&#62;
&#60;p&#62;I'm not a expert in web, so I really need some help...someone? &#60;/p&#62;
&#60;p&#62;Following the mediacore docs and other tutorials over the web, I have installed a custom python2.6.5, with setuptools, flup and virtualenv modules. After that, I followed the MC doc, up to step 5, then step 7 to create deployment file. So, I moved ahead to Apache mod_fcgi install, following carefully each step, and, when I try to load my system, I got a 500 error. Looking is Error Logs this is the 'cause':&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;#39;[Thu May 19 21:12:23 2011] [warn] [client 119.238.47.215] (104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server
[Thu May 19 21:12:23 2011] [error] [client 119.238.47.215] Premature end of script headers: mediacore.fcgi
suexec failure: could not open log file
fopen: Permission denied&#38;#39;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And this one, I don't know if is a error from my website or not:&#60;br /&#62;
&#60;code&#62;[Thu May 19 21:12:24 2011] [warn] RewriteCond: NoCase option for non-regex pattern &#38;#39;-f&#38;#39; is not supported and will be ignored.&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Looking is Support page, they said me: FastCGI is set up as a module that can be enabled via your .htaccess.  You can add this line for enabling that:&#60;br /&#62;
 `# Use PHP5CGI as default&#60;br /&#62;
 AddHandler fcgid-script .php`&#60;/p&#62;
&#60;p&#62;Changing that, nothing happened.&#60;/p&#62;
&#60;p&#62;This is my mediacore.fcgi&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#!/home1/iigdjapa/bin/python

python_egg_cache = &#38;#39;/home1/iigdjapa/MediaCore-0.9.0/data/python-egg-cache&#38;#39;

deployment_config = &#38;#39;/home1/iigdjapafrom /MediaCore-0.9.0/deployment.ini&#38;#39;

temp_dir = &#38;#39;/home1/iigdjapa/MediaCore-0.9.0/data/tmp&#38;#39;

# NOTE: Before running MediaCore, you will need to update the four paths

# above to point to the appropriate locations for your installation.

import os

import sys

os.environ[&#38;#39;PYTHON_EGG_CACHE&#38;#39;] = python_egg_cache

os.environ[&#38;#39;TMPDIR&#38;#39;] = temp_dir

if __name__ == &#38;#39;__main__&#38;#39;:

from paste.deploy import loadapp

app = loadapp(&#38;#39;config:&#38;#39;+deployment_config)

from flup.server.fcgi import WSGIServer
WSGIServer(app).run()&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And this is my .htaccess file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;a# .htaccess file for installation of MediaCore with Apache/FastCGI
# See installation instructions at &#60;a href=&#34;http://getmediacore.com/docs/install/apache-fastcgi.html&#34; rel=&#34;nofollow&#34;&#62;http://getmediacore.com/docs/install/apache-fastcgi.html&#60;/a&#62;

# For security reasons, Option followsymlinks cannot be overridden.
#Options +ExecCGI +FollowSymlinks
Options +ExecCGI +SymLinksIfOwnerMatch

# Use PHP5CGI as default
AddHandler fcgid-script .php
RewriteEngine On

# Create rewrite rules for media and podcast images
RewriteRule ^images/media/(.*)$ mediacore.fcgi/images/media/$1 [L]
RewriteRule ^images/podcasts/(.*)$ mediacore.fcgi/images/podcasts/$1 [L]

# Create rewrite rules for serving MediaCore&#38;#39;s static content
RewriteRule ^(admin/)?(styles&#124;images&#124;scripts)/(.*)$ public/$1$2/$3 [L]

# Create rewrite rules for pointing mediacore requests to fastcgi script
RewriteRule ^mediacore\.fcgi(/.*)$  - [L]
# If the file requested doesn&#38;#39;t exist on the filesystem, redirect to mediacore.fcgi
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ mediacore.fcgi/$1 [L]&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>gigafide on "Bad interpreter: No such file or directory"</title>
			<link>http://mediacorecommunity.org/community/topic/bad-interpreter-no-such-file-or-directory#post-1505</link>
			<pubDate>Fri, 25 Mar 2011 11:33:35 +0000</pubDate>
			<dc:creator>gigafide</dc:creator>
			<guid isPermaLink="false">1505@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;I have dreamhost shared hosting and was successfully able to get MediaCore 0.8.2 up and running. However, when I upgraded to 0.9, I get a 500 Internal Service Error when trying to deploy it. So then I cleared out all my files and did a fresh install from scratch. Same Error. I even reinstalled 0.8.2, but now that doesnt' work either. The development test through port 8080 works fine. So the error is somewhere in my mediacore.fcgi file, but I can't find it for the life of me. Here is the error report&#60;/p&#62;
&#60;p&#62; FastCGI: comm with (dynamic) server &#34;/home/username/website_name/mediacore.fcgi&#34; aborted: (first read) idle timeout (60 sec)&#60;br /&#62;
FastCGI: incomplete headers (0 bytes) received from server &#34;/home/username/website_name/mediacore.fcgi&#34;&#60;/p&#62;
&#60;p&#62;and the bash terminal shows this (but trust me, it's there, with proper access rights):&#60;/p&#62;
&#60;p&#62;$HOME/mediacore_env/bin/python: bad interpreter: No such file or directory&#60;/p&#62;
&#60;p&#62;and lastly, here is a copy of my mediacore.fcgi edits:&#60;/p&#62;
&#60;p&#62;#!$HOME/mediacore_env/bin/python&#60;br /&#62;
python_egg_cache = '$HOME/website_name/MediaCore-0.9.0/data/python-egg-cache'&#60;br /&#62;
deployment_config = '$HOME/website_name/MediaCore-0.9.0/deployment.ini'&#60;br /&#62;
temp_dir = '$HOME/website_name/MediaCore-0.9.0/data/tmp'&#60;/p&#62;
&#60;p&#62;I have tried all sorts of combinations, as far as file paths, but nothing works. Any help would be GREATLY appreciated. Thanks guys!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Bullsoft - Thomas on "Installing on cPanel/WHM"</title>
			<link>http://mediacorecommunity.org/community/topic/installing-on-cpanelwhm#post-129</link>
			<pubDate>Mon, 08 Mar 2010 15:27:45 +0000</pubDate>
			<dc:creator>Bullsoft - Thomas</dc:creator>
			<guid isPermaLink="false">129@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;A client of mine wishse to install MediaCore on their hosting account. Is it possible for the client to install it via cPanel or does it require a root user to install it through SSH?&#60;/p&#62;
&#60;p&#62;Any help much appreciated.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Thomas
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deep on "Mod_wsgi on shared hosting!"</title>
			<link>http://mediacorecommunity.org/community/topic/mod_wsgi-on-shared-hosting#post-79</link>
			<pubDate>Wed, 27 Jan 2010 02:07:40 +0000</pubDate>
			<dc:creator>deep</dc:creator>
			<guid isPermaLink="false">79@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;My hosting provider is icdsoft. He provide an MySQL, PERL, PHP5, PHP4, Python, Ruby and TCL, but I cannot have shell or another way to install Mod_wsgi.&#60;br /&#62;
So can anyone help to resolve the problem or the share knowledge to use external Mod_wsgi or another way, because few weeks ago I pay for 2 years, because the quality is excellence and I cannot want to change it, but I want to use, test and contribute to this project!&#60;br /&#62;
Thank you in advance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Sam on "Best Linux Distro?"</title>
			<link>http://mediacorecommunity.org/community/topic/best-linux-distro#post-88</link>
			<pubDate>Thu, 28 Jan 2010 06:52:20 +0000</pubDate>
			<dc:creator>Sam</dc:creator>
			<guid isPermaLink="false">88@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;I've been having problems getting Python &#38;amp; the dependancies sorted on CentOS 5.4 so I was wondering if there was any particular distro best suited just to get Media Core up and running?&#60;/p&#62;
&#60;p&#62;Any help is much appreciated.&#60;/p&#62;
&#60;p&#62;Sam
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mouseclone on "500 Internal Server Error"</title>
			<link>http://mediacorecommunity.org/community/topic/500-internal-server-error#post-456</link>
			<pubDate>Thu, 10 Jun 2010 00:37:04 +0000</pubDate>
			<dc:creator>mouseclone</dc:creator>
			<guid isPermaLink="false">456@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;I'm running Centos5.5 - Plesk 9.3.0 - Apache2&#60;br /&#62;
I have suphp and mod_fcgid running as far as I can tell.  I know that suphp is working because it was working with wordpress.  I use suphp for write access from php/cgi.&#60;/p&#62;
&#60;p&#62;I have followed the directions, from the best that I can tell, correctly.  I can run the server by doing the :: paster serve --reload development.ini :: and that seems to work on port 8080, though I'm not trying to run on port 8080, just standard port 80.&#60;/p&#62;
&#60;p&#62;I have made the change for it to run on port 80 in the deployment.ini file.  though I can't get the paster serve to run on port 80, I can get it to run on port 8080.  When trying to run with paster serve on port 80, it tells me that the port is already busy.&#60;/p&#62;
&#60;p&#62;In any condition I'm attempting to run it in, i get this error:&#60;br /&#62;
&#60;code&#62;Premature end of script headers: mediacore.fcgi&#60;/code&#62;&#60;br /&#62;
in the error.log for the site.&#60;/p&#62;
&#60;p&#62;I have tried several configs in not only the .ini files but in the vhost.conf that plesk give me to make changes.  I'm out of options, and the web is of little help it seems.  Please let me know if you have an idea.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>schmiddy on "Any Success Installing to Shared Host?"</title>
			<link>http://mediacorecommunity.org/community/topic/any-success-installing-to-shared-host#post-69</link>
			<pubDate>Fri, 22 Jan 2010 13:42:30 +0000</pubDate>
			<dc:creator>schmiddy</dc:creator>
			<guid isPermaLink="false">69@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;Hi All,&#60;br /&#62;
Just wondering if anyone has had success installing this to a shared hosting provider. My host (1and1) has an older version of Python installed (2.4). I have shell access, so I assume I may be able to compile a newer version from source. &#60;/p&#62;
&#60;p&#62;Just wanted to know if anyone has had any success doing something similar.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tinycg on "WSGI appending &#039;admin&#039; to file name"</title>
			<link>http://mediacorecommunity.org/community/topic/wsgi-appending-admin-to-file-name#post-315</link>
			<pubDate>Tue, 04 May 2010 23:42:05 +0000</pubDate>
			<dc:creator>tinycg</dc:creator>
			<guid isPermaLink="false">315@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;I'm still working through some issues as mediacore_restart is stating the 'kill: (xxxx) - No such process' but in working through issues I also noticed that in my error logs I'm getting &#34;Target WSGI script not found or unable to stat: /xxxx/deployment-scripts/mod_wsgi/mediacore.wsgiadmin&#34;&#60;/p&#62;
&#60;p&#62;And can't figure out where I might have a typo or something thats causing 'admin' to be appended to the correct file location.&#60;/p&#62;
&#60;p&#62;Thats currently the only error in the error log, though as stated above I do seem to have other issues.&#60;/p&#62;
&#60;p&#62;I removed the virtualenv and started from scratch today installing a fresh copy of python 2.5 vs 2.6, updated pylons to 0.9.7 as I'd seen in another post, and checked my WSGI install which seems to be all setup.&#60;/p&#62;
&#60;p&#62;When I go to the URL it appears I'm put into a redirect loop, but given that its looking for a filename it will never find, I'd like to at least see if I can correct that first :)&#60;/p&#62;
&#60;p&#62;When I do a reload with the paste server, it's spitting back a lot of 'File' stuff, and I'm not familiar with it enough to know whether this is normal, of an issue.&#60;/p&#62;
&#60;p&#62;I have Apache 2.2, Python 2.5, root access, etc.. &#60;/p&#62;
&#60;p&#62;Thanks for any help in advance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gust0208 on "Installing MediaCore on shared hosting"</title>
			<link>http://mediacorecommunity.org/community/topic/installing-mediacore-on-shared-hosting#post-316</link>
			<pubDate>Tue, 04 May 2010 23:44:05 +0000</pubDate>
			<dc:creator>gust0208</dc:creator>
			<guid isPermaLink="false">316@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;Hello everyone,&#60;/p&#62;
&#60;p&#62;I stumbled upon MediaCore a few weeks ago and with the demo of 0.8, it looks to be a great fit for my podcast network (for the nerdy passion of MTG).&#60;/p&#62;
&#60;p&#62;My question is that I will likely be initially deploying this on a shared host, I am specifically looking at the shared hosting plan on DreamHost (&#60;a href=&#34;http://www.dreamhost.com/hosting.html)&#34; rel=&#34;nofollow&#34;&#62;http://www.dreamhost.com/hosting.html)&#60;/a&#62;.  Would this hosting plan be adequate for atleast a trial of running MediaCore?&#60;/p&#62;
&#60;p&#62;I have been working through the install instructions, including deployment on a share host via &#34;Apache &#38;amp; mod_fastcgi Deployment&#34;.  I became a bit confused when following the general install instructions (&#60;a href=&#34;http://getmediacore.com/docs/install/index.html&#34; rel=&#34;nofollow&#34;&#62;http://getmediacore.com/docs/install/index.html&#60;/a&#62;) on how one would perform stage 2 when not having root access to the shell?&#60;/p&#62;
&#60;p&#62;My apologies in advance for the very basic noobish questions, I previously was running a Wordpress install and am slowly learning more about CMS's and basic server usage.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Tom
&#60;/p&#62;</description>
		</item>
		<item>
			<title>86me on "Mediacore 0.8rc1 mod_fastcgi spawning multiple processes"</title>
			<link>http://mediacorecommunity.org/community/topic/mediacore-08rc1-mod_fastcgi-spawning-multiple-processes#post-302</link>
			<pubDate>Tue, 04 May 2010 12:10:05 +0000</pubDate>
			<dc:creator>86me</dc:creator>
			<guid isPermaLink="false">302@http://mediacorecommunity.org/community/</guid>
			<description>&#60;p&#62;I've managed to get the 0.8rc1 release working with Apache/mod_fastcgi. I don't know if this is standard operating procedure, but I am seeing multiple processes being spawned. I see this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;22852 itunes    18   0  5056 3656 1576 D 84.0  0.1   0:01.98 mediacore.cgi
22850 itunes    18   0  5056 3648 1576 R 83.0  0.1   0:02.01 mediacore.cgi
22853 itunes    18   0  5060 3656 1576 R 83.0  0.1   0:01.99 mediacore.cgi
22849 itunes    18   0  5060 3660 1576 R 82.0  0.1   0:02.00 mediacore.cgi
22851 itunes    18   0  5056 3664 1576 R 82.0  0.1   0:01.96 mediacore.cgi
22854 itunes    18   0  5056 3668 1580 D 82.0  0.1   0:01.98 mediacore.cgi&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I installed &#60;code&#62;multiprocessing&#60;/code&#62; just in case. Things seem sluggish for so much cpu usage. I'm sure there are settings to change max children somwhere, but I haven't been able to figure it out.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

