<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4975015861503839587</id><updated>2011-11-27T17:12:24.237-08:00</updated><title type='text'>PHP Bakers</title><subtitle type='html'>CakePHP Noob Hub</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://phpbakers.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://phpbakers.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ronin</name><uri>http://www.blogger.com/profile/13579347598318437314</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='26' src='http://jehoven.wordpress.com/files/2006/09/imgjr.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4975015861503839587.post-7478351297648256011</id><published>2009-04-21T20:36:00.000-07:00</published><updated>2009-04-21T20:45:51.184-07:00</updated><title type='text'>LAMPP - Multiple Virtual Host Setup</title><content type='html'>&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:arial;"&gt;Last time we have talked about setting up &lt;a href="http://phpbakers.blogspot.com/2009/03/setup-multiple-virtual-hosts-using.html"&gt;Multiple Virtual Host for our XAMPP&lt;/a&gt;. However it is only for Windows and ihave think about it that it would be good to do a little research for setting up Multiple Virtual Host for Linux Xampp or Lampp and post it here.&lt;br /&gt;&lt;br /&gt;Just Follow this LAMPP - Multiple Virtual Host Setup for easy setup for your new sets of Virtual Host's&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;To begin with. Let us locate the installation directory of our Xampp/lampp on our computer. As for mine it was installed at "&lt;span style="font-weight: bold;"&gt;/opt/lampp/&lt;/span&gt;".&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;So, for the rest of the article i will refer to the installation directory of Lampp as  "&lt;span style="font-weight: bold;"&gt;Lamp-Dir&lt;/span&gt;" and currently&lt;span style="font-weight: bold;"&gt; Lamp-Dir = /opt/lampp&lt;/span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Now let us open our Terminal and type in  "&lt;span style="font-weight: bold;"&gt;gksudo nautilus&lt;/span&gt;" for us to have some admin priveledges. Nautilus will help you modify some files easily, directly from GEdit.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Using Nautilus, browse to "&lt;span style="font-weight: bold;"&gt;Lampp-dir/etc/extra&lt;/span&gt;" and open the "&lt;span style="font-weight: bold;"&gt;httpd-vhosts.conf&lt;/span&gt;".&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;By default there are two VirtualHost sections, each contained between the tag. We will do some changes to these sections now. The first section we should change it to point to localhost . Should look like this:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;    ServerAdmin admin@localhost&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;    DocumentRoot Lampp-dir/htdocs&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;    ServerName localhost&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;    ServerAlias localhost&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;    ErrorLog localhost&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:arial;" &gt;    CustomLog localhost-access_log common&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Next, for every other additional virtual host you will append the same block of code to your "&lt;span style="font-weight: bold;"&gt;httpd-vhosts.conf&lt;/span&gt;"file, but making some slight changes. For example, if you want to add the virtual host myhost.com , whose files are located in "&lt;span style="font-weight: bold;"&gt;Lampp-dir/htdocs/myhost&lt;/span&gt;" , you will add this code:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;    ServerAdmin admin@myhost&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;    DocumentRoot Lampp-dir/htdocs/myhost&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;    ServerName myhost.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;    ErrorLog logs/myhost-error_log&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;    CustomLog logs/myhost-access_log common&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Notice that DocumentRoot and ServerName has been changed. ServerAlias is not needed anymore. Save the file.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Next you should enable virtual hosts in the configuration file, located at Lampp-dir/etc . Open the file "&lt;span style="font-weight: bold;"&gt;httpd.conf&lt;/span&gt;"with nautilus, and uncomment the line:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;    &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;#Include etc/extra/httpd-vhosts.conf&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Save the file.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Now we should add the domain name to the hosts file in order for the domain name to point to our ip address 127.0.0.1 , but not to look for it in the DNS database. So go to "/etc/" with Nautilus, also, and open this file: hosts . Now at the end of the file append the following line :&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;127.0.0.1 myhost.com&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;(or change myhost.com to the name of your own virtual host name).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Do the same thing for all the other virtual hosts you have. Save the file.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Now we will need to restart Xampp/Lampp in order for the changes to take effect. Open a terminal window and run this command: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);font-family:arial;" &gt;gksudo Lampp-dir/lampp restart&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Now you should be able to work with your new virtual hosts, by going with your browser to "http://myhost.com/"&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4975015861503839587-7478351297648256011?l=phpbakers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://phpbakers.blogspot.com/feeds/7478351297648256011/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://phpbakers.blogspot.com/2009/04/lampp-multiple-virtual-host-setup.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/7478351297648256011'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/7478351297648256011'/><link rel='alternate' type='text/html' href='http://phpbakers.blogspot.com/2009/04/lampp-multiple-virtual-host-setup.html' title='LAMPP - Multiple Virtual Host Setup'/><author><name>Ronin</name><uri>http://www.blogger.com/profile/13579347598318437314</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='26' src='http://jehoven.wordpress.com/files/2006/09/imgjr.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4975015861503839587.post-8738330611755145612</id><published>2009-03-25T08:38:00.000-07:00</published><updated>2009-03-26T21:59:39.061-07:00</updated><title type='text'>Setup Multiple Virtual Hosts for Xampp</title><content type='html'>Lets move off the topic for now.&lt;br /&gt;Since we have installed our cake files on our server and configured our pc to be able to run cake bake, why dont we make it more look good by directly having our apps name as the address on our server&lt;br /&gt;i.e:  &lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;http://myapp&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;hows that sound?&lt;br /&gt;&lt;br /&gt;I will share here how to config xampp to have a multiple virtual host.&lt;br /&gt;Why would i want to setup a multiple vhost?&lt;br /&gt;This is because i would like to organize my files where in i need not to bother my self of sub directories. It would also seem like you are working online.&lt;br /&gt;&lt;br /&gt;1.  proceed to our &lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;httpd-vhosts.conf&lt;/span&gt;&lt;br /&gt;path-to-apache/conf/extra/&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;httpd-vhosts.conf &lt;/span&gt;&lt;br /&gt;open the  &lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;httpd-vhosts.conf  &lt;/span&gt;on your text-editor.&lt;br /&gt;&lt;br /&gt;2. uncomment the line which says &lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;NameVirtualHost *:80&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;br /&gt;3. We can now start adding our &lt;span style="font-weight: bold;"&gt;Virtual Host&lt;/span&gt; Entry check the lines below&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;pre class="shell"&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;  &amp;lt;virtualhost *80&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       ServerAdmin webmaster@localhost&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       DocumentRoot G:/xampp/htdocs/pancake&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       ServerName pancake&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       &amp;lt;directory "G:/xampp/htdocs/pancake"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            Options Indexes FollowSymLinks Includes ExecCGI&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            AllowOverride All&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            Order allow,deny&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            Allow from all&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       &amp;lt;/directory&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;  &amp;lt;/virtualhost&gt;&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;The &lt;span style="font-weight: bold;"&gt;DocumentRoot&lt;/span&gt; value will be the directory for your new &lt;span style="font-weight: bold;"&gt;virtual host&lt;/span&gt;&lt;br /&gt;i.e:&lt;br /&gt;G:/xampp/pancakes&lt;br /&gt;G:/xampp/public_html&lt;br /&gt;The &lt;span style="font-weight: bold;"&gt;ServerName&lt;/span&gt; value will be your desired name for your new &lt;span style="font-weight: bold;"&gt;virtual host&lt;/span&gt;&lt;br /&gt;i.e:&lt;br /&gt;pancakes   - accessed as http://pancakes&lt;br /&gt;myapp       - accessed as http://myapp&lt;br /&gt;The &lt;span style="font-weight: bold;"&gt;Directory&lt;/span&gt;  value must be equal to the value of your &lt;span style="font-weight: bold;"&gt;DocementRoot&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;*please use forward slash for the &lt;span style="font-weight: bold;"&gt;DocumentRoot&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;Directory&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;4. Next we will do is to tell our machine what to do with the url to our new &lt;span style="font-weight: bold;"&gt;Virtual Host&lt;br /&gt;&lt;/span&gt;    if we use it on our browser.&lt;br /&gt;first we open the file &lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;host&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;s &lt;/span&gt;on our text editor from   &lt;span style="color: rgb(51, 51, 255);"&gt;C:\WINDOWS\system32\drivers\etc&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;5. Lets us now add this line&lt;br /&gt;&lt;pre class="shell"&gt;     127.0.0.1  pancakes&lt;/pre&gt;&lt;br /&gt;This is to map your host to your IP&lt;br /&gt;&lt;br /&gt;6. Last thing to do is to remove the &lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;index.php&lt;/span&gt; from your htdocs this is to avoid seeing the xampp's page on your new virtual host.&lt;br /&gt;&lt;br /&gt;*After doing this you might not be able to access the http://localhot on your browser therefore you should add another entry on your Vhost.  see code below&lt;br /&gt;&lt;pre class="shell"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;  &amp;lt;virtualhost&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       ServerAdmin webmaster@localhost&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       DocumentRoot G:/xampp/htdocs/&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       ServerName localhost&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       &amp;lt;directory "G:/xampp/htdocs/"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            Options Indexes FollowSymLinks Includes ExecCGI&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            AllowOverride All&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            Order allow,deny&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;            Allow from all&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;       &amp;lt;/directory&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;  &amp;lt;/virtualhost&gt;&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4975015861503839587-8738330611755145612?l=phpbakers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://phpbakers.blogspot.com/feeds/8738330611755145612/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://phpbakers.blogspot.com/2009/03/setup-multiple-virtual-hosts-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/8738330611755145612'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/8738330611755145612'/><link rel='alternate' type='text/html' href='http://phpbakers.blogspot.com/2009/03/setup-multiple-virtual-hosts-using.html' title='Setup Multiple Virtual Hosts for Xampp'/><author><name>Ronin</name><uri>http://www.blogger.com/profile/13579347598318437314</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='26' src='http://jehoven.wordpress.com/files/2006/09/imgjr.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4975015861503839587.post-7122315428988111986</id><published>2009-02-22T23:47:00.000-08:00</published><updated>2009-03-25T08:38:32.779-07:00</updated><title type='text'>Setup CakePHP</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-style: italic;"&gt;Setting up cakephp was just easy, i have it up and running already, but after i have started developing an app on it with the example provided i have encountered an error. What should i do?..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This also what i have encoutered. so let me do it to you step by step&lt;br /&gt;1. Extract cakephp on your root-directory. I'll be preserving the names of the folder here.&lt;br /&gt;so our file structure would be:&lt;br /&gt;&lt;blockquote&gt;"&lt;span style="font-size:85%;"&gt;&lt;span style="font-style: italic;"&gt;root-directory/&lt;br /&gt;&lt;ul&gt;&lt;li&gt;-cake&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;index,php&lt;/li&gt;&lt;br /&gt;&lt;li&gt;.htaccess&lt;/li&gt;&lt;br /&gt;&lt;li&gt;cake&lt;/li&gt;&lt;br /&gt;&lt;li&gt;app&lt;/li&gt;&lt;br /&gt;&lt;li&gt;cake&lt;/li&gt;&lt;br /&gt;&lt;li&gt;docs&lt;/li&gt;&lt;br /&gt;&lt;li&gt;vendors&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;"&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;2. You should also add the php and bake executable to your environment variable. To do this,&lt;br /&gt;&lt;blockquote&gt;1. go to the &lt;span style="font-weight: bold;"&gt;Windows &lt;/span&gt;&lt;em style="font-weight: bold;"&gt;System Properties&lt;/em&gt; dialog, then select the&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;em style="font-weight: bold;"&gt;Advanced&lt;/em&gt;&lt;span style="font-weight: bold;"&gt; tab&lt;/span&gt;, and click on &lt;em style="font-weight: bold;"&gt;Environment Variables&lt;/em&gt;.&lt;br /&gt;2. On the &lt;span style="font-weight: bold;"&gt;System variables list&lt;/span&gt;. Select &lt;span style="font-weight: bold;"&gt;Path&lt;/span&gt; then edit.&lt;br /&gt;3. Type in the directory for your php.exe and cake console. as in my case it will be&lt;br /&gt;    "&lt;span style="font-style: italic; font-weight: bold;"&gt;c:/xampp/php/&lt;/span&gt;" for my php.exe.&lt;br /&gt;    "&lt;span style="font-style: italic; font-weight: bold;"&gt;c:/xampp/htdocs/cake/cake/console&lt;/span&gt;" for my cake console.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;3. To be able to use .htaccess for cake pretty urls open your httpd.conf and uncomment the line which says&lt;br /&gt;         &lt;span style="color: rgb(51, 102, 255); font-weight: bold;"&gt;LoadModule rewrite_module modules/mod_rewrite.so&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4975015861503839587-7122315428988111986?l=phpbakers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://phpbakers.blogspot.com/feeds/7122315428988111986/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://phpbakers.blogspot.com/2009/02/setup-cakephp.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/7122315428988111986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/7122315428988111986'/><link rel='alternate' type='text/html' href='http://phpbakers.blogspot.com/2009/02/setup-cakephp.html' title='Setup CakePHP'/><author><name>Ronin</name><uri>http://www.blogger.com/profile/13579347598318437314</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='26' src='http://jehoven.wordpress.com/files/2006/09/imgjr.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4975015861503839587.post-2781929429315644889</id><published>2009-02-22T23:46:00.000-08:00</published><updated>2009-02-22T23:47:17.247-08:00</updated><title type='text'>Glosary</title><content type='html'>Nothing here yet&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4975015861503839587-2781929429315644889?l=phpbakers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://phpbakers.blogspot.com/feeds/2781929429315644889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://phpbakers.blogspot.com/2009/02/glosary.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/2781929429315644889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/2781929429315644889'/><link rel='alternate' type='text/html' href='http://phpbakers.blogspot.com/2009/02/glosary.html' title='Glosary'/><author><name>Ronin</name><uri>http://www.blogger.com/profile/13579347598318437314</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='26' src='http://jehoven.wordpress.com/files/2006/09/imgjr.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4975015861503839587.post-1802061543698717232</id><published>2009-02-07T07:50:00.000-08:00</published><updated>2009-02-22T23:46:35.602-08:00</updated><title type='text'>Notes of  Cakephp Baker</title><content type='html'>Staying in front of my without a task was really boring. Finishing a day sitting on my chair waiting for my clients to pop in and say hey i've got new task for you. But at i just ended up on just waiting for it and have finished reading my fave anime manga's. ehehe... Im at my third day of not recieving a task from my client although hi paying for me(:grin: well eheheh... its great to just recieve money with having to sweat your a-s off.) but its no fun at all... aaahhhhh&lt;br /&gt;&lt;br /&gt;Ok ok ok.. so you are saying now where the heck is cakephp here?? im not here to listen to your woes!!!&lt;br /&gt;&lt;br /&gt;Ok so i'll start now... since i also want to learn cake.&lt;br /&gt;&lt;br /&gt;Lets prepare first your PC/MAC or whatever you call it.&lt;br /&gt;You must have installed already your webserver having PHP4.x.x or PHP5 and mysql or you can get the whole package from &lt;a href="http://www.apachefriends.org"&gt;apachefriends&lt;/a&gt;.&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-style: italic;"&gt;I'll be using xampp for my webserver running on windows Xp&lt;/span&gt;&lt;/span&gt;.&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-style: italic;"&gt;I also have my xampp installed at a "C:/xampp" directory and my &lt;span style="font-weight: bold;"&gt;root directory&lt;/span&gt; will be "&lt;span style="font-weight: bold;"&gt;C:/xampp/htdocs/&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;"&lt;br /&gt;&lt;/blockquote&gt;&lt;span style="font-family: times new roman;font-size:100%;" &gt;&lt;span style="font-style: italic;"&gt;Can i use cake now?...&lt;/span&gt;&lt;/span&gt; nope were not done preparing yet. we still need to download our &lt;a href="http://cakephp.org/downloads"&gt;cake php&lt;/a&gt;.&lt;br /&gt;and extract the content of the file to our root directory.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4975015861503839587-1802061543698717232?l=phpbakers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://phpbakers.blogspot.com/feeds/1802061543698717232/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://phpbakers.blogspot.com/2009/02/notes-of-cakephp-baker.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/1802061543698717232'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4975015861503839587/posts/default/1802061543698717232'/><link rel='alternate' type='text/html' href='http://phpbakers.blogspot.com/2009/02/notes-of-cakephp-baker.html' title='Notes of  Cakephp Baker'/><author><name>Ronin</name><uri>http://www.blogger.com/profile/13579347598318437314</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='26' src='http://jehoven.wordpress.com/files/2006/09/imgjr.jpg'/></author><thr:total>0</thr:total></entry></feed>
