⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

Remember to use the CodeIgniter and Grocery CRUD manuals



davidoster

davidoster
  • profile picture
  • Member

Posted 09 May 2013 - 11:20 AM

Dear all,

 

as you know the current stable version of Grocery CRUD utilizes the wonderfull (and super fast) CodeIgniter framework.

This means that the code is based on this and hence it is good to know a few things about this framework before we start using it.

 

Many questions can be answered just by looking to the manual,

 

so, PLEASE READ THE MANUAL

and the Grocery CRUD's manual also.

 

Following [member=victor]'s suggestion we include some additional information that might be useful to you.

 

1. Read these tutorials on how to use the developer tools of your browser

- for Internet Explorer, http://msdn.microsof...ibrary/dd565627(v=vs.85).aspx

- for FireFox, http://www.howtogeek.com/105320/how-to-use-firefoxs-web-developer-tools/

- for Google Chrome, https://developers.google.com/chrome-developer-tools/

(feel free to suggest more tutorials!  :D )

 

2. Use, during development, PHP's error reporting,

error_reporting(E_ALL);

Edited by [member=web-Johnny]
Also please make sure the the display_errors is set to "On" in your php.ini file (suggested).

display_errors = On

or in your php index.php file add:

ini_set('display_errors', 'On');
 
3. Learn all about CodeIgniter's error handling here: 
 
4. Are you sure that you are using the latest stable version of grocery CRUD? Did you know that the latest code on github is under development and it is not suggested to be used to production mode? Edited by [member=web-Johnny]
 
5. Remember to smile  :) . All the support of the forum is for free and people try to help, so keep that in mind and please respect any given answer. Edited by [member=web-Johnny]
 
6. Read the 4 Golden Rules for asking questions on forums Edited by [member=web-Johnny]

 

Thank you! Keep on supporting this great software!


dux

dux
  • profile picture
  • Member

Posted 20 July 2013 - 03:59 AM

thanks for the info and tutorials.. these are the basic things i need..