Questions about Symfony version 1.4, a PHP framework by Sensio Labs.
0
votes
0answers
11 views
Facebook is not getting any response when used with symfony
I am trying to debug my website from Facebook and fount out that it is not crawlable. I tried many methods, changing htaccess file on Virtual server, changing apache configuration etc. Later I ...
0
votes
1answer
5 views
Attach profile fields to created users in Symfony and sfDoctrineGuard plugin
I'm trying to attach a idempresa field to the sfDoctrineGuardPlugin but can't get it to work. This is the schema.yml (just relevant tables) for those tables:
SdrivingEmpresa:
connection: doctrine
...
0
votes
0answers
7 views
InternalServerError after run the task “doctrine:generate-admin”
I've run the task php symfony doctrine:generate-admin admin SdrivingEmpresa to generate a admin module for my application and when I try to access the generate module trough the URL ...
0
votes
0answers
10 views
build schema for specific tables in database using doctrine?
In my symfony project i need to generate schema from specific tables not all database tables ,so please tell the way to do if it is possible?
0
votes
0answers
14 views
Symfony 1.4: creating link to another application work very slow
Implementation, that I use - http://symfony.com/blog/cross-application-links
// apps/backend/config/backendConfiguration.class.php
class backendConfiguration extends sfApplicationConfiguration
{
...
1
vote
1answer
27 views
Assign groups based on logged user credentials
I'm developing a application using sfDoctrineGuardPlugin and Symfony 1.4.20 then I've three users and three users groups and some permissions as follow:
user_name user_group permissions
...
0
votes
0answers
9 views
Child table row deleted on save foreign table row in symfony 1.4
Here is my schema
BackOrderCart:
actAs: [Timestampable, DmSortable]
columns:
customer_id: { type: integer, notnull: true }
shipping_info_id: { type: integer, notnull: ...
0
votes
0answers
14 views
Find by Field name not working for two filed but Working separately in symfony 1.4
I am having a strange problem
1. $userCartProduct = BackOrderCartProductTable::getInstance()->findOneBy('product_idAndback_order_id', array($product_id,$userCart->getId()));
2. $userCartProduct ...
1
vote
0answers
19 views
Symfony 1.4 flash message not showing in prod env, but does in dev
I did find another question with a similar title to my question but there was no solution.
Basically, a flash message I'm setting (and persist is true) is not showing after I re-direct a user to a ...
0
votes
0answers
42 views
Propel unsets primary key when saved twice
Consider we have the following model class Model generated by Propel. Furthermore we use the sfPropelORMPlugin to generate forms and filters.
We create a Model instance using ModelForm as follows.
...
0
votes
1answer
30 views
Error while loading a webpage in ipad/iphone [closed]
I have a hosting product website built in PHP Symfony framework. The entire website is loading fine in all of the web based browsers. However, when the same website is loaded in Ipad/Iphone, it ...
0
votes
0answers
25 views
How to write Nested query using symfony propel
I am new to symfony(1.4.6) framwork and propel to .Bellow there are three queries 1,2,3 Querie 3 uses result of query 1,2.
The issues is the result of query 2 returns around 30k values.so it means ...
0
votes
0answers
48 views
Reduce URL to be shorter, and then return it to its original state
now I have some interesting problem which I can't resolve. The problem is following:
I have some url parameters like this:
...
0
votes
1answer
41 views
how to solve the conflict of “column not found” on symfony 1.4 using doctrine?
Sorry for this very specific question, Ive got this problem couple of times, and my solution (not the best was rename tables and do more stuffs), obviously its not a real solution, this time i got ...
0
votes
0answers
22 views
sfWidgetFormDoctrineJQueryAutocompleter issue
I use this widget in my filter like this :
$this->widgetSchema['domain_name'] = new sfWidgetFormDoctrineChoice(
array(
'model' => 'Domain',
...