[symfony-users] Symfony Upgrade Day?

2009-11-30 Thread Szabolcs Heilig
Hello,

I have a (maybe not bad) idea:

What about to organize a worldwide Symfony Upgrade Day. I think it will be a
weekend day.
At this day people can organize small events in their town to help each
other in upgrading
their projects. It will be good when core developers can join this event
online to support people.

It will be a great day to plugin developers also.

So?

Szabolcs Heilig

--

You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




Re: [symfony-users] Change redirecting method for "credentials required" page (or login required)

2009-11-23 Thread Szabolcs Heilig
Hi,

Do you have any user management plugin installed? Or you wrote one?
Especially, the sfGuard plugins does what you want:

 - when not logged in but credentials required, it forwards you to log in
 - when logged in but don't have enough credentials it shows you an
   appropriate "credentials required" page.

So, if you don't use this plugin, you may download it to analyze its code.

Szabolcs Heilig

2009/11/23 Vincent UNG 

> Hi...
> Actually, when I try to execute an action that I don't have
> credential, I'm redirect to the default page of symfony.
> Can I change this page, or redirect automatically to my login page ?
>

--

You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=.




[symfony-users] Re: php 5.3

2009-09-23 Thread Szabolcs Heilig
Hi,

Can you be more specific? What database backend do you use? What's in
your databases.yml?

Szabolcs Heilig

Hi guys,
> Today on my archlinux, i upgraded php to the latest php 5.3, from php
> 5.2.10. I went to my application and i get this error
>
> PDO Connection Error: SQLSTATE[HY000] [2002] Connection refused
>

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Symfony aspires to be pure OOP, so why the hell are helpers implemented as functions instead of as methods of classes?

2009-09-08 Thread Szabolcs Heilig
Hi,

2009/9/8 Stefan Koopmanschap 

> This also
> saves you from calling the use_helper() function, because classes are
> autoloaded.
>


> It can be argued that the seperate methods are easier to read within
> views (since views are supposed to be very light on PHP) however I
> don't think that adding a namespace (classname) before helper
> functions will make a view harder to read.
>

After reading that i'm imagining a helper system where symfony form helpers,

link helpers, etc will be in helper classes. These classes can be inherited
by AJAX, Lightbox link helper classes and  use and extend codebase of the
basic
link helpers, etc.
In this case you only have to change the class before the link_to() helper
method to open your link in a lightbox instead.

I think it will be a big win against the loss of longer helper calls in the
template code.

Szabolcs Heilig

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: How to create an action to dump my DB with mysqldump

2009-08-31 Thread Szabolcs Heilig
Hi,

If you execute mysqldump on your webserver with system() command, you will
have
the dump already on your webserver. Or you want to download the dump to the
client?

I want to create an action in my backend application to execute the
> mysqldump command. Like system(mysqldump ).
> If it is possible, how can i download the generated file to the computer
> which will execute that action.
>

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: how to change database login information

2009-08-18 Thread Szabolcs Heilig
Hi Tim,

Did you clear the cache? (symfony cc)

Szabolcs Heilig


> Unfortunately, when I try to access the website through my browser, my
> Apache error log indicates that Symfony is still ignoring my
> configuration changes and using the old (incorrect) db authentication
> information.
>

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: symfony cache lifetime

2009-08-17 Thread Szabolcs Heilig
Hi,

As of Symfony 1.1 you can pass an sfCache object to the constructor.
I think, sfFileCache doesn't do anything with expiration, but sfMemcache
does.


> how can I set the function cache entries' lifetime?
>

Heilig Szabolcs

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Unable to load fixtures twice

2009-08-04 Thread Szabolcs Heilig
I think this bug affects you:
http://trac.symfony-project.org/ticket/5861

I reported this a half year ago with patches. Try apply this patch against
your copy of
sfPropelData class.

2009/8/4 Adrien Mogenet 

>
> Propel 1.3
>
> > What ORM are you using? Doctrine or Propel?
>

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Unable to load fixtures twice

2009-08-04 Thread Szabolcs Heilig
Hello,

What ORM are you using? Doctrine or Propel?

I'm writing functional tests, and in bootstrap/functional.php I'm
> loading my own fixtures files.
> It works fine the first time I launch my test (DB is empty at the
> beginning).
>

Szabolcs HEILIG

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: link_to_remote

2009-07-23 Thread Szabolcs Heilig
Hi,
I think your problem is based on the behavior of Symfony
in "AJAX mode". When you load your action through
link_to_remote() it doesn't decorate that with your layout.
Without that it is possible to your ui-magic never initialized.

2009/7/23 DEEPAK BHATIA 

> I have a web page which is referenced by link_to_remote action.
>
> This web page/template has yahoo user interface javascript api's.
>
> When I call this page as normal form submission, I get the
> functionality of yahoo user interface javascript api but not when it
> is called as link_to_remote.
>

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: [Off topic] PHP 4

2009-07-13 Thread Szabolcs Heilig
2009/7/13 Sid Ferreira 

> Im wondering: What makes huge servers still use PHP4?
>

Maybe big clients?

--~--~-~--~~~---~--~~
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 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---