<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Installing Aptana Jaxer on Ubuntu</title>
	<atom:link href="http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 04 Feb 2010 05:00:37 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bob</title>
		<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/#comment-1631</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Wed, 03 Jun 2009 14:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=150#comment-1631</guid>
		<description>Also thought I&#039;d share my updated version of the init.d script.
A few changes: JAXERBASE need only be exported once, and I&#039;ve implemented commands as functions so they can be extended and so we can add a restart command.

#!/bin/sh
. /lib/lsb/init-functions

export JAXERBASE=/opt/AptanaJaxer
jaxer_start ()
{
    /opt/AptanaJaxer/scripts/startJaxer.sh
}
jaxer_stop ()
{
    /opt/AptanaJaxer/scripts/stopJaxer.sh
}
jaxer_restart () 
{
    jaxer_start
    jaxer_stop
}

case &quot;$1&quot; in
    start)
        jaxer_start
    ;;
    stop)
        jaxer_stop
    ;;
    restart&#124;reload)
        jaxer_restart
    ;;
    *)  
        log_success_msg &quot;Usage: /etc/init.d/jaxer {start&#124;stop&#124;restart&#124;reload}&quot;
        exit 1
    ;;  
esac</description>
		<content:encoded><![CDATA[<p>Also thought I&#8217;d share my updated version of the init.d script.<br />
A few changes: JAXERBASE need only be exported once, and I&#8217;ve implemented commands as functions so they can be extended and so we can add a restart command.</p>
<p>#!/bin/sh<br />
. /lib/lsb/init-functions</p>
<p>export JAXERBASE=/opt/AptanaJaxer<br />
jaxer_start ()<br />
{<br />
    /opt/AptanaJaxer/scripts/startJaxer.sh<br />
}<br />
jaxer_stop ()<br />
{<br />
    /opt/AptanaJaxer/scripts/stopJaxer.sh<br />
}<br />
jaxer_restart ()<br />
{<br />
    jaxer_start<br />
    jaxer_stop<br />
}</p>
<p>case &#8220;$1&#8243; in<br />
    start)<br />
        jaxer_start<br />
    ;;<br />
    stop)<br />
        jaxer_stop<br />
    ;;<br />
    restart|reload)<br />
        jaxer_restart<br />
    ;;<br />
    *)<br />
        log_success_msg &#8220;Usage: /etc/init.d/jaxer {start|stop|restart|reload}&#8221;<br />
        exit 1<br />
    ;;<br />
esac</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/#comment-1630</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Wed, 03 Jun 2009 13:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=150#comment-1630</guid>
		<description>Hi,
You should also run:
&quot;sudo update-rc.d jaxer defaults 90 10&quot;
after you have created the /etc/init.d/jaxer script.
This simply registers jaxer to start before apache2 (which usually starts at sequence number 91 at default runlevels) and to kill jaxer after apache2 (which usually is killed at sequence number 09 at default runlevels).
This way, if you reboot the system, it will all load properly.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
You should also run:<br />
&#8220;sudo update-rc.d jaxer defaults 90 10&#8243;<br />
after you have created the /etc/init.d/jaxer script.<br />
This simply registers jaxer to start before apache2 (which usually starts at sequence number 91 at default runlevels) and to kill jaxer after apache2 (which usually is killed at sequence number 09 at default runlevels).<br />
This way, if you reboot the system, it will all load properly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quickredfox</title>
		<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/#comment-1328</link>
		<dc:creator>quickredfox</dc:creator>
		<pubDate>Tue, 19 May 2009 13:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=150#comment-1328</guid>
		<description>Thanks a lot, you managed to smooth a few kinks out of this tedious task but for me one problem remains, Whenever I try to use the jaxer-service stuff, i get weird bugs and this seems to pop up in the logs:

&quot;Jaxer is the handler for this request but it&#039;s not a callback or other recognized request type.&quot; 

Any tips?</description>
		<content:encoded><![CDATA[<p>Thanks a lot, you managed to smooth a few kinks out of this tedious task but for me one problem remains, Whenever I try to use the jaxer-service stuff, i get weird bugs and this seems to pop up in the logs:</p>
<p>&#8220;Jaxer is the handler for this request but it&#8217;s not a callback or other recognized request type.&#8221; </p>
<p>Any tips?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Tulett</title>
		<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/#comment-1226</link>
		<dc:creator>Nick Tulett</dc:creator>
		<pubDate>Wed, 22 Apr 2009 20:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=150#comment-1226</guid>
		<description>Thanks from me, too - could not work it out from the official docs and got no response on the forum till I found a link to this. Ta.</description>
		<content:encoded><![CDATA[<p>Thanks from me, too &#8211; could not work it out from the official docs and got no response on the forum till I found a link to this. Ta.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/#comment-1111</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 04 Mar 2009 17:12:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=150#comment-1111</guid>
		<description>Thanks!

I added PHP to the filter so I could also use Jaxer within my PHP applications as well.  It lets you start doing some pretty cool stuff :)</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>I added PHP to the filter so I could also use Jaxer within my PHP applications as well.  It lets you start doing some pretty cool stuff <img src='http://www.gen-x-design.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colin</title>
		<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/#comment-1110</link>
		<dc:creator>colin</dc:creator>
		<pubDate>Wed, 04 Mar 2009 15:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=150#comment-1110</guid>
		<description>Kudos from me as well; it&#039;s great when you can just copy and paste the commands, and they work AS IS.  I&#039;m not a server guru, just a code monkey, so it&#039;s great to have these guides out there.

Why did you register php to go to the JaxerFilter?</description>
		<content:encoded><![CDATA[<p>Kudos from me as well; it&#8217;s great when you can just copy and paste the commands, and they work AS IS.  I&#8217;m not a server guru, just a code monkey, so it&#8217;s great to have these guides out there.</p>
<p>Why did you register php to go to the JaxerFilter?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/#comment-1062</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Mon, 23 Feb 2009 05:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=150#comment-1062</guid>
		<description>Awesome, glad I could help :)</description>
		<content:encoded><![CDATA[<p>Awesome, glad I could help <img src='http://www.gen-x-design.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Petter Sundnes</title>
		<link>http://www.gen-x-design.com/archives/installing-aptana-jaxer-on-ubuntu/#comment-1043</link>
		<dc:creator>Petter Sundnes</dc:creator>
		<pubDate>Sat, 21 Feb 2009 18:40:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.gen-x-design.com/?p=150#comment-1043</guid>
		<description>This was a brilliant guide, I got up and running with Jaxer on my Linode based server in no time. Thanks!

I ended up spending more time figuring out how vi works than the rest of the setup time took, so I ended up installing nano immediately after setting up Jaxer :)</description>
		<content:encoded><![CDATA[<p>This was a brilliant guide, I got up and running with Jaxer on my Linode based server in no time. Thanks!</p>
<p>I ended up spending more time figuring out how vi works than the rest of the setup time took, so I ended up installing nano immediately after setting up Jaxer <img src='http://www.gen-x-design.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
