<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Info Tech Scraps &#187; Web Based</title>
	<atom:link href="http://www.infoscraps.com/topics/applications/web-based/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infoscraps.com</link>
	<description>Information Technology at your finger tips...</description>
	<lastBuildDate>Tue, 27 Oct 2009 17:24:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Uploading and Linking images and files in WikkaWiki</title>
		<link>http://www.infoscraps.com/2009/02/23/uploading-and-linking-images-and-files-in-wikkawiki/</link>
		<comments>http://www.infoscraps.com/2009/02/23/uploading-and-linking-images-and-files-in-wikkawiki/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 13:10:59 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Web Based]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Wiki]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[WikkaWiki]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/2009/02/23/uploading-and-linking-images-and-files-in-wikkawiki/</guid>
		<description><![CDATA[I&#8217;ve been a fan of WikkaWiki. It&#8217;s the light weight, ultra fast and highly customizable Wiki software. However, there are few glitches in WikkaWiki and some of it&#8217;s features like Actions and Handlers can be highly confusing to new users who never used Wiki software or used some standard stuff like MediaWiki (the software used [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a fan of <a href="http://wikkawiki.org/">WikkaWiki</a>. It&#8217;s the light weight, ultra fast and highly customizable Wiki software. However, there are few glitches in WikkaWiki and some of it&#8217;s features like Actions and Handlers can be highly confusing to new users who never used Wiki software or used some standard stuff like MediaWiki (the software used by Wikipedia).<br />
<span id="more-96"></span><br />
One of the glitch is uploading Images and Files and linking/attaching them to your Pages. If you have this problem, follow the instructions below and have none of it. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<ol>
<li>I would suggest having SSH to your domain to perform these tasks. However, if you don&#8217;t have Shell Access, use an FTP program like CuteFTP that will allow you to directly edit files in the FTP site.</li>
<li>Open your config file wikka.config.php and enter <strong>uploads</strong> in the config variable &#8216;<em><strong>upload_path</strong></em>&#8216;. Save and close the file.</li>
<li>Make sure you do have an <strong>uploads</strong> directory in your WikkaWiki root folder and it is writable (enter <strong>mkdir uploads</strong> and then <strong>chmod 777 uploads</strong> to do this from SSH under your WikkaWiki root folder).</li>
<li>Go to uploads folder and see if it already has a <strong>.htaccess</strong> file. If it does not, create a new file in the same name. Type the following in this file:<br />
<blockquote><p><code>RewriteEngine off</code></p></blockquote>
</li>
<li>Go to your WikkaWiki root folder and edit the <strong>.htaccess</strong> file in there. Add the following line at the top of this file.<br />
<blockquote><p><code>Options -Indexes -FollowSymLinks</code></p></blockquote>
</li>
<li>Visit your WikkaWiki in browser. Create a new page named <strong>Images</strong></li>
<li>In the body of this page, type the following:<br />
<blockquote><p><code>=====Image Files=====<br />
{{files}}<br />
----<br />
[[CategoryUploads Uploadable File Types]]</code></p></blockquote>
</li>
<li>Save the Page. When you visit this page, you&#8217;ll see the heading and a small table for list of files and a upload button underneath the table. You&#8217;ll have to click on the Uploadable File Types link for making a category so that you&#8217;ll easily access these pages. When you click on the link, it&#8217;ll go to edit page mode, type the following there:<br />
<blockquote><p><code>=====Uploadable File Types=====<br />
This category lists all the uploadable file types and their respective pages to use for uploading the files.<br />
{{Category}}<br />
----<br />
[[CategoryCategory See all Categories]]</code></p></blockquote>
</li>
<li>That&#8217;s it, you can use the Images file to upload images. Create another file like PDFs or Docs and keep the same content as I&#8217;ve shown here for Images (just name their headings different as per the Page Name) but use it for uploading relevant files.</li>
<li>Now, open any of the page where you would like the images to be linked to, type the following there:<br />
<blockquote><p><code>{{image url="uploads/Images/your-image-file-name" text="some-text-here" alt="some-alternative-text-here"}}</code></p></blockquote>
</li>
<li>Likewise, you can link files by typing the following there:<br />
<blockquote><p><code>[[http://your-domain-name/uploads/file-upload-page-name/file-name some-text-for-link-or-leave-empty]]</code></p></blockquote>
</li>
<li>That&#8217;s all about it. Using this method will forbid anybody from outside to visit your uploads folder directly as well as allows you to link them or refer them directly in your pages. You can also share the entire URL with your friends which is accessible.</li>
</ol>
<p>Let me know your comments&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2009/02/23/uploading-and-linking-images-and-files-in-wikkawiki/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Amazing Google Reader!</title>
		<link>http://www.infoscraps.com/2006/12/14/amazing-google-reader/</link>
		<comments>http://www.infoscraps.com/2006/12/14/amazing-google-reader/#comments</comments>
		<pubDate>Wed, 13 Dec 2006 23:27:39 +0000</pubDate>
		<dc:creator>Srinivasan A Paul Joseph</dc:creator>
				<category><![CDATA[Alternatives]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Based]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://www.infoscraps.com/?p=42</guid>
		<description><![CDATA[I&#8217;ve been using RSS Bandit for a long time now and I&#8217;ve never been very accustomed with Web Based readers. But recently one of my friend suggested Google Reader very much so I though I could do a try. First of all, Google Reader, didn&#8217;t accepted my OPML file which I exported from RSS Bandit. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sripauljoseph.com/wp-content/uploads/2007/12/google-reader-logo.png" alt="Google Reader Logo" align="left" />I&#8217;ve been using <a href="http://www.rssbandit.org" target="_blank">RSS Bandit</a> for a long time now and I&#8217;ve never been very accustomed with Web Based readers. But recently one of my friend suggested Google Reader very much so I though I could do a try.</p>
<p><span id="more-42"></span></p>
<p>First of all, Google Reader, didn&#8217;t accepted my OPML file which I exported from RSS Bandit. So, I tried manually adding some of the RSS feeds and had a go. It&#8217;s really awesome. <img src='http://www.infoscraps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Google seems to be making very good use of <a href="http://en.wikipedia.org/wiki/AJAX" target="_blank">AJAX</a>. Which really made their Web Based reader a pleasant experience.</p>
<p>I strongly recommend those of you guys who think a Web Reader is not good to see <a href="http://www.google.com/reader/view/" target="_blank">Google Reader</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infoscraps.com/2006/12/14/amazing-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
