<?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/"
	>

<channel>
	<title>bojanpejic.com &#187; php</title>
	<atom:link href="http://bojanpejic.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://bojanpejic.com</link>
	<description>Scrap Book About Web – Programming – Development – Places, and more 8-)</description>
	<lastBuildDate>Sun, 16 May 2010 14:37:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Installing LAMP on Kubuntu or Ubuntu</title>
		<link>http://bojanpejic.com/installing-lamp-on-kubuntu-or-ubuntu/</link>
		<comments>http://bojanpejic.com/installing-lamp-on-kubuntu-or-ubuntu/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 12:06:22 +0000</pubDate>
		<dc:creator>bojan</dc:creator>
				<category><![CDATA[Apps and Software]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://bojanpejic.com/?p=93</guid>
		<description><![CDATA[This post represents a small guide of how to setup your LAMP (Linux-Apache-MySQL-PHP) under Kubuntu (this works also for Ubuntu). Usually LAMP tutorials guide you to install one by one all the applications, that looks something like this: sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install mysql-server There is one more easy...]]></description>
			<content:encoded><![CDATA[<p>This post represents a small guide of how to setup your LAMP (Linux-Apache-MySQL-PHP) under Kubuntu (this works also for Ubuntu).</p>
<p>Usually LAMP tutorials guide you to install one by one all the applications, that looks something like this:</p>
<pre class="brush: plain;">
sudo apt-get install apache2
sudo apt-get install php5
sudo apt-get install mysql-server
</pre>
<p>There is one more easy solution, and the only difference is that it installs all + some other packages for LAMP.</p>
<pre class="brush: plain;">
sudo apt-get install lamp-server^
</pre>
<p>When installation of new packages finishes you have you own LAMP setup! Test it entering <em>http://localhost</em> in your browser it should say It works!</p>
<h4>Tip #1</h4>
<p>For adding PhpMyAdmin execute the following command in console:</p>
<pre class="brush: plain;">
sudo apt-get install phpmyadmin
</pre>
<p>It is possible when you type in your browser <em>http://localhost/phpmyadmin/</em> that phpmyadmin don&#8217;t runs. Then you have to create a link in your www directory:</p>
<pre class="brush: plain;">
sudo ln -s /usr/share/phpmyadmin /var/www/phpmyadmin
</pre>
<p>After doing this <em>http://localhost/phpmyadmin</em>/ should work now!</p>
<h4>Tip #2</h4>
<p>To have permissions to your www directory do following:</p>
<pre class="brush: plain;">
sudo chown username:username /var/www
</pre>
<h4>Tip #3</h4>
<p>Enable Apache mod_rewrite module and restart Apache for taking effects:</p>
<pre class="brush: plain;">
sudo a2enmod rewrite
sudo /etc/init.d/apache2 restart
</pre>
<p>You can enable or disable some other modules like this.</p>
<p>Now you have your LAMP up and the work can start :)</p>
]]></content:encoded>
			<wfw:commentRss>http://bojanpejic.com/installing-lamp-on-kubuntu-or-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework Book Review by Robert Bašić</title>
		<link>http://bojanpejic.com/zend-framework-book-review-by-robert-basic/</link>
		<comments>http://bojanpejic.com/zend-framework-book-review-by-robert-basic/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 20:30:40 +0000</pubDate>
		<dc:creator>bojan</dc:creator>
				<category><![CDATA[Interesting on Web]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://bojanpejic.com/?p=76</guid>
		<description><![CDATA[Few days ago my friend Robert Bašić has posted his review of a book named &#8220;Zend Framework 1.8 Web Application Development&#8221; on his blog. Here is a short quote from that review: The book starts off with a basic application (yep, “Hello world!”), explains the bootstrapping, configuring, working with action controllers, views and handling errors…...]]></description>
			<content:encoded><![CDATA[<div id="attachment_88" class="wp-caption alignright" style="width: 310px"><img class="size-full wp-image-88" title="Zend Framework 1.8 Web Application Development" src="http://bojanpejic.com/wp-content/uploads/2009/11/zf_book-300x225.jpg" alt="Picture from robertbasic.com" width="300" height="225" /><p class="wp-caption-text">Picture from robertbasic.com</p></div>
<p>Few days ago my friend Robert Bašić has posted his review of a book named &#8220;<a href="http://www.packtpub.com/zend-framework-1-8-web-application-development/book" target="_blank">Zend Framework 1.8 Web Application Development</a>&#8221; on his blog. Here is a short quote from that review:</p>
<blockquote><p>The book starts off with a basic application (yep, “Hello world!”), explains the bootstrapping, configuring, working with action controllers, views and handling errors… The second chapter continues with explaining the MVC architecture, the front controller, router, dispatcher… It even has a nice flowchart about the whole dispatch process, great stuff.</p></blockquote>
<p>It&#8217;s a not too long, but a well written and informative review. So, if you&#8217;re interested in whole review and what&#8217;s Robert saying about the book, I recommend you to visit his <a href="http://robertbasic.com/blog/zend-framework-18-web-application-development-book-review/" target="_blank">blog</a> and read his nice post!</p>
]]></content:encoded>
			<wfw:commentRss>http://bojanpejic.com/zend-framework-book-review-by-robert-basic/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
