That's weird – it's still working fine for me...? maybe you didn't set it up correctly?
You need to log in on your Analytics account, click on the profile for the domain, and look at the URL. Simply grab that number after the 'p' at the end and past…
That didn't seem to do much unfortunately... when running the ci_cron the errors are the same. I also tried using the index.php method and I get this
Notice: Undefined offset: -1 in /Applications/MAMP/htdocs/project/fuel/modules/fuel/config/fuel_c…
Can anyone help?
When i try in my terminal the cron command:
~/htdocs/project/fuel/crons$ php ci_cron.php /fuel/my_module/my_controller/test
i get an error
Notice: Undefined offset: -1 in /Applications/MAMP/htdocs/toptennis/fuel/modules/fuel/co…
Well, i'd like to be able to also duplicate uploaded content via some of my own highly custom media uploads methods...
Thanks anyway, I think I'll implement my own 'Duplicate' button and add it to the 'Others' action in the top bar...
yes and no. In the end I had to resort creating a semi-hybrid solution (ie including useful bits of GoCart into a sort of FuelCMS-compatible module) but it's more of a hacky solution than anything worth sharing really... and to be honest I wouldn't …
OK,
so it seems that the cause is indeed the older jquery version being included by inline_edit_bar.php. If i remove 'jquery/jquery' from the js() call chosen works again (and so does the inline editing bar, since jquery is being also loaded by my …
OK fwiw I've found out a super simple way of achieving this (at least partially).
1) download Tinymce and extract the tiny_mce folder inside /fuel/modules/fuel/assets/js/editors
2) add 'editors/tiny_mce/tiny_mce.js' at the end of the 'fuel_javasc…
After spending some time on this, I've looked into the stock Blog module and basically implemented a get_cache() / save_cache() combo just as the one featured in the Fuel_blog library.
That works pretty well indeed, all I need. Thanks anyway!
That's good to know, however I'm stuck on 0.93 for this project I'm working on, and I'd appreciate it a lot if you could maybe point me in the right direction for a quick fix...
I'm thinking something like finding a way to check if the 'save' event…
AWESOME! I found out how with a little bit of testing!
as long as you post field => value to a model's 'create' method these will be pre-selected in the form!! i love Fuel!!!
No because if i keep the filter on it doesn't even get there. debug_query() returns:
'UPDATE `ci_sessions` SET `last_activity` = 1340380635, `....'
(session query)
and PHP errors as stated above...
so printing the debug_query() inside list_items before the final return shows:
SELECT products.id, collections.title as collection
FROM (products)
LEFT JOIN `collections` ON `collections`.`id` = `products`.`collection_id`
ORDER BY id desc
For what it's worth, I'd aslo recommend using only portions of the bootstrap - as you can see from my quick test the stock FuelCMS looks way better than that! The only thing i'd use would be alerts, buttons / form elements, probably the tables....
ah so
'permission' => array('edit' => 'pages', 'publish' => 'pages_publish', 'delete' => 'pages_delete'),
this is possible??
PS still, the difference between edit / create is kinda crucial. Maybe something to keep in mind for the …