![]() |
CodeExtinguisher 2.0 Release Candidate 14.2 - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: CodeExtinguisher 2.0 Release Candidate 14.2 (/showthread.php?tid=8451) |
CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 11-17-2008 [eluser]got 2 doodle[/eluser] lastest version - as far as I know yes, it hasn't changed in a few months now, I believe there is an SVN there is a new thread here doodle CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 11-27-2008 [eluser]dbelanger[/eluser] I was able to fix my problem and thought I'd share the answer in case anyone else wanted to use CE with a host like godaddy where you need to end your index page with a '?'. My navigation url's were looking like this: Code: http://www.site.com/backend.php?/c=crud&m=manage&t=privacy&a=edit&id=1 To fix it I went into the config/codex.php file and mapped the navigation like so: Code: 'navitem'=>'navitem/', for each navigation item and my url's are now fine: Code: backend.php?navitem/ CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 11-27-2008 [eluser]dbelanger[/eluser] Hi all, Now that I've got my other issues worked out I'm back to fighting getting a WYSIWYG (tiny mce) going. I'm not sure if it's my yml file or not. I'm using the editor plugin found on the PBWiki. My yml file is very simple: Code: title: The error message I'm getting is: Code: A PHP Error was encountered Any ideas on what's going on? Thanks for any input. CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 12-08-2008 [eluser]spyro[/eluser] Just downloaded CodeExtinguisher a little while ago and have to say that it is looking very good. Especially since I was going to have to write a bunch of this functionality from scratch. I do have a question. CE automatically generated pages for each of my tables and assumed that they had an id column in which to list/query by. Many of the tables in my current db do not have the id column. I looked for an auto generated YAML but did not find anything. Is there a way to change this functionality? CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 12-08-2008 [eluser]Majd Taby[/eluser] Thanks for the comments. You can change the name of your primary id by specifying....primary_id in your yaml ![]() CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 12-08-2008 [eluser]spyro[/eluser] [quote author="Majd Taby" date="1228807523"]Thanks for the comments. You can change the name of your primary id by specifying....primary_id in your yaml ![]() I am pretty new to CI and never seen YAML before. After some reading of the docs and a few tests I came up with the code below to get rid of the error. form_setup: primary_id: ad_id Now I need to set the plugin used for this field, which I have attempted, leaving me off with the no proper plugin error. Under primary_id I tried a few things including: ad_id: class: TextBox Can you point me in the right direction? CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 12-08-2008 [eluser]Majd Taby[/eluser] YAML is a markup language (Yet Another Markup Language), and it uses whitespace to define scope and context. Try changing your definition to: Code: primary_id: ad_id Note that you must use spaces, not tabs. CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 12-08-2008 [eluser]spyro[/eluser] primary_id doesn't seem to work unless it is under form_setup. With your suggestion it puts me back to the SQL error. CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 12-09-2008 [eluser]damarev[/eluser] Hi! I've just installed ci (1.7.0) and codex (codex2_rc14.2) under xampp, and after I run installer.php (all went fine, no errors) i tried to load backend.php but get several notice and warning errors on filename plugins/image.php: Message: Undefined property: Image::$params Line Number: 38 Message: array_key_exists() [function.array-key-exists]: The second argument should be either an array or an object Line Number: 38 Message: Undefined property: Image::$params Line Number: 48 Message: array_key_exists() [function.array-key-exists]: The second argument should be either an array or an object Line Number: 48 Message: Undefined property: Image::$config Line Number: 48 and a fatal one: Fatal error: Call to undefined method Image: ![]() Please, Am I missing something? Any idea of what is wrong? Thanks... CodeExtinguisher 2.0 Release Candidate 14.2 - El Forum - 12-09-2008 [eluser]got 2 doodle[/eluser] see if this helps image.php fix doodle |