Need help with CodeIgniter v2.0.2 - codeigniter

I'm new to CI. Anyone could help to the latest version of CI. most of the Tutorial is for last version and it didn't work for the latest version. please help.

You can still get started using what's availabe for 1.7, if you pay attention to how file structure changed between the two versions (ie the System and Application directories are now separate). To that, many of the tuts you'll find are applicable - bearing in mind that the paths may differ, and you'll want to verify that the functions are still supported in 2.0 by use of the User's Guide).
If you walked through the tut in your link, using the Models, Views, Controllers directories inside Application, you'd get a "Hello World" page.
The User's Guide is a great tool, as are the Community Forums.
Best of luck to you.

I recently migrated a site using CodeIgniter from 1.7 to 2.0. - I found the following link to be very useful:
http://philsturgeon.co.uk/news/2010/05/upgrading-to-codeigniter-2.0

Related

Mean.js, where do I start?

I have to make a web application with Meanstack for a school project. I have downloaded and installed the newest version of the Mean.js boilerplate (http://meanjs.org/) and got the sample site working. But I have no idea how to continue. There are so many files in the project directory. Can somebody please tell me the files I can/need to change to start building my own app?
I'm very new to programming, so sorry if this is a stupid question. I'd really appreciate an answer.
This is what the project folder looks like.
The meanjs.org documentation (here) has plenty of great information about what each file does, and what you might need to research to get started. Besides that there are a lot of great tutorials out there, one I liked in particular was this youtube series.
Please note that in these examples I am using the mean stack from meanjs.org, not mean.io, and I am using version 0.3. If you are using a different MEAN stack, or version, I would still recommend first looking through the official documentation, and then various tutorials online.

Google Drive API - PHP Deprecated version

I found the Quickstart guide to run a drive APP in PHP, https://developers.google.com/drive/web/quickstart/quickstart-php, but the example script is not working, because the new Github version has a different structure.
Where can I find the updated version of the example for the same purposes?
Or is there a similar one, for that exact github version (google-api-php-client-master)
I would love to create and edit google doc files.
Thanks a lot.

CodeIgniter 2.1.0 Template Library

Recently CI 2.1.0 is out.
I have a question. As I recognized that the CI folder structure has been 'evolved' (easy to setup, automatically defines base_url,etc), I'm wondering if the current template libraries like Phil's,william's concept,ocular,etc.. can be adapted to this new CI version.
I've tried Phil's but no luck, I mean..I don't know if I'm missing something this time, and ocular, also, to no avail ( I don't subclass the Controller, as suggested here)
Any better templating suggestions that will be suited enough to the latest CodeIgniter 2.1.0?
Thanks.
It seems like from the comments above that you're having trouble finding any resources online on the matter. Here's my suggestion for you:
Check the CodeIgniter Change Log here, and compare all the changes between this newest release, and the release that you know last worked with the template libraries that you've mentioned above. Use deductive reasoning, and see if you can find a way to modify the templates you need to work with the current CodeIgniter structure. I know that's a lot of work, and is not ideal for your situation. Regardless, it's the best advice I can give at the current moment. Good luck, and happy reading!

Create installation for a CMS using Codeigniter 2.0.3

I have created a basic CMS using CodeIgniter 2.0.3, and now I want to create an installation so it can work on other computers. I have hard time finding any advice on the net. What is the best practice in this case?
If you are looking for an example, download and review ionize cms. It has a good installer and is released under the Open Source MIT license.
The Ionize CMS installer is a good start, but remember it is written only to install Ionize, not for other purposes.
Anyway, it can help you to discover how to load CI classes and use them "outside" of CI.

CodeIgniter and ExpressionEngine

I'm looking to put a small site together and would like a CMS for the static content, but also want to be able to code outside of the CMS (to many bad experiences building modules for Drupal). I've used CodeIgniter and played with Expression Engine a little - and know that ExpressionEngine 2.0 will be build on CodeIgniter...I just wondered if anyone took this approach with the current EE version? and if anyone has any real info on when EE 2.0 is coming out? (if there's other similar approaches I would be open to them).
EllisLab hasn't made any announcement regarding specific launch dates for EE 2.0, and anyone with access to the beta currently going on would be under NDA so couldn't reveal any specifics about that publicly anyway.
EE 1.x can be installed to any directory/subdomain so you can always create areas on your server that are controlled by EE and other areas controlled by custom programming without too much difficulty. The hard part is getting them to share (ie: user session data).
I built an EE site that had a "customer dashboard" feature from where PDF's could be printed with invoices. I did this all outside the EE installation using just clean php.
You CAN also include normal PHP inside any template file and link to your own Classes or Includes outside the EE install directory.
Pretty straightforward.
ExpressionEngine 2.0 is coming out on December 1, 2009.
It will use CodeIgniter for plugins, etc. Wait just a bit. :)

Resources