Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
WanWizard
a.k.a. WanWizard
Discussions
4
Comments
8242
Activity
Cms
I'm not making a CMS perse, but more of an application framework, in which all functionality is provided by module controllers and widgets. And that includes static HTML. So where a 'real' CMS is focused on admin pages where you woul…
Comment by
WanWizard
August 2011
permalink
a beginner' worries about emigration to fuel
As for 1: the future will tell. Unfortunaltely, I don't have my cristal ball on me now... As for 2: I personally have only comparison material between CI/DMZ and Fuel, as I have converted some apps. And I can say that Fuel is both faster and u…
Comment by
WanWizard
August 2011
permalink
Cms
On the way, but depending what qualifies for you as a CMS, it might be a long time until it's at a level you want it to be.
Comment by
WanWizard
August 2011
permalink
Make it easier for contributors to work towards a pre-defined goal...
The interstateapp makes it possible to split items on the roadmap in different sub items to make them more manageble. It's something I haven't looked at. At the moment, we use github's issue tracker for feature requests as well. I fe…
Comment by
WanWizard
August 2011
permalink
Can't get memcached up and running
As you have discovered, there are two implementations in PHP to acces memcached: the old one (memcache) and the new one (memcached). Fuel implements the new one, with is more feature rich, less buggy, but requires a PECL module to be installed on t…
Comment by
WanWizard
August 2011
permalink
Small suggestion for docs
The docs are redesigned at the moment. Maybe not a bad idea to squeeze a 'available since x.y' in there...
Comment by
WanWizard
August 2011
permalink
Small suggestion for docs
The documentation follows the code. For the official docs (fuelphp.com/docs), it's in sync with the latest official release, being v1.0. For the development docs (fuelphp.com/dev-docs), those are in sync with the develop branch code.
Comment by
WanWizard
August 2011
permalink
unescape results?
The ORM doesn't escape anything. You don't have an input filter active by any chance?
Comment by
WanWizard
August 2011
permalink
unescape results?
I think you have another issue, because haven't seen any issues with escaped quotes in my applications sofar. I suggest you'll have a look at your database tables, and see how it's stored there, and at your code you use to accept, pr…
Comment by
WanWizard
August 2011
permalink
Need a suggestion on a main namespace with all classes
Packages are considered as extensions to the core, where as modules are extensions to the application. From a technical point of view, there is no difference if you put this in a module or a package, both are namespaced, and both can be called as y…
Comment by
WanWizard
August 2011
permalink
category hierarchy table has many
For me it is, but I don't have an answer, and no time to setup a test.
Comment by
WanWizard
August 2011
permalink
unescape results?
As the previous poster said: $entry = Model_Noticias::find($new); if ( ! $entry) { Response::redirect('novidades'); } $this->template->title = 'Ver Novidade'; $this->template->content = View::factory('novid…
Comment by
WanWizard
August 2011
permalink
Parser Package : get parser instance in controller
Please add this as a feature request on http://github.com/fuel/parser/issues
Comment by
WanWizard
August 2011
permalink
ORM and Pdo (sqlite)
Fuel's ORM uses the DB classes. There is a PDO driver available, but it contains some MySQL specifics (like 'SET NAMES') that have to be removed. Supporting more DBMS's is on the roadmap.
Comment by
WanWizard
August 2011
permalink
Parser Package : get parser instance in controller
What is the definition of a parser instance? Every parser view instance has a public method called parser(), which will return the parser object. It that what you're looking for?
Comment by
WanWizard
August 2011
permalink
Exclude a method from $this->template-> | use $this->response->body instead
I mean don't commit to much in one go, with changes that don't belong together, as we have to merge the entire commit when you send us a pull request.
Comment by
WanWizard
August 2011
permalink
help me understand how to use fuel-nestedsets package
Looks like you haven't configured your models 'tree_field'. If your table contains multiple trees, you will have to define which column contains the tree id. So your configuration could contain that: class Model_Page extends \Nesteds…
Comment by
WanWizard
August 2011
permalink
Exclude a method from $this->template-> | use $this->response->body instead
Github as an excellent help page on that: http://help.github.com/fork-a-repo/ Make sure you switch to the develop branch (git checkout develop) before doing anything. If you want to push updates back, make sure your changes are atomic, because you …
Comment by
WanWizard
August 2011
permalink
Session::set() in Ajax file not available after refresh
Does that happen with every browser? I know for example that IE stops header processing when it detects a redirect, sometimes causing your session cookie to disappear. If you use server side storage, you will have the same issue, but you won't…
Comment by
WanWizard
August 2011
permalink
Exclude a method from $this->template-> | use $this->response->body instead
We're working very hard on getting the docs complete, but that's a long process, given the fact that we only have one person available that works on that. Therefore we invite the community to fork the docs repository on github, and make t…
Comment by
WanWizard
August 2011
permalink
Exclude a method from $this->template-> | use $this->response->body instead
If you had looked at the code of Controller_Template, you would have seen how it deals with the defined template. And it also makes it very clear how to disable the auto rendering behavior: simply set $this->auto_render to false, in your before…
Comment by
WanWizard
August 2011
permalink
Exclude a method from $this->template-> | use $this->response->body instead
Normally, you would use a public base controller for unauthenticated output, and a different one for authenticated output. A login page is per definition unauthenticated, so it's controller would use the public base controller.
Comment by
WanWizard
August 2011
permalink
Assest throwing a 404
Dived into the code of the Asset class. Turns out that it doesn't use base_url directly, but through the asset config file. But it does use it. So it should work ok, unless you have changed the url setting in the asset config file.
Comment by
WanWizard
August 2011
permalink
Error 2048 - Declaration of before() should be compatible with that of Controller_Template::before()
Harro Verton wrote on Sunday 7th of August 2011: I've put a notice in the docs to check the parent definitions when overloading methods. I don't know. All I know it that the parent defines it with a parameter. So either it has to go th…
Comment by
WanWizard
August 2011
permalink
Error 2048 - Declaration of before() should be compatible with that of Controller_Template::before()
Be patient, I haven't commited the change yet. I'm busy with things that pay my bills at the moment. As soon as I commit the change, it will become live on http://fuelphp.com/dev-docs.
Comment by
WanWizard
August 2011
permalink
More Comments
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
About
Username
WanWizard
Joined
January 2011
Visits
2,368
Last Active
9:34AM
Roles
Administrator