[symfony-users] Unknown record property / related component

2011-03-02 Thread Ali
Hi , i am getting following error on editing Club record Unknown record property / related component Facilitators on Club i have pasted the schema , the idea is basically a club can have multiple memebers and facilitators , both members and facilitators are referencing same

[symfony-users] Re: Two Foreign keys refferencing same primary key

2011-02-12 Thread Ali
, Thank you MHs On Feb 12, 4:37 pm, Matt Gibson goth...@gothick.org.uk wrote: On 12 Feb 2011, at 07:58, Ali wrote: There is a Team model and Match model , and a match is played by two teams i want to store the date and venue which is another Model Venue ... but my cmatch model

[symfony-users] Two Foreign keys refferencing same primary key

2011-02-11 Thread Ali
HI Guys i am new to symfony and i have a simple data model. There is a Team model and Match model , and a match is played by two teams i want to store the date and venue which is another Model Venue my schema is as follows Team: actAs: { Timestampable: ~ } columns: title: { type:

[symfony-users] change database server in action

2010-05-28 Thread Mohammad Ali Safari
Hi I want to be able to change the database server base on some info from users, e.g. their IP address. Has anybody implemented such a thing, or has an idea on how to do that? I tried creating a filter class to be executed at the beginning of filter chain with some logic like this: $database =

[symfony-users] Re: File upload problem

2010-05-16 Thread Ali
problem solved , it was some server side problem , fixed by just setting the temp upload directory On May 15, 4:13 pm, Ali aalish...@gmail.com wrote: HI symfony users,                           i am facing a problem when i upload the files from the admin section

[symfony-users] File upload problem

2010-05-15 Thread Ali
HI symfony users, i am facing a problem when i upload the files from the admin section . there are two problems 1 : mp3 files are uploading successfully on my local system , but when i upload the file on shared hosting

[symfony-users] Download Image Link

2010-05-01 Thread Ali
Hi , i want to present link to download the images, how can we do this with symfony -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To

[symfony-users] Re: deployment

2010-05-01 Thread Ali
HI, try this http://westartednothing.com/blog/2009/04/installing-symfony-on-bluehost/ On May 1, 5:37 pm, mirfan m.irfa...@gmail.com wrote: I have deployed symfony project and access it telenor.w3whizz.com/web/index.php/kpi it show blank pages. One more thing i needed how i will

[symfony-users] Deploying a Symfony project on shared hosting

2010-03-22 Thread Ali
HI Symfonians, i am fresh in symfony development , and facing trouble in deploying symfony on Bluehost shared server. Can any one list the steps to deploy the project on the main domain , not on sub domain i want to install project on www.somedomain.com , and not on its sub

Re: [symfony-users] Web Server Configuration

2010-03-07 Thread Asif Ali M
Hi Deepak, Because the system on your LAN is accessing the live site http://www.jobeet.com/ Better access your application with its system name/ IP ( your private ip like 192.168.0.10) from your LAN and it will work, -- Thanks Asif Ali M http://www.linkedin.com/in/geeni --- On Mon, 3/8/10

[symfony-users] Re: Symfony Filter

2010-01-26 Thread Asif Ali M
is already logged in so no redirections will be there. On Mon, Jan 25, 2010 at 6:34 PM, Mohammad Asif Ali asifali.m...@gmail.comwrote: Any suggestions on my filter execution flow? On Jan 23, 4:53 pm, Asif Ali M l...@reloadtheweb.com wrote: Hello Symfonians, I am working on symfony

[symfony-users] Re: Symfony Filter

2010-01-26 Thread Asif Ali M
okay. Thanks for your comment On Jan 26, 4:56 pm, ken marfillas...@gmail.com wrote: Sometimes you will need to run the customfilterbefore the securityfilter. On Jan 26, 5:02 pm, Asif Ali M l...@reloadtheweb.com wrote: Thanks Dheeraj. You are right. the flow is what you explained. What

[symfony-users] Re: Symfony Filter

2010-01-25 Thread Mohammad Asif Ali
Any suggestions on my filter execution flow? On Jan 23, 4:53 pm, Asif Ali M l...@reloadtheweb.com wrote: Hello Symfonians, I am working on symfony 1.0 application. Its a kind of Software as Service model. When a user registers he will get his own site (frontend/backend). The users can

[symfony-users] Symfony Filter

2010-01-23 Thread Asif Ali M
Hello Symfonians, I am working on symfony 1.0 application. Its a kind of Software as Service model. When a user registers he will get his own site (frontend/backend). The users can signup for a 30 days trails. And we have a help document which is having backend page links. In the Backend

[symfony-users] Re: Best way to get 2 cache versions : anonymous / authenticated users

2010-01-19 Thread Ali
I think it's better to override generateCacheKey function in ViewCacheManager. To do this you need to declare 'sf_cache_namespace_callable' config value and set it to your function name, which will alter the key depending on the user session parameters (you can get the initial key by calling

[symfony-users] Installation on shared hosting

2010-01-12 Thread Ali
Hi Symfony users and Developers, i am new in php and symfony development so far symfony has done wel for me , but its really hard for me to get the thing done right on deployment side , its my 10th hour and i am unable to deploy the project on

[symfony-users] Re: How to get what is returned by an action in another app

2009-01-11 Thread Mohammad Ali Safari
Hi Apps are supposed to be independent in this sense and not be able to call an action from each other. I think the best way for you is to move commons logic to a class in your main lib folder and call the logic separately in each app. cheers --Mohammad On Sun, Jan 11, 2009 at 4:26 PM, Antoine

[symfony-users] Re: Dynamic Theme Creation

2008-11-09 Thread Mohammad Asif Ali
and change the them (by changing the decorator directory name). Not sure if 1.1 is different, but it shouldn't be too different. James On Nov 9, 2008, at 2:29 AM, Mohammad Asif Ali wrote: Hi, I would like to gather your expert ideas in implementing dynamic themes in my project

[symfony-users] Dynamic Theme Creation

2008-11-08 Thread Mohammad Asif Ali
Hi, I would like to gather your expert ideas in implementing dynamic themes in my project. Presently my application creates a new blog for every user. Now i want to give dynamic theme creation.I am managing the themes manually using the sfdimensions plugin. Each time when i want to add a new

[symfony-users] Re: get_partial (string , vars)?

2008-08-30 Thread Mohammad Ali Safari
, Mohammad Ali Safari [EMAIL PROTECTED] wrote: One solution is to use the code of sfPHPView::renderFile($_sfFile). It's actually surprising that this functionality is not added to sfPHPView . it's a quite useful feature. --Mohammad On Thu, Aug 28, 2008 at 5:37 PM, Mohammad Ali Safari

[symfony-users] get_partial (string , vars)?

2008-08-28 Thread Mohammad Ali Safari
Hi Is there a method in symfony similar to get_partial(($templateName, $vars) that instead of $templatename gets a PHP string and decorates it? Hope I am clear. Something like get_string_partial('? echo $var?', array('var'='test')) --Mohammad

[symfony-users] always keep a variable in URLs

2008-07-13 Thread Mohammad Ali Safari
Hi I have a weblog system in which the weblog name needs to be kept in every single URL all around the application. Ideally, I would like very URL look like http://server/weblogname/... Is there an easy way to do this? For example, should I rewrite link_to and similar functions? --Mohammad

[symfony-users] Re: always keep a variable in URLs

2008-07-13 Thread Mohammad Ali Safari
Hi Routing configuration is for understanding and parsing a given URL. My problem is when generating all these URLs in my links/forms/etc. how can I make sure the /weblog-name is appeared at the beginning of every URL? cheers --Mohammad On Sun, Jul 13, 2008 at 2:53 PM, Cece [EMAIL PROTECTED]

[symfony-users] Re: always keep a variable in URLs

2008-07-13 Thread Mohammad Ali Safari
Oh Ok. This is perhaps the best thing to do. many thanks. Tom: That's not possible with my current host provider. cheers, -Mohammad On Sun, Jul 13, 2008 at 3:12 PM, Cece [EMAIL PROTECTED] wrote: Routing configuration is for understanding and parsing a given URL. My problem is when

[symfony-users] Re: always keep a variable in URLs

2008-07-13 Thread Mohammad Ali Safari
OK I almost figured it out. There is a config variable sf_relative_url_root that is used when the app is located in somewhere other than the root folder. For my case I need to change sf_relative_url based on the weblog_name. I did this by creating a filter and changing the value there. Notice

[symfony-users] Re: creating two peer class for one table

2008-07-12 Thread Mohammad Ali Safari
. Gaëtan Mohammad Ali Safari escribió: I Have a table A for which the peer class APeer is normally created. Is there anyway to have another peer class, say A2Peer, based on this table? I try creating the file A2Peer.php with the following content: class A2Peer extends APeer

[symfony-users] template using variables defined in the action class

2008-06-13 Thread Mohammad Ali Safari
Hi I am defining a variable in my action class like this: class myActions extends sfActions { public $var ... I assume that I have access to variable $var in any of my templates, but it is not the case. The only thing I could do is to have $this-foo = $this-var in my corresponding action

[symfony-users] Re: template using variables defined in the action class

2008-06-13 Thread Mohammad Ali Safari
Thanks Eno. My exact question is can I define a variable in my action class OUT OF my action FUNCTION and still access it in my template? cheers, --mohammad On Fri, Jun 13, 2008 at 10:57 AM, Eno [EMAIL PROTECTED] wrote: On Jun 13, 11:13 am, Mohammad Ali Safari [EMAIL PROTECTED] wrote: I

[symfony-users] Re: Slightly offtopic - CC encryption / decryption

2008-06-13 Thread Mohammad Ali Safari
I assume you use the secure protocol (HTTPS) to do all these and store credit card info on server side. What's the problem then in regard to security? --Mohammad On Fri, Jun 13, 2008 at 12:58 PM, Nathanael D. Noblet [EMAIL PROTECTED] wrote: Richtermeister wrote: Hi all, your points are

[symfony-users] Re: Slightly offtopic - CC encryption / decryption

2008-06-12 Thread Mohammad Ali Safari
Hi, I use the methods in PHP mcrypt module. I have these two methods: // Decription Encryption public static function encrypt($string, $key){ $cipher_alg = MCRYPT_RIJNDAEL_128; $iv = mcrypt_create_iv(mcrypt_get_iv_size($cipher_alg, MCRYPT_MODE_ECB), MCRYPT_RAND);

[symfony-users] Re: Please help on exclude template

2008-06-08 Thread Mohammad Ali Safari
Alternatively you can call the setLayout function inside your actio. $this-setLayout(false) will ignore the layout $this-setLayout(newlayout) will use the layout file newlayout.php in your app template directory. --Mohammad On Sun, Jun 8, 2008 at 7:48 AM, Nathan Hawks [EMAIL PROTECTED] wrote:

[symfony-users] Re: indexing sfSimpleForum by sfLucene plugin

2008-06-04 Thread Mohammad Ali Safari
Hi Cedric sfSimpleForum is pretty similar (at least in the inerface and capabilities) to Motilee. I actually want to know what the problem is as I may face it for other plugins too. I narrowed down the problem and it seems the behaviors are not working for my model. I suppose that this line

[symfony-users] Re: indexing sfSimpleForum by sfLucene plugin

2008-06-04 Thread Mohammad Ali Safari
That's a very good idea; thanks. --Mohammad On Wed, Jun 4, 2008 at 9:14 AM, Cédric Sadai [EMAIL PROTECTED] wrote: Hi, You really should download the app, and go through the code. It's built on both of the plugins you are referring to. hth, Cedric On Jun 4, 4:15 pm, Mohammad Ali Safari

[symfony-users] Re: indexing sfSimpleForum by sfLucene plugin

2008-06-04 Thread Mohammad Ali Safari
In motilee, the line // Lucene initialization sfLucenePropelBehavior::getInitializer()-setupModel('sfSimpleForumPost'); is put in apps/frontend/config/config.php Is that the right place? --Mohammad On Wed, Jun 4, 2008 at 9:15 AM, Mohammad Ali Safari [EMAIL PROTECTED] wrote: That's a very

[symfony-users] Re: indexing sfSimpleForum by sfLucene plugin

2008-06-04 Thread Mohammad Ali Safari
I still don't get a solution to this problem. I trace it and it shows that *sfLucenePropelBehavior::getInitializer()-setupModel('sfSimpleForumPost');* is called. But the model class *sfSimpleForumPost* does not have any method called saveIndex; that means these methods are not registered for it.

[symfony-users] Re: indexing sfSimpleForum by sfLucene plugin

2008-06-04 Thread Mohammad Ali Safari
-0600, Mohammad Ali Safari wrote: I still don't get a solution to this problem. I trace it and it shows that sfLucenePropelBehavior::getInitializer()-setupModel('sfSimpleForumPost'); is called. But the model class sfSimpleForumPost does not have any method called saveIndex

[symfony-users] Re: New Symfony Open Source Application .. in few weeks.

2008-06-03 Thread Mohammad Asif Ali
Eno Thanks for your feedback. Actually i have not completly deployed the application Still workigng on it. will do that once it is completely live. Thanks again :) Asif On Jun 2, 7:43 pm, Eno [EMAIL PROTECTED] wrote: On May 31, 8:50 am, Mohammad Asif Ali [EMAIL PROTECTED] wrote: Please

[symfony-users] indexing sfSimpleForum by sfLucene plugin

2008-06-03 Thread Mohammad Ali Safari
Hi I was wondering if anybody has experiences with using sfLuceneplugin for searching on forums built by sfSimpleForumPlugin. I have installed them both and can search properly. The problem is it does not automatically index new messages. I have added this line:

[symfony-users] New Symfony Open Source Application .. in few weeks.

2008-05-31 Thread Mohammad Asif Ali
Hi All, I have developed a cartoon website for cartoon videos.in this application i am using the youtube api / php client library (from zend). For now all the categories are hard coded. I am planning to improve this and release as open source so that any one can use this and build a ready made

[symfony-users] Re: timeout issue

2008-05-15 Thread Mohammad Ali Safari
Hi Ali and Thomas I tried what you guys suggested and it worked perfectly. I had this problem for over 1 year and could never resolve it without your help; greatly appreciated. As you pointed out the issue was session.gc_maxlifetime and session.save_path that needed to be changed. I changed them

[symfony-users] timeout issue

2008-05-12 Thread Mohammad Ali Safari
I have seen several discussions over the forums and never saw a complete answer to it. My problem is that sessions expire within 30 minutes regardless of the timeout value in my settings.yml I check the cookies and it says the session cookie is expiring in a month (which is correct by my timeout

[symfony-users] buy in Symfony V1.0.13?

2008-05-05 Thread Mohammad Ali Safari
I am using Symfony V1.0.13 on windows (with WAMP) and whenever I use admin-generator (symfony propel-init-admin ..) it not only rewrites actions.class.php file in cache directory (which is normal) but also rewrites the action.class.php in module directory which basically removes all my own

[symfony-users] Re: buy in Symfony V1.0.13?

2008-05-05 Thread Mohammad Ali Safari
Thanks for the prompt reply. I have a symfony V1.0.11 on linux and when I run symfony propel-init-admin it never removes/rewrites my own actions.class.php file. --Mohammad On Mon, May 5, 2008 at 12:10 PM, Christian Hammers [EMAIL PROTECTED] wrote: On 2008-05-05 Mohammad Ali Safari wrote

[symfony-users] Re: http://www.symfony-project.org/ is down. again.

2008-05-01 Thread Mohammad Ali Safari
As far as I know yahoo bookmark (with 20M users) and the new version of deli.cio.us are developed based on symfony, though they have customized it. In regard to your concern, I don't agree; That's actually why people choose frameworks instead of CMS to be able to customize it to any level that

[symfony-users] Accesing sfActions method from sfAction class

2008-04-19 Thread Mohammad Ali Safari
I had a bunch of method in one of my modules and, as the number of actions increased, I decided to move some action into separate sfAction files. Now, the problem is I don't know how I can call the methods in my sfActions class. For example, I was calling $this-method() previously, but now

[symfony-users] Re: Cookie for one project

2008-04-16 Thread Mohammad Asif Ali
Eno, I fixed the problem with IE. IE will not create a Cookie of 60 min life. so i increased the time to 120 mins. Its working fine.. and the multiple themes also working great. Thanks Asif On Apr 16, 1:54 pm, Mohammad Asif Ali [EMAIL PROTECTED] wrote: Yes i cleared the cookies

[symfony-users] Re: Cookie for one project

2008-04-15 Thread Mohammad Asif Ali
for this behavior? and how to fix this? Thanks in advance Asif Eno wrote: On Apr 14, 4:14�am, Muhammad Asif Ali [EMAIL PROTECTED] wrote: In one of my symfony projects i am not able to set cookies. �and session id is automatically appending �to url. �whenever i access the project i

[symfony-users] Cookie for one project

2008-04-14 Thread Muhammad Asif Ali
but the cookies are no longer working Please tell me how to disable the session id in URL . (set_trans_id is disabled in php.ini) Thanks in advance -- Muhammad Asif Ali www.reloadtheweb.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] disallow addJavascripts

2008-04-08 Thread Mohammad Ali Safari
Hi I am heavily using prototype framework in my symfony calling form_remote_tag, etc. frequently. As the size of prototype.js is big I have decided to compress it (gz) and also merge it with some other javascript files to make them one single file. The problem is that those helper commands such

[symfony-users] more than one tinyMCE editor in admin_generator

2008-04-04 Thread Mohammad Ali Safari
Hi in my generator.yml I use richtext=true option for two fields: fields: field1: {params: rich=true tinymce_options=width:600,height:400} field2: {params: rich=true tinymce_options=width:600,height:400} But tinyMCE editor is shown only for field1. Is there an extra

[symfony-users] Re: more than one tinyMCE editor in admin_generator

2008-04-04 Thread Mohammad Ali Safari
echo sfConfig::get('app_tinymce_options');?' } There is a very helpfull thread on the forum that you could read. It helped me fix my problems : http://www.symfony-project.org/forum/index.php/m/48698/#msg_48698 Regards Guy Mohammad Ali Safari wrote: Hi in my generator.yml I use richtext

[symfony-users] Re: Retain internal value after forward()

2008-03-31 Thread Mohammad Ali Safari
Hi Kasper You probably want to use flash instead: http://www.symfony-project.org/book/1_0/06-Inside-the-Controller-Layer#Flash%20Attributes -Mohammad On Mon, Mar 31, 2008 at 2:04 PM, Kasper G [EMAIL PROTECTED] wrote: Thank you for your response, Olivier. Storing the value in the session

[symfony-users] Re: Strange credential problem

2008-03-10 Thread Mohammad Ali Safari
True. I use security.yml for this and nothing changes. cheers, --Mohammad On Mon, Mar 10, 2008 at 3:36 AM, esukf [EMAIL PROTECTED] wrote: Think the restrictions should be in security.yml rather than settings.yml. On Mar 8, 1:20 pm, Mohammad Ali Safari [EMAIL PROTECTED] wrote: Yes I did

[symfony-users] Re: Strange credential problem

2008-03-08 Thread Mohammad Ali Safari
Yes I did. cheers, -Mohammad On Sat, Mar 8, 2008 at 12:45 AM, Hugo HAMON [EMAIL PROTECTED] wrote: Did you clear your cache ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to

[symfony-users] Re: how to discover types in propel model?

2008-03-05 Thread Mohammad Ali Safari
believe enum is not a universal type, so within propel you'd have to use char or similar for the same purpose. Have a great day, Daniel On Mar 4, 5:34 pm, Mohammad Ali Safari [EMAIL PROTECTED] wrote: Hi Georg and many thanks for your reply. That was almost what I wanted. Propel has some

[symfony-users] Re: how to discover types in propel model?

2008-03-04 Thread Mohammad Ali Safari
/ foreign key etc.) from the table map. To get the table map for a certain model class use the peer method BaseYourModelClassPeer::getTableMap() and then have a look at the TableMap class to see what can be done with it. Best regards, Georg Mohammad Ali Safari schrieb: Hi I am using propel-build

[symfony-users] how to discover types in propel model?

2008-03-02 Thread Mohammad Ali Safari
Hi I am using propel-build-schema to create a schema from my existing database and then create my model. However, it seems the model does not give me much information about column in my tables such as their types. Is there any way to force propel to include such information (specially the column

[symfony-users] I18N problem

2007-11-02 Thread Mohammad Asif Ali
Hi, In my recent project i am using the I18N feature. This is the first time i am using the Symfony I18n feature. I enabled the default culture in the i18n.yml file. and tried with the example program given in symfony doc. I have also created the translated xliff file(messages.fr.xml) in the

[symfony-users] Re: sfSimpleCMS is not parsing the rich text

2007-10-31 Thread Mohammad Asif Ali
text slot and make it markdown only. François 2007/10/31, Mohammad Asif Ali [EMAIL PROTECTED]: Thanks for your post. I fixed the problem in sfSimpleCMS plugin using the escaping_strategy : bc but this causes XSS in sfSimpleForum plugin. The fix for this is escaping_strategy : both

[symfony-users] Re: sfSimpleCMS is not parsing the rich text

2007-10-30 Thread Mohammad Asif Ali
by one by way of the $sf_data container. François 2007/10/30, Steve Daniels [EMAIL PROTECTED]: I might be completely off base here, but normally when I see bc mentioned it refers to backwards compatibility HTH Steve On 30/10/2007, Mohammad Asif Ali [EMAIL PROTECTED] wrote

[symfony-users] sfSimpleCMS is not parsing the rich text

2007-10-29 Thread Mohammad Asif Ali
Hi, I have installed the sfSimpleCMS plugin and also enabled the richtext editing using tinymce. The problem is when i add some rich text and viewing the page its simply showing the html tags and its not parsing the html. can anyone tell me what i am missing? Thanks in advance --Asif--

[symfony-users] sfSimpleForumPlugin Build error

2007-10-10 Thread Muhammad Asif Ali
\config\schema.yml on line 2 I don't know what i am missing. I even tried to locate the file schemaConfig.php which is included in the schema.yml of the plugin but failed. Thanks in Advance :o) Asif -- Regards Muhammad Asif Ali www.PhpTuB.com

[symfony-users] Application Error when i add long text

2007-06-29 Thread Muhammad Asif Ali
. i am simply using get/set methods of propel to store and retrieve. Can anyone tell me what i am missing. Thanks in advance -- Regards Muhammad Asif Ali --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[symfony-users] New Site on Symfony

2007-06-27 Thread Muhammad Asif Ali
Asif Ali --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more

[symfony-users] Re: New Site on Symfony

2007-06-27 Thread Mohammad Asif Ali
my 2 cents. On 6/27/07, Muhammad Asif Ali [EMAIL PROTECTED] wrote: Hi All, we have successfully launched our new Symfony Powered website http://www.indiademocracy.org User Bloghttp://asif.indiademocracy.org Please let me know your views and any flaws(major / minor

[symfony-users] JS injection in www.askeet.com

2007-06-13 Thread Muhammad Asif Ali
application -- Regards Muhammad Asif Ali --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-users@googlegroups.com To unsubscribe from this group

[symfony-users] Re: JS injection in www.askeet.com

2007-06-13 Thread Mohammad Asif Ali
. This is just because askeet was done a long time ago and output escaping was not enabled. Fabien Sid Bachtiar wrote: What was the cause? will there be a patch for Symfony version 1.0? On 6/14/07, Fabien POTENCIER [EMAIL PROTECTED] wrote: fixed Thanks Muhammad Asif Ali wrote: Hi

[symfony-users] Stored procedures with Propel

2007-04-25 Thread Muhammad Asif Ali
Hi all, Is there any way to use the stored procedure in the symfony project using the Propel as the ORM Thank you :o) Regards Muhammad Asif Ali --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[symfony-users] Project inside a Project

2007-04-18 Thread Muhammad Asif Ali
the askeet front controller should work according to the askeet model in askeet project and should not take the mainproject lib model. please any one suggest me how to achieve the needed. Thank You :o) Regards Muhammad Asif Ali

