<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.studentguru.gr/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx</link><description>I&amp;#39;ve also published this in ubuntu&amp;#39;s forums : It got me a few days to find out how to solve this problem. And it was rather frustrating. But finally I got to run mod_mono on apache, and get some asp.net 2.0 working on Ubuntu 8.04! I searched around</description><dc:language>el</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6354</link><pubDate>Sun, 08 Jun 2008 17:20:58 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6354</guid><dc:creator>kingherc</dc:creator><description>&lt;p&gt;Seems to be a general problem with mod_mono. You get a few results if you search your error on google. But I have no clue about it.&lt;/p&gt;
&lt;p&gt;If you find a solution, you can share it with us.&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6354" width="1" height="1"&gt;</description></item><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6335</link><pubDate>Sun, 08 Jun 2008 13:05:25 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6335</guid><dc:creator>Ramjirao</dc:creator><description>&lt;p&gt;Failed to &amp;nbsp;destroy the '/tmp/mod_mono_dashboard_XXGLOBAL_1' shared memory dashboard ....&lt;/p&gt;
&lt;p&gt;message is received when trying to do /etc/init.d/apache2 restart&lt;/p&gt;
&lt;p&gt;Any ideas&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6335" width="1" height="1"&gt;</description></item><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6089</link><pubDate>Mon, 26 May 2008 18:30:13 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6089</guid><dc:creator>kingherc</dc:creator><description>&lt;p&gt;dear flourishing,&lt;/p&gt;
&lt;p&gt;As I&amp;#39;ve updated my guide also, please ensure you&amp;#39;ve made these steps, and if there was any error, I&amp;#39;ll be glad to hear about it and fix it on the guide.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think classic ASP will run with mono or XSP, only asp.net, not sure though. Because the two are very different technologies. ASP.NET is the newest of the two, and is designed to substitute ASP. You can also read Microsoft&amp;#39;s own &lt;a href="http://msdn.microsoft.com/en-us/asp.net/aa336623.aspx" target="_blank"&gt;guide&lt;/a&gt; on migrating. &lt;/p&gt;
&lt;p&gt;What page I gave you cannot access? And what error does apache give you when it starts up and tries to load the website configuration file?&lt;/p&gt;
&lt;p&gt;About the apache websites:&lt;/p&gt;
&lt;p&gt;You can define websites in the /etc/apache2/sites-available folder, but only those that exist under /etc/apache2/sites-enabled will work. The sites-enabled folder basically contains only links to the sites defined in sites-available folder.&lt;/p&gt;
&lt;p&gt;In the default configuration of apache, there&amp;#39;s only one site enabled: /etc/apache2/sites-enabled/000-default which points to /etc/apache2/sites-available/default. So instead of &amp;quot;sudo vi /etc/apache2/sites-enabled/000-default&amp;quot; you can &amp;quot;sudo vi /etc/apache2/sites-available/default&amp;quot;.&lt;/p&gt;
&lt;p&gt;In that file, assuming you only have one virtual host (a.k.a only one website on your server), try this configuration, which is based on the one that currently works for me:&lt;/p&gt;
&lt;p&gt;&amp;lt;VirtualHost *:80&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ServerName test.goddz.net&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ServerAdmin webmaster@localhost&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DocumentRoot /var/www/&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Directory /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Options FollowSymLinks&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AllowOverride None&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Directory&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Directory /var/www/&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Options Indexes FollowSymLinks MultiViews&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AllowOverride None&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Order allow,deny&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;allow from all&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Directory&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Directory &amp;quot;/usr/lib/cgi-bin&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AllowOverride None&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Order allow,deny&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Allow from all&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Directory&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ErrorLog /var/log/apache2/error.log&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;# Possible values include: debug, info, notice, warn, error, crit,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;# alert, emerg.&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;LogLevel warn&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CustomLog /var/log/apache2/access.log combined&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ServerSignature On&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Alias /doc/ &amp;quot;/usr/share/doc/&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Directory &amp;quot;/usr/share/doc/&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Options Indexes MultiViews FollowSymLinks&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AllowOverride None&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Order deny,allow&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Deny from all&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Allow from 127.0.0.0/255.0.0.0 ::1/128&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Directory&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MonoServerPath &amp;quot;/usr/local/bin/mod-mono-server2&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MonoApplications &amp;quot;/test:/var/www/test&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Directory /var/www/test&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SetHandler mono&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AddHandler mod_mono .aspx .ascx .asax .ashx .config .cs .asmx&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DirectoryIndex index.html index.aspx default.aspx Default.aspx&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Options Indexes FollowSymLinks MultiViews&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AllowOverride None&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Order allow,deny&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;allow from all&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Directory&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/VirtualHost&amp;gt;&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6089" width="1" height="1"&gt;</description></item><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6088</link><pubDate>Mon, 26 May 2008 18:02:51 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6088</guid><dc:creator>flourishing</dc:creator><description>&lt;p&gt;now i have successed made xsp test can be accessed.&lt;/p&gt;
&lt;p&gt;but it can't parase asp, &amp;nbsp;is it only parase aspx and the version above ?&lt;/p&gt;
&lt;p&gt;can i say mono only support asp.net but not asp?&lt;/p&gt;
&lt;p&gt;thank you.&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6088" width="1" height="1"&gt;</description></item><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6087</link><pubDate>Mon, 26 May 2008 17:15:08 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6087</guid><dc:creator>flourishing</dc:creator><description>&lt;p&gt;thank you for your reply so quickly.&lt;/p&gt;
&lt;p&gt;i have found how to solve that. but i don't know how to add the website to sites-aviable document, i follow the article ,it doesn't work.&lt;/p&gt;
&lt;p&gt;here is my sites-avaiable &lt;/p&gt;
&lt;p&gt;&amp;lt;VirtualHost 192.168.0.1:80&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ServerName test.goddz.net&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MonoServerPath &amp;quot;/usr/local/bin/mod-mono-server2&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MonoApplications &amp;quot;/test:/var/www/test&amp;quot;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Directory /var/www/test&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SetHandler mono&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AddHandler mod_mono .aspx .ascx .asax .ashx .config .cs .asmx&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DirectoryIndex index.html index.aspx default.aspx Default.aspx&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Options Indexes FollowSymLinks MultiViews&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;AllowOverride None&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Order allow,deny&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;allow from all&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Directory&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/VirtualHost&amp;gt;&lt;/p&gt;
&lt;p&gt;is there anything wrong ? that doesn't work.&lt;/p&gt;
&lt;p&gt;beside. the link you have gaved me, it &amp;nbsp;can 't be accessed, something error.&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6087" width="1" height="1"&gt;</description></item><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6086</link><pubDate>Mon, 26 May 2008 16:45:11 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6086</guid><dc:creator>kingherc</dc:creator><description>&lt;p&gt;It seems the installation of mod_mono doesn't automatically install the module to apache. So, after the installation you can still activate the module on apache manually: &lt;/p&gt;
&lt;p&gt;Visit my first reference page at &lt;a rel="nofollow" target="_new" href="http://blog.ruski.co.za/page/Install-Mono-126-on-Ubuntu-710.aspx"&gt;blog.ruski.co.za/.../Install-Mono-126-on-Ubuntu-710.aspx&lt;/a&gt;, and follow the steps of the section &amp;quot;Installing Mod_Mono&amp;quot; just after the &amp;quot;make install&amp;quot; command. These steps are equivalent with the &amp;quot;a2enmod&amp;quot; step of my guide, and you'll be able to continue from there.&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6086" width="1" height="1"&gt;</description></item><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6084</link><pubDate>Mon, 26 May 2008 16:11:23 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6084</guid><dc:creator>flourishing</dc:creator><description>&lt;p&gt;Installing mod_mono module for apache 2:&lt;/p&gt;
&lt;p&gt;sudo apt-get install apache2 apache2-threaded-dev&lt;/p&gt;
&lt;p&gt;apache2-threaded-dev will be needed for apxs, which automates the loading of apache modules.&lt;/p&gt;
&lt;p&gt;cd ~/src/&lt;/p&gt;
&lt;p&gt;wget &lt;a rel="nofollow" target="_new" href="http://ftp.novell.com/pub/mono/sources/mod_mono/mod_mono-1.9.tar.bz2"&gt;ftp.novell.com/.../mod_mono-1.9.tar.bz2&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;tar -xvf mod_mono-1.9.tar.bz2&lt;/p&gt;
&lt;p&gt;cd mod_mono-1.9&lt;/p&gt;
&lt;p&gt;sudo ./configure --prefix=/usr --with-apxs=/usr/bin/apxs2&lt;/p&gt;
&lt;p&gt;sudo make&lt;/p&gt;
&lt;p&gt;sudo make install&lt;/p&gt;
&lt;p&gt;cp -r /usr/local/lib/xsp/test /var/www/test&lt;/p&gt;
&lt;p&gt;This will copy the XSP test site to Apache's default root website (/var/www), so that we may later test mod_mono and see if everything works fine.&lt;/p&gt;
&lt;p&gt;sudo a2enmod mod_mono&lt;/p&gt;
&lt;p&gt;i can't do this , it reports&lt;/p&gt;
&lt;p&gt;root@ubuntu:/usr/lib/apache2/modules# a2enmod mod_mono&lt;/p&gt;
&lt;p&gt;This module does not exist!&lt;/p&gt;
&lt;p&gt;i follow your article step by step, what can i do ?&lt;/p&gt;
&lt;p&gt;thank you. please send mail to me 361571@qq.com.&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6084" width="1" height="1"&gt;</description></item><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6075</link><pubDate>Sun, 25 May 2008 10:15:48 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6075</guid><dc:creator>kingherc</dc:creator><description>&lt;p&gt;Dear Salang,&lt;/p&gt;
&lt;p&gt;As far as the Mono installation is concerned, it should have successfully installed, as you can open successfully the XSP2 web server. So your problem should be a networking problem.&lt;/p&gt;
&lt;p&gt;Your browser says it can't find localhost. The most usual problem should be if you're trying to browse localhost from a different machine. 'localhost' always refers to the machine it is run. So, if you're browsing from a different machine than the one where ubuntu is, that won't work.&lt;/p&gt;
&lt;p&gt;If ubuntu is installed on a different machine on your LAN, you should find its IP, or assign that machine a fixed IP in your router's configuration. When you find its IP, then you can browse it by typing &lt;a rel="nofollow" target="_new" href="http://192.168.2.2:8080"&gt;http://192.168.2.2:8080&lt;/a&gt; for example.&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6075" width="1" height="1"&gt;</description></item><item><title>re: How to Mono 1.9.1 and PHP 5 on Ubuntu 8.04 (Hardy)</title><link>http://www.studentguru.gr/blogs/kingherc/archive/2008/05/22/how-to-mono-1-9-1-and-php-5-on-ubuntu-8-04-hardy.aspx#6069</link><pubDate>Sun, 25 May 2008 04:16:46 GMT</pubDate><guid isPermaLink="false">6f076dc2-03de-4db8-9664-b8db05c573f5:6069</guid><dc:creator>salang</dc:creator><description>&lt;p&gt;Many thanks for your detailed installation instructions.&lt;/p&gt;
&lt;p&gt;I encounter the following problem after testing the XSP:&lt;/p&gt;
&lt;p&gt;root@obs:/usr/local/lib/xsp/test# xsp2&lt;/p&gt;
&lt;p&gt;xsp2&lt;/p&gt;
&lt;p&gt;Listening on address: 0.0.0.0&lt;/p&gt;
&lt;p&gt;Root directory: /usr/local/lib/xsp/test&lt;/p&gt;
&lt;p&gt;Listening on port: 8080 (non-secure)&lt;/p&gt;
&lt;p&gt;Hit Return to stop the server.&lt;/p&gt;
&lt;p&gt;Next, the response from &lt;a rel="nofollow" target="_new" href="http://localhost:8080/"&gt;http://localhost:8080/&lt;/a&gt; is:&lt;/p&gt;
&lt;p&gt;Firefox can't establish a connection to the server at localhost:8080.&lt;/p&gt;
&lt;p&gt;Though the site seems valid, the browser was unable to establish a connection.&lt;/p&gt;
&lt;p&gt;* Could the site be temporarily unavailable? Try again &amp;nbsp;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;later.&lt;/p&gt;
&lt;p&gt;* Are you unable to browse other sites? &amp;nbsp;Check the &lt;/p&gt;
&lt;p&gt; &amp;nbsp;computer's network connection.&lt;/p&gt;
&lt;p&gt;* Is your computer or network protected by a firewall or &lt;/p&gt;
&lt;p&gt; &amp;nbsp;proxy? Incorrect settings can interfere with Web &lt;/p&gt;
&lt;p&gt; &amp;nbsp;browsing.&lt;/p&gt;
&lt;p&gt;How to overcome the above problem? &amp;nbsp;Once again, thousands&lt;/p&gt;
&lt;p&gt;of thanks.&lt;/p&gt;
&lt;p&gt;Salang&lt;/p&gt;
&lt;p&gt;lagenda238@yahoo.com&lt;/p&gt;
&lt;img src="http://www.studentguru.gr/aggbug.aspx?PostID=6069" width="1" height="1"&gt;</description></item></channel></rss>