I am looking for information on how to set up a code igniter project in Dreamweaver CS 5.5 with code hinting like you can for Zend framework.
-
I know a lot of people just wouldn't use dreamweaver. but I like some of the functionality. I was wondering if you just point the code hinting to the library like you do with zend – Ashley Briscoe Sep 18 '12 at 11:06
-
use codelobster. there is a plugin in it. while coding you can auto select methods and much more is available – Muhammad Raheel Sep 18 '12 at 12:32
-
I see you have to pay for the plugin? – Ashley Briscoe Sep 18 '12 at 13:43
-
Does anyone have experience with dreamweaver on this – Ashley Briscoe Sep 18 '12 at 14:46
3 Answers
I have managed to set code igniter up in Dreamweaver CS5.5 by downloading the latest version of code igniter and placing in a folder called php_librarys on the root of my C: drive. I then followed the instructions for site specific code hinting here: How to set up site specific code hinting. The folder you need to point Dreamweaver to is the libraries folder in the system directory of Code igniter. Just make sure you select recursive and .php as the extension as per the screenshot below:

- 727
- 2
- 12
- 33
-
1In dropdown box, their is only wordpress, joomla and drupal? How to add codeigniter to it? – Mansoorkhan Cherupuzha Nov 16 '12 at 05:12
very simple in dreamwaver to autocomplete any functions in wordpress - codeigniter or even your custom library of code
steps are as follows:
1- in dreamwaver open site -> Site Specific Code Hints -> (You can select wordpress-joomla-...) or even any folder like (CI folder) that you mentioned.
2- do not forget to select (scan this folder,recursive)
3- it will ask you for custom name just write any one you like "like mynewCI"
it will create a config file in your selected folder => do not remove it.
that is all
the process in detail in this video
http://tv.adobe.com/watch/learn-dreamweaver-cs5/using-php-code-hinting-in-dreamweaver-cs5/
now press ctrl+space and enjoy.
if this answer was helpful, please vote me up!
thanks

- 1,322
- 15
- 20
I followed this, but with no luck first time. After a while playing into DW to get it working, made pause for a while - and after restart of DW it works.
I used last CI: CodeIgniter-3.0.4.zip
How it was made:
1./ download CI - and extract it into XAMPP htdocs folder into folder code1 (the name You can choose freely) - also: d:\WWW\xampp5615\htdocs\code1\ in My case.
2./ configure Site and Servers in DW to have Live view possible (play with it, sometimes I forget after a while how to do it... :-) )
3./ configure Site-Specific Code Hints in DW - in My case I added the root of site code1 into this menu - see printscreen - and don't forget to define .php extension + recursive + scan
4./ if not working restart DW - it should work now... the index.php renders fully into live view :-) I'm lucky. can learn do some stuff with CI PHP Framework... :-)
Hope it helps...
Printscreen: CodeIgniter-3.0.4 and Dreamweaver CC 2015

- 41
- 1
- 7