Every repository with this icon (
Every repository with this icon (
| Description: | A CakePHP Content Management System edit |
-
There's a lot of cool functions all around and developers don't know about them. Create a proper API ASAP.
Comments
-
Concepts still work, but some details are outdated. The same with installation procedure [http://forums.wf.klevo.sk/comments.php?DiscussionID=115&page=1#Item_2].
Comments
-
$this->WildPage->get($slug); does not work anymore (not looked into reason) but have found that moving the function to appmodel and adapting the function to be called AppModel::get('feature-tour');
function get($slug = null) { // $this->assertInternalRequest(); return ClassRegistry::init('WildPage')->findBySlug($slug); }have every thing flowing :) indeed pages are the heart of every CMS!
processing widgets here may be too intensive for some machines (I am exceeding my limits currently doing this - but that is processing three areas of content in one page)
Comments
-
Custom Wildflower.prefix causes WfController controller errors with revisions
1 comment Created 4 months ago by nihiloRexUsing a custom Wildflower.prefix causes "Missing WF Controller" error when viewing revisions. If you do not change the Wildflower.prefix, this is not an issue.
Comments
If you look on the forum, there has been a couple of revisions to this - I currently have a custom wf prefix and have everything working without any problems.
-
When saving out a widget, a missing view is sent back in the ajax post response
Comments
This can be easily fixed by adding the following:
line: 61
$this->autoRender = false; in wildflower/controllers/wild_widgets_controller.php
for the wf_update() function -
perhaps there is an update availabel to this behavior
the followiing code:
require_once APP . 'app_helper.php';(I have moved this line to the private getSlug method seems to have no adverse effects)
means that when using models within shell/tasks cause output errors, moving the line above makes models within wf work within shells/tasks
perhaps
if (!class_exists('AppHelper')) { App::import('Core', 'AppHelper', false); }Comments
-
I'm pretty new to the hasMany setup, but it seems that if a blog post is updated, then it loses its category association.
I'm not sure what is missing, but basically the original hidden element isn't being populated with the WildCategory variable.
Comments
-
Kalileo has pointed out that widgets don't work in the current master; they don't show in admin
Kalileo notes:
However when I change the code in WidgetsController line 20 from
$widgetsPath = APP . 'views' . DS . 'elements' . DS . 'widgets'; to
$widgetsPath = WILDFLOWER_DIR . 'views' . DS . 'elements' . DS . 'widgets'; they are shown.Comments
-
When changing admin prefix in config/core.php admin does not user the admin prefixed actions & view
http://forums.wf.klevo.sk/comments.php?DiscussionID=147&page=1#Item_0Comments
-
Validation not working correctly when adding or editing users
2 comments Created 9 days ago by mikebirchValidation of the login field isn't working in wildflower/models/wild_user.php
It always displays the error message "Login must be between 5 to 50 alphanumeric characters long"Comments
mike,
can you include your wf version and where you got the code? github or zip dowbload?I'm using klevo-wildflower-853920c from github. wildflower/models/user.php
I have done some more testing and the problem seems to be with CakePHP 1.2.5 rather than Wildflower. I'm using PHP 5.2.5 and the alphaNumeric validation always fails regardless of the input. I have used custom validation instead http://book.cakephp.org/view/150/Custom-Validation-Rules











