I have a blank page as index. I don't know why.
I tryed to link the board to a fresh database and it works, so I guess is a database problem.
The admin.php page works, I tryedto disable all addons. Nothing, any suggestions to resolve it?
My blog addon is a multi blog addon.
When you create a new blog the system will create a new thread pref'ix for the "news" forum. (that's what I need)
Whenever a user create a news the system will create a thread in the "news" forum with the created thread_prefix.
I tried...
Yeah, my code works fine. I just want to know hot to assign the thread_prefix to a node.
You will also need to associate it to a forum node_id if you expect to use it within a give forum
Code:
$this->_getPrefixModel()->updatePrefixForumAssociationByPrefix($dw->get('prefix_id')...
If I remove
$writer->set('title', $minTitle);
$writer->set('node_ids', $node_ids);
It works but the prefix name is: thread_prefix_4. Where 4 is the prefix_id. Any idea how to set title and node where the prefix is usable?
I found the way to insert the...
There are a lot of ways to do it.
You can do a input text for each ingredient with a delete button for each one. When the user press it the form will delete the Pizza-Ingredient row where id = x.
Another way is (more resource) $db->fetchAll from Pizza-Ingredient where pizza-id = x, compare it...
Oh, my is a specific addon, I guess no one will need it :D
It still doesn't work. All works fine (query and other stuff) just redirect doesn't work.
Any suggestion?
New issue :)
I know the second argument will pass the redirectlink
public $redirectTarget = '';
but it seems doesn't work.
This is my code:
$redirectUrl = 'scanteam/'.$scanteam_alias.'.'.$scanteam_id.'/admin';
return $this->responseRedirect(...
I found the error in my form tag I got 2 class like:
<form class="xenForm" class="AutoValidator">
That's why it doesn't work just merge them:
<form class="xenForm AutoValidator">
It works now! Thanks for your help man :)