<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>selfoss support forum - How I got it running on my RaspberryPi</title>
<link>https://forum.selfoss.aditu.de/</link>
<description>selfoss support forum</description>
<language>en</language>
<item>
<title>How I got it running on my RaspberryPi (reply)</title>
<content:encoded><![CDATA[<blockquote><p>I believe this is working however I cannot access <a href="http://myurl/opml">http://myurl/opml</a> to import feeds. I can follow your instructions pretty well and can maneuver around the file system but not sure how I can do this. </p>
</blockquote><blockquote><p>Thanks!</p>
</blockquote><p>I was having the same problem. I eventually figure out that the link was <a href="http://myurl/selfoss/opml.">http://myurl/selfoss/opml.</a> The other quirk I was encountered was, <a href="http://myurl/selfoss/update">http://myurl/selfoss/update</a> wouldn't work but <a href="http://myurl/selfoss/">http://myurl/selfoss/</a><strong>U</strong>pdate with the uppercase 'u' would.</p>
]]></content:encoded>
<link>https://forum.selfoss.aditu.de/index.php?id=351</link>
<guid>https://forum.selfoss.aditu.de/index.php?id=351</guid>
<pubDate>Wed, 17 Apr 2013 02:14:41 +0000</pubDate>
<dc:creator>daysofgreen</dc:creator>
</item>
<item>
<title>How I got it running on my RaspberryPi (reply)</title>
<content:encoded><![CDATA[<p>Extremely helpful guide. Huge amounts of appreciation to you sir. After searching for a week, these are literally the only working instructions I could find for getting selfoss up and running on a raspberry pi.</p>
]]></content:encoded>
<link>https://forum.selfoss.aditu.de/index.php?id=350</link>
<guid>https://forum.selfoss.aditu.de/index.php?id=350</guid>
<pubDate>Wed, 17 Apr 2013 02:09:38 +0000</pubDate>
<dc:creator>daysofgreen</dc:creator>
</item>
<item>
<title>How I got it running on my RaspberryPi (reply)</title>
<content:encoded><![CDATA[<p>I had the same problem at first. I figured out, that the page is not loaded correctly, because the rewrite of the urls does not work. Check the apache logs to see if your browser tries to load stuf, that apache can't find. Be sure rewrite is allowed by your apache config ( &quot;/etc/apache2/sites-available/default&quot;) by setting &quot;AllowOverride All&quot;. There are multiple points in this file, where this can be changed. As I did not know exactly what all this means, I just changed AllowOverride everytime it occures.</p>
<p>Now that this config allows overrides, your .htaccess must specify the correct override rule.<br />
This should be done by just changing the line after RewriteEngine On at the top to &quot;RewriteBase /selfoss&quot;. Check again, that this line is not commented out by a #.</p>
<p>Good luck.</p>
]]></content:encoded>
<link>https://forum.selfoss.aditu.de/index.php?id=242</link>
<guid>https://forum.selfoss.aditu.de/index.php?id=242</guid>
<pubDate>Thu, 28 Mar 2013 07:09:13 +0000</pubDate>
<dc:creator>derschmidt</dc:creator>
</item>
<item>
<title>How I got it running on my RaspberryPi (reply)</title>
<content:encoded><![CDATA[<p>Thanks!</p>
<p>I got mine running so that when I access <a href="http://myurl/selfoss,">http://myurl/selfoss,</a> I see a page that says <br />
&quot;mark as read<br />
newest 0<br />
unread 0<br />
starred 0<br />
Tags</p>
<p>all tags<br />
&quot;</p>
<p>I believe this is working however I cannot access <a href="http://myurl/opml">http://myurl/opml</a> to import feeds. I can follow your instructions pretty well and can maneuver around the file system but not sure how I can do this. </p>
<p>Also, my site looks like a plain HTML site. Once feeds come in, does it change? It doesn't look like the screenshots on the site.</p>
<p>Thanks!</p>
]]></content:encoded>
<link>https://forum.selfoss.aditu.de/index.php?id=241</link>
<guid>https://forum.selfoss.aditu.de/index.php?id=241</guid>
<pubDate>Thu, 28 Mar 2013 01:17:02 +0000</pubDate>
<dc:creator>robkurzd</dc:creator>
</item>
<item>
<title>How I got it running on my RaspberryPi</title>
<content:encoded><![CDATA[<p>I'm fairly new to servers as this was my first project and I just want to share my way of getting selfoss to run on my RaspberryPi to make it easier for everyone else.</p>
<p>On my journey to get it up and running I encountered some problems that made my head spin as I couldn't explain some strange behavior. At the end and after extensive research about apache config and the .htaccess file everything was fairly simple to fix. Thanks to this forum.</p>
<p>Now if you are equally new to the topic and just want to set it up on your pi, just follow this simple steps:</p>
<p>I assume you have Raspbian “wheezy” running on your pi and you did not change your username.<br />
1. Create a folder selfoss in your homefolder (mkdir selfoss) and download the file<br />
    <a href="http://selfoss.aditu.de/selfoss-2.3.zip">http://selfoss.aditu.de/selfoss-2.3.zip</a> into it (wget does it if on console).<br />
2. Unzip the file via &quot;unzip selfoss-2.3.zip&quot;<br />
3. Make sure your .htaccess file has &quot;RewriteEngine On&quot; and &quot;RewriteBase /selfoss&quot;<br />
    (double check there's no &quot;#&quot; at the beginning of the line)<br />
4. Change permissions via<br />
    &quot;chmod a+w data/cache data/favicons data/logs data/thumbnails data/sqlite public/&quot;<br />
5. Now install apache2 with php:<br />
    sudo apt-get update &amp;&amp; sudo apt-get upgrade (this is not necessary, but seems good anyway)<br />
    sudo apt-get install apache2 php5 sqlite libapache2-mod-php5 php5-sqlite php5-gd<br />
6. Configure apache2:<br />
    6.1 Enable rewrite and headers:<br />
        sudo a2enmod rewrite<br />
        sudo a2enmod headers<br />
        sudo a2enmod php5<br />
        sudo service apache2 restart<br />
    6.2 Change rewrite-settings in &quot;/etc/apache2/sites-available/default&quot; by setting <br />
        &quot;AllowOverride All&quot; (I did it everywhere because it fixed my problem)<br />
7. Change directory to &quot;/var/www&quot; and create a link to your installation of selfoss via<br />
    &quot;sudo ln -s /home/pi/selfoss&quot;</p>
<p>Now everything should be working just fine if you visit <a href="http://&lt;your-ip&gt;/selfoss.">http://&lt;your-ip&gt;/selfoss.</a><br />
If however you encounter a message about write only database while updating, manually add write permissions to your database with &quot;chmod a+w /home/pi/selfoss/data/sqlite/selfoss.db&quot;</p>
<p>This is the end. I hope this is useful to someone. If you find anything that I shouldn't have done this way, I would be glad to receive your feedback.</p>
]]></content:encoded>
<link>https://forum.selfoss.aditu.de/index.php?id=168</link>
<guid>https://forum.selfoss.aditu.de/index.php?id=168</guid>
<pubDate>Wed, 20 Mar 2013 00:48:45 +0000</pubDate>
<dc:creator>derschmidt</dc:creator>
</item>
</channel>
</rss>