[symfony-users] Delay in Page loading

2007-04-17 Thread Muhammad Asif Ali
second project takes some more time in displaying page rather than the first project. both are on the same server in the production level. can anyone tell me where is the problem is? Thanks in advance Regards Mohammad Asif Ali

[symfony-users] mail problem

2007-04-10 Thread Muhammad Asif Ali
. and the mail function in that is working perfectly.i dont know whats the problem with my symfony application can u tell me what i am missing.. Thank you :o) Regards Muhammad Asif ali --~--~-~--~~~---~--~~ You received this message because you

[symfony-users] Re: mail problem

2007-04-10 Thread Muhammad Asif Ali
Hi Razvan, X-Apparently-To: [EMAIL PROTECTED] via 202.43.219.167; Tue, 10 Apr 2007 12:00:28 +0530 X-YahooFilteredBulk: 125.16.15.178 X-Originating-IP: [125.16.15.178] Return-Path: [EMAIL PROTECTED]

[symfony-users] Re: auto logout issue

2007-04-08 Thread Mohammad Ali Safari
a cookie, if you change the value at settings.yml you should erase the symfony cookie as well in order to get the new setting. Good luck, r. El 07-04-2007, a las 3:05, Mohammad Ali Safari escribió: I have faced this rather serious issue and have not been able to resolve it ever since

