How can I generate link to another module in Symfony admin generator Yaml? I am trying to link from sfGuardUser module (user list) to profile/viewProfilesDetails but it always points to sfGuardUser/viewProfilesDetails My generator.yml : list: title: Użytkownicy displ[...]
Im looking for answers detailing theoretical approaches, so don't worry about any technical specifics. I am researching concepts to build a simple CMS and one thing I cannot decide is whether to use pure PHP with various libraries, or to build it on top of an MVC framework like Ze[...]
I have two issues, need some help with. I have a table which is referenced by a foreign key to a second table: member_child: _attributes: { phpName: MemberChild } id: { type: INTEGER, size: '11', primaryKey: true, autoIncrement: true, required: true } member_id: { typ[...]
I created a form to allow people to register, it worked fine but weeks passed and it is not working anymore. I have my module Inscription with index function : public function executeIndex(sfWebRequest $request) { $this->form = new InscriptionForm(); } In indexSuccess.ph[...]
I have been searching for days for my issue... Context : I use Symfony, i have customers, and each customer has its own database. I have a master database with all logins of all my customers, which after the login process, route the user to his own data... The project use MongoDB[...]
I have had to de- and reinstall a newer version of PHPUnit following these directions. Now when I'm launching this line sudo pear install --alldeps phpunit/PHPUnit I see an error message, that looks like this. Unknown remote channel: pear.symfony.com phpunit/PHPUnit requires pa[...]
I have setup 3 tables in symfony: A flipbook table, A Skills table, and a relations table, to connect each skill id with each flipbook id. WHen I built the model, symfony constructed everything correctly, and by default gave a drop-down menu for the skills, which had all skills [...]
I have an Entity "BlogPosts" with yml mapping: type: entity table: blog_posts id: id: type: integer generator: { strategy: AUTO } fields: body: type: text created_at: type: datetime manyToMany: replies: targetEntity: BlogPosts inversedBy: replyTo [...]
I have this sql: SELECT link.ID, link.URL, link.ANCHOR, link.HOME, link.CREATED_AT FROM `link`, `linkcategory` WHERE link.ID=linkcategory.LINK_ID GROUP BY linkcategory.LINK_ID HAVING count(linkcategory.category_id) =(select count(*) from categoria) And I'm trying to generate [...]
Im developing a project management tool in symfony, right now im on creating a module to recording the logs i.e, to capture every event like New project create, task create, task status changes, deletion of projects and task, etc. I have a log table where i have planned to insert n[...]