Codeigniter 2 and Kohana 3 tutorials? - php

I was wondering if anyone had any other good tutorials based on both Codeigniter 2 and Kohana 3. I did find this tutorial on easy authentication for codeigniter, but other tutorials are from Codeigniter are version 1.7.2 and I just started learn about version 2.0.2. I haven't found any from Kohana yet. Any comments and help is greatly appreciated.
P.S. Yes, I have googled for tutorials, but I figured I ask here while I was looking.

These two are good places to start. Sometimes the Kohana website user guide is lacking.
Kohana beginners tutorial - http://kowsercse.com/2011/09/04/kohana-tutorial-beginners/
Kohana 3 unofficial wiki - http://kerkness.ca/kowiki/doku.php

Really the kohana documentation you find in the download of kohana itself is going to be your best resource as far as kohana is concerned. Also there is a kohana IRC channel where you will occasionally find good help.
#kohana # irc.freenode.net

Kohana 3 user guide: http://kohanaframework.org/3.1/guide/
and tutorials are here: http://kohanaframework.org/3.1/guide/kohana/tutorials
If you download the Kohana 3 package and run it in your dev server, you can enable "userguide" module in application/bootstrap.php (somewhere around line #100) and have it available locally.

Related

Forum bundle - Symfony 3

Is there any forum bundle for Symfony 3? I've been looking for several hours in the Internet, but haven't found anything. Some of forum bundles are for Symfony 2.x and seem to be dead for years. I know, there is a PhpBB, which is based on Symfony but there is a lack of information about integration PhpBB users with FOSUserBundle (such Vanilla has). If you know some forum bundle (even the simplest) please let me know.
Thanks.
I've used this and I think is good, even is unsupported. Here you can find a lot of module related to blogs.
This is another one: https://packagist.org/packages/herzult/forum-bundle

Zend framework 2 project examples

I'm Zend Framework 2 beginner. I worked with some other frameworks and CMSes. I'd like to digg-in some already finished projects. Please, give me some links to git repository or other sources of already finished ZF2 projects.
Yes, I tried to google.
Yes, I tried to search on stackoverflow.
No, I don't need link to ZF2 standard skeleton.
Use this Tutorial Really helpfulTutorial
you can download ZF2 standard skeleton.
https://github.com/zendframework/ZendSkeletonApplication

Joomla 1.6 and CakePHP integration

I dont seem to understand how do you integrate CakePHP framework with Joomla 1.6 CMS?
I have been reading and JAKE is commonly mentioned for the integration.
How does Jake assist in the integration, there are very limited resources online which guide me on this.
Is there any site where I can get a good understanding on the linkage between CakePHP with Joomla 1.6 using JAKE.
Thank you.
Max (the guy who made Jake) wrote an article back in 2007 explaining exactly how the linkage between Cake and Joomla works:
http://www.gigapromoters.com/blog/2007/01/28/joining-powers-of-two-great-systems-joomla-and-cakephp/
However, the official Jake site seems to be down and there has been very little talk of anything relating to Cake/Joomla since 2007.
Since then, however, there have been several CMSes created specifically for Cake, so perhaps one of those ones will do what you're looking for? Here's a good blog article with a mini-review of 13 different CakePHP CMSes:
http://blog.dreamcss.com/content-management-system/cakephp-based-cms/
The Jake project was a great idea, but as you note it wasn't maintained for some time and the last release in 2007 is incompatible with the current stable versions of CakePHP and Joomla.
That in mind, I went ahead and upgraded it to work with the current CakePHP and Joomla, after adding in a feature to support friendlier URLs. Feel free to check it out at http://blog.echothis.com/2012/09/26/jake-2-0-released/.
Here is a CakePHP component for Joomla 3 :
https://github.com/ahmad24/JCake
you can access the controller and action by passing the parameter tasks=controllername.actionname
Back end example:
localhost/joomla_32/administrator/index.php?option=com_jcake&tasks=tests.index
Front end example:
localhost/joomla_32/index.php?option=com_jcake&tasks=tests.index

Kohana 3.x auth

Where is the official kohana 3.x documentation? Whenever I go there now it's just blank pages http://kohanaframework.org/3.0/guide/auth
I'm looking around for a good Kohana 3.x auth documentation, if anyone knows anything about it, please share with me.
Thank's in advance!
The documentation is still at here. However the documentation for the Auth module is not enabled there. Even if it were, the Auth docs are currently just stubs. You can see them at here or in your own Kohana install by enabling the userguide module. Right now you are probably best off following the examples in the Kerkness wiki until the official documentation has been worked on.

Migrating custom coded/developed php project to CAKE php framework

My client wants to Migrating their custom developed php project to cake php framework. But, as of now i have only a bit of knowledge in CAKE. can anyone please let me know where do i get started CAKE php. i have already installed CAKE in my system
Where do you get started? Probably on the CakePHP website?
Seriously, watch some screencasts, download some example apps and mess around with them.
CakePHP has a sweet steep learning curve. I recommend to go with the new 1.3 version.
It is easy to start with the CakePHP Book and the API documentation. When in doubt, just look into the source code, it's all just PHP! Google should be also a good friend of yours. However CakePHP is "just" a programming framework, you must know PHP, ORM, MVC and similar concepts in advance.

Categories