Re: [symfony-users] Jobeet Day 1, problem with http://www.jobeet.com.localhost/frontend_dev.php/

2011-05-24 Thread Justen Doherty
try the following command line tasks: php symfony cc (clears the cache) php symfony project:permissions (sets the correct permissions on your project folders) theres also some APC cache errors in there, so might be worth disabling APC.. 2011/5/23 Piotr Szczepański szczep...@gmail.com I try

Re: [symfony-users] Website written on RoR Passed to Symphony??

2011-04-11 Thread Justen Doherty
-- *De :* symfony-users@googlegroups.com [mailto: symfony-users@googlegroups.com] *De la part de* Justen Doherty *Envoyé :* samedi 9 avril 2011 23:56 *À :* symfony-users@googlegroups.com *Objet :* Re: [symfony-users] Website written on RoR Passed to Symphony?? its not impossible, but why

Re: [symfony-users] Website written on RoR Passed to Symphony??

2011-04-09 Thread Justen Doherty
its not impossible, but why would you want to make life difficult for yourself? On Sat, Apr 9, 2011 at 7:02 PM, serena79 magali.boiss...@gmail.com wrote: hello to the community! Do you know if it s possible to turn a ror website into a symphony one? Thanks for your answers because i m

Re: [symfony-users] Error 403 Forbidden

2011-04-09 Thread Justen Doherty
and also run: php symfony project:permissions to set correct permissions on the filesystem On Fri, Apr 8, 2011 at 5:37 PM, Haris Fauzi haris.fa...@gmail.com wrote: Hi Alex, If you want to place your files under your HOME accessible to Apache, you have to give rx permission from / all the way

Re: [symfony-users] Symfony always redirects to https

2011-03-08 Thread Justen Doherty
what happens you try a non-symfony page and call http:// ... ? On Tue, Mar 8, 2011 at 5:20 PM, oscar balladares liebegr...@gmail.comwrote: I totally agree with Gareth. When configuring apache to work with SSL; it will automatically redirects any request - under the SSL domain e.g jobeet.com

Re: [symfony-users] Re: ERP development ( SF 1.4 or 2.0 ? )

2011-03-06 Thread Justen Doherty
I would always lean towards having a solid, well used release of software - the problem with relatively beta versions is that when you hit a brickwall the chance of finding a solution will be a lot harder (and you might sometimes have to get your hands dirty finding a solution) rather than a

Re: [symfony-users] symfony's design patterns

2011-02-23 Thread Justen Doherty
http://tinyurl.com/4da43s6 On Wed, Feb 23, 2011 at 3:08 PM, manuelle medelg...@estudiantes.uci.cuwrote: hello community, I am developing my thesis in symfony. I need to know some things about the design patterns related to symfony, symfony used a few design patterns, but i want to know how

Re: [symfony-users] Updating existing project (Newbie to symfony)

2011-02-12 Thread Justen Doherty
symfony has two modes of operation, dev and prod - you can access the dev mode by appending _dev.php to the application front controller e.g. frontend(_dev.php) if this is your dev environment you can also turn on display_errors and log errors in your php.ini are you using the sandbox or the

Re: [symfony-users] Re: Simple form seems never valid, no error messages?

2011-02-12 Thread Justen Doherty
i havent used symfony 2.0 - but when i have problems with forms, i find echo'ing $form in the template reveals validation errors.. On Sat, Feb 12, 2011 at 3:40 PM, stfalcon stepan.tanasiyc...@gmail.comwrote: I have the same problem. $form-isValid() always return true

Re: [symfony-users] Problem with tasks, context and session storage

2011-02-09 Thread Justen Doherty
i had a bit of fun when trying to get partial/url helpers working in my task, i had to put the context logic at the top of my execute method like this: protected function execute($arguments = array(), $options = array()) { // initialize the database connection $this-configuration =

Re: [symfony-users] Want an id column but not auto incremented

2011-02-08 Thread Justen Doherty
Hi Gareth, have you tried creating the table directly in the database then create schema from db? On Tue, Feb 8, 2011 at 11:27 AM, Gareth McCumskey gmccums...@gmail.comwrote: Hi all, I am trying to create a few tables with a column called id. I do not, however, want symfony to do its

Re: [symfony-users] Skip autoloading in symfony

2011-02-07 Thread Justen Doherty
load them into the action as you need them :) On Mon, Feb 7, 2011 at 8:20 AM, Imran im...@allies.co.in wrote: Hi visitors, I have some class files in /app/my_app/lib/. Symfony load the files (*.php) automatically. Is there any way to skip the particular class files from autoloading?

