No, the problem appeared after the update.
I checked the behavior on a fresh version of 1.4 and there was no such problem.
It turned out that problem was in config file app/config/asset.php,
my version had this var:
$config['assets_folders'] = arr…
Hi,
I've just updated to 1.4 and got assets output problem,
when setting assets output to 'combine' or TRUE :
<?=css($css, null, array('output' => 'combine')); ?>
I get the broken link:
/assets/807e9bc71a0de8c3bae403db24394c75_.css
…
Setting "parse" to false did not affect.
To solve the problem with caching had to use native CI caching on these pages:
$CI->output->cache();
This method has its drawbacks, had to disable inline editing and add on_before_save() hook that delet…
Thanks for a hint,
it looks like the problem is in this method аnd this is due to the encoding, also possible that this problem is related to server settings...
Eventually, after some unsuccessful attempts to change encoding through PHP, I've disc…
If I enable filters in simple module which is located in advanced module, there will be notification:
but no select field to fire filter options:
on the other hand, if enable this filters to simple module in app folder,
(except notification) app…
Hi, you probably should add entry to MY_fuel_modules:
$config['modules']['projects'] = array(
'preview_path' => 'project/{slug}',
'model_location' => '',
... ... ... ...
);
and then create a view file project.php with opt-in controller log…
Got it!
In MY_Model::process_relationships() method there is 2 conditions to handle has_many and belongs_to relationships,
both are saving data with $CI->$relationships_model->save(),
has_many is working fine and belongs_to has bug when there …
Thanks for reply!
I've checked method process_relationships() and did not find any issues:
// then save foreach ($this->belongs_to as $related_field => $related_model) { if ( ! empty($this->normalized_save_data[$related_field])) { …
Yes, I tried to delete all cookies, session data stored in DB and logout/login in fuel but it does not help...
I find out that this problem happens only on the production server, on a local machine everything works as it should,
any ideas what can c…
Actually, there is no such field type, like 'image'
you can use 'type' => 'asset' for this purpose
but if you strongly want to use type 'image',
you you can define it in /fuel/modules/fuel/config/custom_fields.php
// Asset field $fields['asset'…
You can autoload advanced module helper in autoload.php by adding your helper in $autoload['helper'] = array('my_helper') and $autoload['packages'] = array(ADVANCED_MODULE_NAME_PATH);
Version 1.3
I also noticed if add in nested template field with type hidden it works as it should!
like so: 'fields' => array( 'slide' => array('type' => 'asset', 'class' => 'toggle toggle_slider',), 'hidden' => array('type' =&g…
Hi, I was able to solve the problem with languages, when the page is stored in the table fuel_pages it saves value of the selected language, I've added in /fuel/modules/fuel/models/fuel_pages_model.php in method on_before_save() some extra code:
$v…
I've inspected the language select element:
If page was saved in German language - "de" will be selected, if Ukrainian - "uk" selected
about line 201:
Yeah, I was surprised too, I had to do so that when I opened simple module in CMS, such as news, …
I also noticed when in file fuel/modules/fuel/controllers/module.php on line 201 indicate 'default' => 'uk', then in CMS fuel/pages will be display only those pages that were last saved with the language 'uk' and pages that were saved with langua…
Interesting behavior:
I'm creating a page in the Ukrainian language and save it, then choose German language, add content, save - all goes well ...
I go to the fuel/pages - choose this page and see the following:
The language chosen - German
Content…
Can I get a reference to that change?
I do not think that this is connected with a browser, I tried to clear history and temporary files - did not help, even tried to go to the CMS from another computer - if the page has been saved in the German lan…
Thanks, it worked!
I noticed another bug related to the multilingual:
Let's say I create a page on the Ukrainian language, after saving I choose German language and add content in German, everything works as it should, but when I come out of the ed…
Excuse me, I'm probably wrong asked, paraphrasing:
How can I set 'frequency' - 'weekly' for pages created with a simple module?
If I change value of $default_frequency in view file, it changes the frequency for all pages, I need pages only with sl…
I also have a problem with inline editing feature, I have a user with all available permissions (but not super administrator) and he does not see markers, the administrator (David McReynolds) suggested to check Fuel_auth::has_permission() but I didn…