[symfony-users] auto logout issue

2007-04-07 Thread Mohammad Ali Safari
I have faced this rather serious issue and have not been able to resolve it ever since. The problem is that no matter what values are in setting.yml , users are automatically logged out after 30min. I've already posted this issue to forums at

[symfony-users] Re: question regarding using criteria object

2007-04-05 Thread Muhammad Asif Ali
); $criterion-addAnd($c-getNewCriterion(FooPeer::CREATED_AT , date('Y-m-d', $to_date), Criteria::LESS_EQUAL )); $c-add($criterion); $shows = FooPeer::doSelect($c);This is the code from Snippetsso plz check the snippet for more code.Thank youRegardsMohammad Asif ali

[symfony-users] Routing question

2007-04-03 Thread Muhammad Asif Ali
Hi, Can i customiz the askeet url for the user profile now the url is like this http://www.askeet.com/user/asif now i want to rewrite the url to something like this http://asif.askeet.com/ Thanks in Advance Regards Mohammad Asif ali

[symfony-users] Re: Routing question

2007-04-03 Thread Muhammad Asif Ali
Hi. Quenten Thanx for you information do u have any script for creating the sub domain automatically at the time of user registration. i had a script which support only cpanel type of server. i want a script which can be used on any server.

[symfony-users] Re: Routing question

