|
| Re: First Symfony plugin for Eclipse [message #55939 is a reply to message #55596 ] |
Thu, 10 July 2008 23:39   |
yaiself Messages: 12 Registered: March 2008 |
Junior Member |
|
|
This is the package
gracias
|
|
|
| Re: First Symfony plugin for Eclipse [message #56358 is a reply to message #52584 ] |
Wed, 16 July 2008 23:20   |
JMarkMurphy Messages: 21 Registered: June 2008 |
Junior Member |
|
|
| al_n wrote on Fri, 23 May 2008 05:31 |
| samon127 wrote on Tue, 20 May 2008 04:59 | When will symfoclipse suppose symfony 1.1?
I wouldn't write any code without this plugin!
|
When Symfony 1.1 will be officially released.
|
Ok, Symfony 1.1 is officially released, so do you have an expected release date for the new Symfoclipse? And on a related note, seeing that Symfoclipse is so useful, have you or will you open source this plugin? A lot of things are being upgraded, and it would be a shame if this work was lost simply because you ran out of time, or interest, and Symfony/eclipse/PDT marched on without you.
|
|
|
| Re: First Symfony plugin for Eclipse [message #56411 is a reply to message #56358 ] |
Thu, 17 July 2008 19:36   |
 |
al_n Messages: 321 Registered: May 2006 Location: The Netherlands |
Faithful Member |
|
|
| JMarkMurphy wrote on Wed, 16 July 2008 23:20 |
| al_n wrote on Fri, 23 May 2008 05:31 |
| samon127 wrote on Tue, 20 May 2008 04:59 | When will symfoclipse suppose symfony 1.1?
I wouldn't write any code without this plugin!
|
When Symfony 1.1 will be officially released.
|
Ok, Symfony 1.1 is officially released, so do you have an expected release date for the new Symfoclipse? And on a related note, seeing that Symfoclipse is so useful, have you or will you open source this plugin? A lot of things are being upgraded, and it would be a shame if this work was lost simply because you ran out of time, or interest, and Symfony/eclipse/PDT marched on without you.
|
It looks like some people don't understand the concept of "free" (we all know that nothing is really free) software.
Free software means that you will get for free whatever is offered for free. You may ask or request some things but you can not make demands. And I don't know why but this last post sound to me very much like a demand.
Seeing the fact that Symfoclipse was released as a free for non-commercial use product and that the response from commercial users was very low made me believe that there is no much demand for it, even doe it was downloaded hundreds of times. Further, its development is something I did on my free time and at the moment I don't have free time for it and I don't have any use for it myself as my involvement with the Symfony project is very low at the moment. Eventually it will be updated but it will take some time and I can not make a commitment over the exact date.
|
|
|
|
|
| Re: First Symfony plugin for Eclipse [message #58540 is a reply to message #39981 ] |
Tue, 12 August 2008 19:10   |
pungerus Messages: 2 Registered: August 2008 Location: Bronx |
Junior Member |
|
|
I seem to have a problem no one else has encountered. Basically, everything installs fine, the view comes up properly, the intro banner appears in the console, the context menu appears in the view, but nothing happens (at least visibly) when I select one of the symfoclipse menu options. No errors are shown, no console messages, no change at all. The directory with symfony.bat is in my path and invoking symfony from the command line works fine. Inside Eclipse there's no activity at all.
I am working with Eclipse 3.3.2, symfony 1.1.1, winxpsp2, xampp 1.6.7, php 5.2.6 and life 1.1.0.
Does anyone have any insight? Thanks a bunch.
|
|
|
|
|
| Re: First Symfony plugin for Eclipse [message #59445 is a reply to message #39981 ] |
Tue, 26 August 2008 12:42   |
Scalp Messages: 38 Registered: August 2008 |
Member |
|
|
Hi,
I've created my Symfony project on my server with command line. The project is on a Sharedoc.
I've Eclipse PDT with Symfoclipse installed without problem on my "client computer".
When i point workspace to my sharedoc, it found it without problem, but he dont see my Symfony project...
For see my project, i must create it from Eclipse ? Or i've an alternative to "search" it ? Or i must install Symfony also on my "client computer" ?
Thank you.
[Updated on: Tue, 26 August 2008 12:47]
|
|
|
|
| Re: First Symfony plugin for Eclipse [message #61303 is a reply to message #39981 ] |
Fri, 19 September 2008 08:56   |
kukumaiwu Messages: 1 Registered: September 2008 |
Junior Member |
|
|
hi
first thanks about this plugin
i am a newer for symfoclipse
as the advice of al_n upon
Ive right click the php project folder in symfony view
and also Ive use the init command
but as i cant understand is
the project is still as itself before i click
also the console of symfony show no reponse of it
could any one help me?
thx a lot
btw
Eclipse
Version: 3.3.2
Symfoclipse
Version: 1.2.1
PDT
Version: 1.0.3.v20080603-79
kukumaiwu
Attachment: init.JPG
(Size: 44.15KB, Downloaded 301 time(s))
[Updated on: Fri, 19 September 2008 12:29]
|
|
|
Solution for Symfoclipse problem inside the Eclipse [message #61391 is a reply to message #58540 ] |
Sat, 20 September 2008 08:55   |
cybercsen Messages: 7 Registered: August 2008 |
Junior Member |
|
|
Here is the solution for Symfoclipse Problem ,
Once i have faced the same pbm and finally i got the solution..
The pbm is Symfoclipse checks symfony's installed version using the CLI command 'symfony -V' each time when u are running symfony command inside the eclipse..
By default, output of the symfony -V command looks like
Symfony V1.X.X (/usr/share/php/symfony)
(or)
Symfony V1.X.X (C:\wamp\bin\php\php5.2.6\PEAR\symfony) .
This is the pbm caught by symfoclipse because its expects the simple format output like,
It is looking for the string without the installation path and all. So it will make pbm and current action will be stopped. So no errors and no output will be there in your console.
To rectify this you have to change the symfony code as to show the version without path information. To do,
Find the file called sfSymfonyCommandApplication.class.php which is normally located in symfony/commad/ folder. In that file, there will be a function called getLongVersion() which is only shows the verson of symfony when u issue the command
In that function change the return statment
return sprintf('%s version %s (%s)', $this->getName(), $this->formatter->format($this->getVersion(), 'INFO'), sfConfig::get('sf_symfony_lib_dir'))."\n";
by
return sprintf('%s version %s', $this->getName(), $this->formatter->format($this->getVersion(), 'INFO'))."\n";
Thats it.
From now symfony -V will return
Symfony V1.x.x
and symfoclipse also will work fine.
bye.
[Updated on: Sat, 20 September 2008 09:09] @
Each one bit makes the BYTE, KB, MB, GB, TB and so on..
So keep help...
|
|
|
|
|
| Re: First Symfony plugin for Eclipse [message #63917 is a reply to message #57124 ] |
Sat, 25 October 2008 15:56   |
Vasek Messages: 1 Registered: October 2008 |
Junior Member |
|
|
| albair wrote on Sun, 27 July 2008 18:33 | Hello.
I would like to try symfoclipse but after install, when i open symfony view, it tells me:
Could not create the view: Plug-in cc.noy.eclipse.symfony was unable to load class cc.noy.eclipse.symfony.explorer.SymfonyExplorerPart.
P.S.: eclipse 3.4 on windows XP. apache serveur instaled with xampp and symfony 1.1.0 with pear.
|
I have the same problem. Does anybody know how to solve it?
_______
Eclipse Platform
Version: 3.4.0
Build id: I20080617-2000,
symfony version 1.1.1 in pear,
PDT 2.0.0.HEAD-7H--9qMqC (20081016 night build)
java version "1.6.0_07"
Java(TM) SE Runtime Environment (build 1.6.0_07-b06)
Java HotSpot(TM) 64-Bit Server VM (build 10.0-b23, mixed mode)
Linux home 2.6.24-21-generic x86_64 (kubuntu 8.4)
_______
i've attached eclipse log file
Attachment: .log
(Size: 6.39KB, Downloaded 190 time(s))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| Re: First Symfony plugin for Eclipse [message #87129 is a reply to message #51964 ] |
Thu, 22 October 2009 02:33  |
timdenice Messages: 1 Registered: October 2009 |
Junior Member |
|
|
|
Hi guys ! For all those who can't install symphony plug in into Eclipse, i've founded a plugin elsewhere , check out this, i didn't try it yet but sounds good http://sfdt.borox.ch/updates/
|
|
|