5
votes
6answers
160 views
Seriously speeding up PHP?
I've been writing PHP for years, and have used every framework under the sun, but one thing has always bugged me... and that's that the whole bloody thing has to be interpreted and …
0
votes
2answers
11 views
To populate select options at backend using Symfony?
the symfony form is,
'nation' =>new sfWidgetFormChoice(array('choices' => NationPeer::getAllNation())),
'township' =>new sfWidgetFormChoice(array('choices' => Townshi …
0
votes
2answers
16 views
Symfony cache is breaking my flash messages
Flash messages in Symfony projects give feedback to website users after an action is performed. They usually only show for one page load after the action is triggered.
Unfortuna …
0
votes
2answers
29 views
Which is the best book for learning Symfony?
Apress The Definitive Guide To Symfony
Symfony Book
Or Some Other Book.
1
vote
1answer
35 views
How to use Sessions in Symfony?
like in classic PHP we use the magic variables to start,create session, so how to do that in Symfony.
0
votes
2answers
38 views
Loader.php trying to load Doctrine classes, but we use Propel!
We are finding cases where we get the following 500 error:
File xyz.php does not exist or class "xyz" was not found in the file at () in SF_ROOT_DIR/lib/vendor/Zend/Loader.php lin …
0
votes
1answer
19 views
To show custom message in Symfony forms?
Want to show a custom message in form's error list, if the two fields did not match.
the from is as follows,
'old_password' =>'Old Password*',
'new_password' …
0
votes
2answers
37 views
Problem with Symfony routing with online project
I have a Symfony project on a Win XP / IIS 7 machine with Isapi rewrite installed. When I go to the frontend (my main) application, it seems that the routing simply doesn't work. I …
0
votes
2answers
18 views
Which validator should be used to implement login in Symfony?
Currently, my login form looks like this,
class LoginForm extends BaseFormPropel
{
public function setup()
{
$this->setWidgets(array(
'login_id' => new sfWidge …
0
votes
2answers
26 views
What’s the best way to include custom HTML in a Symfony form?
I'm working with a Symfony generated admin and need to include some custom HTML into a form. This HTML (a label, img tag, and link) should only appear when the action is 'edit'. Wh …
0
votes
2answers
30 views
Set default values in Select option in Symfony?
I am using the widget
sfWidgetFormChoice(array (
'choices' => CountryPeer::getAllCountry(),
))
and validator as
sfValidatorChoice(array (
'choices' => array_keys(Co …
-1
votes
1answer
23 views
To create check box in symfony using widgets and also validate it?
the code in symfony that i am using,
$this->setWidgets(array(
'mobile' =>new sfWidgetFormInput(),
'subscrib …
2
votes
2answers
54 views
How to unit-test an enterprise symfony project?
I´m working on a huge project at my work. We have about 200 database tables, accordingly a huge number of Models, Actions and so on.
How should I begin to write tests for this?
…
0
votes
1answer
30 views
Symfony - admin - FormFilter - is empty - i18n
Hi,
we are in admin generator in filters in field. What is the most clearest way to translate is empty label under form fields?
I've solve it by own setWidgets and setWidgets in B …
0
votes
2answers
23 views
edit profile from frontend - symfony
hello, I have a website in symfony framework
I have a table sfGuardUserProfile in schema.yml, and registeration form seems to work fine.
Now i want users can edit their profile
…