2007-04-03 Thread Muhammad Asif Ali
Hi..All thanx a lot for all ur effors let me try the things u specified. thaks again :o) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to

[symfony-users] Re: New plugin: sfSimpleBlogPlugin

2007-04-03 Thread Muhammad Asif Ali
Hi *Francois* * * * *Great work ... actually i was planning to do somthing like this... u saved my time Thanx :o) -- Regards Muhammad Asif Ali --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] Re: New plugin: sfSimpleBlogPlugin

2007-04-03 Thread Muhammad Asif Ali
this? Thank You :o) -- Regards Muhammad Asif Ali --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-users@googlegroups.com To unsubscribe from this group

[symfony-users] prblem with schema.xml

2007-03-29 Thread Muhammad Asif Ali
the schema.xml. if i try with schema.yml i dont get any error can anyone phased the similar problem. can anyone tell me where the problem is? thx... :o) Regards Muhammad Asif Ali --~--~-~--~~~---~--~~ You received this message because you

[symfony-users] New Site

2007-03-29 Thread Muhammad Asif Ali
, Mohammad Asif Ali [EMAIL PROTECTED] wrote: Hi Rafael nice to see ur new site. I am also working on th askeet to customize according to our requirment. the thing is i am not able to setup the askeet application with symfony 1.0.1 version. I followed the doc in askeet

[symfony-users] Askeet with symfony 1.0.1

2007-03-28 Thread Muhammad Asif Ali
Hi can any one tell me how to install the askeet with symfony 1.0.1 . i tried all the ways but i am not able to succeed . svn co http://svn.askeet.com/trunk this is worked for me php symfony propel-insert-sql This gives me error Could not open input file: symfony can

[symfony-users] Re: New Site

2007-03-28 Thread Mohammad Asif Ali
out but i can't run the php symfony propel-insert-sql. Its throwing error. Could not open input file: symfony i am running xampp on linux enterprise edition 4 and the php version is 5.2.0 can u tell me what i am missing. thanks in advance :o) Regards Muhammad Asif Ali

[symfony-users] Prototype Window Problem

2007-03-21 Thread Muhammad Asif Ali
Hi.. the answer is the following code. top.Windows.getWindow('win_id').close() Thx.. do get the solution for your problem? i have the same question; thanks 2007/3/12, Muhammad Asif Ali [EMAIL PROTECTED]: Hi I am using the protorype Window plugin . Everything