Re: [symfony-users] Fatal error: Call to undefined method DatabaseMap::addTableBuilder()

2011-01-27 Thread Justen Doherty
this looks like a method in sfGuard, is the plugin installed? if it is, try rolling back/forward to a version that works with symfony 1.1.0 On Thu, Jan 27, 2011 at 4:45 AM, Kiran kirankada...@gmail.com wrote: Hello Friends, I have one existing project of symfony. I am using symfony 1.1.0

Re: [symfony-users] web server configuration

2011-01-27 Thread Justen Doherty
posting your httpd.conf would be a great help.. On Wed, Jan 26, 2011 at 7:17 AM, Namata Winnie wiynn...@gmail.com wrote: am new to symfony, currently i have a problem with apache web configuration especially with modifying the httpd.conf file, after modifying everything, i try to run

Re: [symfony-users] Re: web server configuration

2011-01-27 Thread Justen Doherty
Include c:/wamp/alias/* # Be sure to only have this line once in your configuration NameVirtualHost 127.0.0.1:8080 # This is the configuration for your project Listen 127.0.0.1:8080 VirtualHost 127.0.0.1:8080 # !! this looks a bit dodgy !! DocumentRoot /c:\wamp\www\jobeet\web DocumentRoot

Re: [symfony-users] problem with $sf_user-getCredentials()

2011-01-26 Thread Justen Doherty
if your application is in frontend_dev.php you will need to add this to your .htaccess file (as apache will return index.php by default) VirtualHost *:80 ServerName myserver.blah.com DocumentRoot /home/mysite/ DirectoryIndex frontend.php ... /VirtualHost On Wed, Jan 26, 2011 at 6:42 AM,

Re: [symfony-users] Re: Introducing Vespolina - the new sf2 based e-commerce platform

2011-01-26 Thread Justen Doherty
I've made a start on a personal ecommerce project in symfony 1.4 - at the moment its just got categories/subcategories with a photo library in the backend.. but i've been coding this in my spare time at home, if anyone is interested i can make the code available via github :) i have also had a

Re: [symfony-users] Re: sfGuard and multisite authentication

2011-01-25 Thread Justen Doherty
Hi Introvert, could you not create a user admin user group that is exempt from using the site_id in your SQL queries.. On Tue, Jan 25, 2011 at 2:30 PM, Gabriel Petchesi pghora...@gmail.comwrote: This is beyond what you can do with sfGuardUser, search on google for SSO (Single Sign On)

Re: [symfony-users] Re: lib/model/doctrine/subfolder

2011-01-24 Thread Justen Doherty
you could try creating a new application and tweak the schema.yml in your new app.. On Mon, Jan 24, 2011 at 9:12 AM, Cornelius Parkin cornelius.par...@gmail.com wrote: Hi Anyone have any possible solutions regarding this? Have not had a response yet. Is it also possible to build a seperate

Re: [symfony-users] Jobeet Day 12: Call to undefined method BaseJobeetCategory::getJobeetCategoryAffiliates

2011-01-21 Thread Justen Doherty
looks like the getJobeetCategoryAffiliates method in BaseJobeetCategory doesnt exist.. try running php symfony doctrine:build --all if its defined in your schema.yml good luck! On Thu, Jan 20, 2011 at 4:42 PM, hm423 hannahmalone...@gmail.com wrote: I am so grateful for Symfony! I'm on Day 12

Re: [symfony-users] I recently upgraded to a new install.

2011-01-20 Thread Justen Doherty
I agree with Gareth, to quote Big Lebowski You're entering a world of pain if you try to debug a later framework version! On Thu, Jan 20, 2011 at 9:23 AM, Gareth McCumskey gmccums...@gmail.comwrote: You could also download the symfony 1.2 library and install that into the project that needs it

Re: [symfony-users] Re: Get all logged in users

2011-01-19 Thread Justen Doherty
for the last two hours ... that logged in time would still stay the same On Tue, Jan 18, 2011 at 4:49 PM, Justen Doherty phpc...@gmail.com wrote: i would have a 'last_logged_in' date against a user and every time a user logs in, this timestamp is updated - once you have this time in the database

Re: [symfony-users] Re: Get all logged in users

2011-01-19 Thread Justen Doherty
List will be updated correctly On Wed, Jan 19, 2011 at 1:14 PM, Justen Doherty phpc...@gmail.com wrote: true - but the requirement is for logged in users only, if you had a reason for a user to stay on the same page for more than say, five minutes, then you would need an ajax

Re: [symfony-users] Re: Get all logged in users

2011-01-19 Thread Justen Doherty
indeed there are many ways to skin a cat! On Wed, Jan 19, 2011 at 1:34 PM, Gareth McCumskey gmccums...@gmail.comwrote: .. Which is essentially what I suggested without the use of node.js On Wed, Jan 19, 2011 at 3:12 PM, Justen Doherty phpc...@gmail.com wrote: ah yes, it helps when you

Re: [symfony-users] Re: Get all logged in users

2011-01-18 Thread Justen Doherty
i would have a 'last_logged_in' date against a user and every time a user logs in, this timestamp is updated - once you have this time in the database, then define an offset (say 2 mins or 180 seconds) and query against the database for a count/users that are logged in.. On Tue, Jan 18, 2011 at

Re: [symfony-users] Re-write rule

2011-01-18 Thread Justen Doherty
why not create a subdomain and serve the non-symfony application off a different directory? On Tue, Jan 18, 2011 at 7:17 PM, Cornelius Parkin cornelius.par...@gmail.com wrote: Thanks, I will give it a try and let you know :-) CAP On Tue, Jan 18, 2011 at 9:09 PM, Gabriel Petchesi

Re: [symfony-users] Symfony form

2011-01-12 Thread Justen Doherty
Hi Sinu, You can have a look at the form rendering section on: http://www.symfony-project.org/forms/1_4/en/03-Forms-for-web-Designers this should give you enough info on how to break out of the default rendering / display the form elements as you need them.. On Wed, Jan 12, 2011 at 11:22 AM,

Re: [symfony-users] Issue with schema.yml

2011-01-12 Thread Justen Doherty
Hi Sinu, you need to enable native enum in your databases.yml all: doctrine: class: sfDoctrineDatabase param: dsn: 'mysql:host=localhost;dbname=symfony12doctrine' username: user attributes: use_native_enum: true from ..

Re: [symfony-users] Re: problem to use symfony

2010-12-13 Thread Justen Doherty
I use MAMP 1.8 with symfony 1.4 without any problems.. i tried to use the latest MAMP install which didnt work with symfony 1.4.. On Fri, Dec 10, 2010 at 10:15 PM, Julian Reyes Escrigas julian.reyes.escri...@gmail.com wrote: Hi, i'm a new Mac User if you like install Apache2 + php5.3 +

Re: [symfony-users] 500 internal server error

2010-12-07 Thread Justen Doherty
switch to dev mode by adding _dev.php to your URL - e.g. frontend_dev.php (dev mode) frontend.php (production mode) On Tue, Dec 7, 2010 at 4:37 AM, jyoti jyt...@gmail.com wrote: Hi I have made a symfony project on my svn server . When I submit the form which reads user details , I get the

Re: [symfony-users] Creating a cron job script

2010-11-30 Thread Justen Doherty
have a look at symfony tasks.. On Wed, Nov 17, 2010 at 1:32 AM, DrFrow drf...@gmail.com wrote: I am wanting to run a daily import script for my symfony site, what I want is to setup a cron job in Cpanel and just have it run a script on my server. I am running into a problem with setting this

Re: [symfony-users] Symfony ORM - Bi-Directional ManyToOne

2010-11-30 Thread Justen Doherty
Hi Leevi, Im a big fan of your Expression Engine work- this is more of a Doctrine issue as relationships are defined in either the schema.yml or directly in the database and schema generated from that.. i havent used symfony 2 either so i cant really help you out On Sun, Nov 21, 2010 at 4:35 AM,