Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

hemingweb

About

Username
hemingweb
Joined
Visits
26
Last Active
Roles
Member

Comments

  • Managed to hack this by commenting out line 501 in Fuel_advanced_module.php but not sure what I've broken by doing that.
  • I have uncommented the $config['settings'] section at the bottom of application/config/MY_fuel.php and get the following error: A PHP Error was encountered Severity: Notice Message: Undefined property: Fuel::$settings Filename: libraries/Fuel_ad…
  • Is it worth updating FUEL_VERSION?
  • Had to change the $config['sess_save_path'] in application/config/config.php to: $config['sess_save_path'] = APPPATH . '/cache/';
  • I've worked through the rest of the setup, tried to access fuel and have a few errors: A PHP Error was encountered Severity: Warning Message: mkdir(): Invalid path Filename: drivers/Session_files_driver.php Line Number: 117 Backtrace: File: …
  • Sorted: I've edited the environments.php config and added , 'local.*' to the development array. my local development domain is http://local.xxxx
  • OK, so I got to the bottom if this, kind of. the 'title_field' => 'title', needs to be set to the form_element name, then the element name needs to be used for the 'label' =>'{__form_element__}'. I don't think it works for the code snippet a…
  • My fuel version is: define('FUEL_VERSION', '1.3.1');
  • here you go, the db table CREATE TABLE `model_pages` ( `id` int(11) NOT NULL, `model_id` int(11) NOT NULL, `inputs` text NOT NULL, `precedence` int(11) NOT NULL DEFAULT '3', `active` enum('yes','no') NOT NULL DEFAULT 'yes' ) ENGINE=InnoD…
  • it wasn't my debug causing the issue, the errors occur on edit and save. the args are array ( 0 => false, ).......... array ( 0 => 'Dashboard', ) array ( 0 => 'Pages', ) array ( 0 => 'Blocks', ) array ( 0 => 'Navigation', )…
  • define('FUEL_VERSION', '1.3.1'); regarding MY_language_helper.php, it's line 65 (I had some debug code it) return call_user_func_array('sprintf', $args);
  • having said it works, I get the following errors on saving. A PHP Error was encountered Severity: Notice Message: Array to string conversion Filename: helpers/MY_language_helper.php Line Number: 72 A PHP Error was encountered Severity: Warning …
  • doh, sorted this out. the code works, the database field was set to int. Muppet
  • just spotted return_url // only works if javascript_submit = FALSE
  • Hi Admin, Thank for that, I feel I've made lots of progress and I'm almost there. The final stumbling block is forwarding to a thank you page. I've set the return_url in the modules and it's been set in the form, but when the form is submitted it d…
  • Hi Admin, Going down the route of creating a block, can I still use the fuelcms form module? I can't find out how to access the 'After submit' -> 'form action'.
  • cheers. I've got the fields working as I want them. In the form_fields function I pick up on the $values to determine if its edit or create. I guess there's a eloquent fuel way to do this that I've not found yet. So: load manufacturer list $fi…
  • i've traced one of the issues, when creating a product I was getting a val.length issue in fuel/assets/js/fuel/custom_fields,js line 1393, I've wrapped it in if(val !== null){} the create function now works, edit is still and issue
  • I've updated my code base, but it hasn't fixed the issue. It seems that it can't handle the cascading dependency. manufacture determines products which intern determines product attributes. It all works fine when there is one manufacturer.