php-general Digest 18 Jan 2010 07:01:13 -0000 Issue 6544

Topics (messages 301165 through 301179):

PHP & MS Sequel Server
        301165 by: dealtek
        301166 by: Ashley Sheridan
        301169 by: dealtek
        301171 by: hack988 hack988
        301176 by: Michael Shadle
        301177 by: Phpster

Re: Easy Eclipse PHP Problem
        301167 by: hack988 hack988
        301168 by: Ashley Sheridan
        301170 by: hack988 hack988
        301172 by: Ashley Sheridan
        301173 by: hack988 hack988
        301174 by: hack988 hack988
        301175 by: Ashley Sheridan

Re: RSYNC - who knows more?
        301178 by: Jens Geier

PHP-based Workflow Editor
        301179 by: AmirBehzad Eslami

Administrivia:

To subscribe to the digest, e-mail:
        [email protected]

To unsubscribe from the digest, e-mail:
        [email protected]

To post to the list, e-mail:
        [email protected]


----------------------------------------------------------------------
--- Begin Message ---
http://www.aspfree.com/c/a/MS-SQL-Server/Using-PHP-with-MS-SQL-Server/

This article seems to sate that PHP can interface with MS Sequel Server ? If so, is it about the same level of complexity as working with PHP & MySQL? If one was to choose php & one DB over the other in a general comparison (not cost): any preferences?
--- End Message ---
--- Begin Message ---
On Sun, 2010-01-17 at 10:47 -0800, dealtek wrote:

> http://www.aspfree.com/c/a/MS-SQL-Server/Using-PHP-with-MS-SQL-Server/
> 
> This article seems to sate that PHP can interface with MS Sequel Server 
> ? If so, is it about the same level of complexity as working with PHP & 
> MySQL? If one was to choose php & one DB over the other in a general 
> comparison (not cost): any preferences?
> 


You can use PHP and MSSQL quite happily together on either Apache or
IIS. I've found a few disadvantages to MSSQL other than the cost factor
though:


      * MySQL is faster in the main for the sorts of things I've thrown
        at it
      * I've not found a phpMyAdmin equivalent, which means you'd have
        to use the non-web interface that MS gives you unless you want
        to open all sorts of ports to connect remotely
      * Depending on the version you may be missing out on certain
        features. I had to use a version of MSSQL once that had no LIMIT
        capabilities, only TOP, which made things a lot more difficult
      * PHP doesn't have a mysql_real_escape_string equivalent for
        MSSQL, which is used to sanitise data for insertion based on the
        character set being used.
      * MSSQL doesn't allow you to use different database engines for
        different tables, it only has the JET engine as far as I know,
        so you wouldn't be able to optimise on a table-by-table basis by
        using different storage engines.


Thanks,
Ash
http://www.ashleysheridan.co.uk



--- End Message ---
--- Begin Message ---

On Jan 17, 2010, at 11:06 AM, Ashley Sheridan wrote:

On Sun, 2010-01-17 at 10:47 -0800, dealtek wrote:

http://www.aspfree.com/c/a/MS-SQL-Server/Using-PHP-with-MS-SQL- Server/ This article seems to sate that PHP can interface with MS Sequel Server ? If so, is it about the same level of complexity as working with PHP & MySQL? If one was to choose php & one DB over the other in a general comparison (not cost): any preferences?

You can use PHP and MSSQL quite happily together on either Apache or IIS. I've found a few disadvantages to MSSQL other than the cost factor though:

MySQL is faster in the main for the sorts of things I've thrown at it
I've not found a phpMyAdmin equivalent, which means you'd have to use the non-web interface that MS gives you unless you want to open all sorts of ports to connect remotely Depending on the version you may be missing out on certain features. I had to use a version of MSSQL once that had no LIMIT capabilities, only TOP, which made things a lot more difficult PHP doesn't have a mysql_real_escape_string equivalent for MSSQL, which is used to sanitise data for insertion based on the character set being used. MSSQL doesn't allow you to use different database engines for different tables, it only has the JET engine as far as I know, so you wouldn't be able to optimise on a table-by-table basis by using different storage engines.



Thanks so much Ashley for the clear - quick response!!!

The project in question is a pre existing site in .asp and MS SQL Server . The owner was inquiring as to adding additional modules (and small satellite websites) - most of which will not intersect with .asp but might use the MS SQL Server database... I suggested they find an .asp programmer but they might want PHP ...



Thanks,
[email protected]
[db-10]


--- End Message ---
--- Begin Message ---
you can use php with mssql2005.
But infact that mysql is more suit than mssql in php environment.

2010/1/18 [email protected] <[email protected]>:
>
> On Jan 17, 2010, at 11:06 AM, Ashley Sheridan wrote:
>
>> On Sun, 2010-01-17 at 10:47 -0800, dealtek wrote:
>>>
>>> http://www.aspfree.com/c/a/MS-SQL-Server/Using-PHP-with-MS-SQL-Server/
>>> This article seems to sate that PHP can interface with MS Sequel Server ? If
>>> so, is it about the same level of complexity as working with PHP & MySQL? If
>>> one was to choose php & one DB over the other in a general comparison (not
>>> cost): any preferences?
>>
>> You can use PHP and MSSQL quite happily together on either Apache or IIS.
>> I've found a few disadvantages to MSSQL other than the cost factor though:
>>
>> MySQL is faster in the main for the sorts of things I've thrown at it
>> I've not found a phpMyAdmin equivalent, which means you'd have to use the
>> non-web interface that MS gives you unless you want to open all sorts of
>> ports to connect remotely
>> Depending on the version you may be missing out on certain features. I had
>> to use a version of MSSQL once that had no LIMIT capabilities, only TOP,
>> which made things a lot more difficult
>> PHP doesn't have a mysql_real_escape_string equivalent for MSSQL, which is
>> used to sanitise data for insertion based on the character set being used.
>> MSSQL doesn't allow you to use different database engines for different
>> tables, it only has the JET engine as far as I know, so you wouldn't be able
>> to optimise on a table-by-table basis by using different storage engines.
>>
>>
>
> Thanks so much Ashley for the clear - quick response!!!
>
> The project in question is a pre existing site in .asp and MS SQL Server .
> The owner was inquiring as to adding additional modules (and small satellite
> websites) - most of which will not intersect with .asp but might use the MS
> SQL Server database... I suggested they find an .asp programmer but they
> might want PHP ...
>
>
>
> Thanks,
> [email protected]
> [db-10]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---
--- Begin Message ---
I use PHP with MSSQL right now.

PHP is on Linux, MSSQL is on Windows. Just use the FreeTDS libraries to connect.

On Sun, Jan 17, 2010 at 10:47 AM, dealtek <[email protected]> wrote:
> http://www.aspfree.com/c/a/MS-SQL-Server/Using-PHP-with-MS-SQL-Server/
>
> This article seems to sate that PHP can interface with MS Sequel Server ? If
> so, is it about the same level of complexity as working with PHP & MySQL? If
> one was to choose php & one DB over the other in a general comparison (not
> cost): any preferences?
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---
--- Begin Message --- Asp blows chunks when compared to php. Poor array handling, no built in image handling etc. Better to rewrite the site than to keep using 15 year old tech that is not really being supported by Microsoft.

Bastien

Sent from my iPod

On Jan 17, 2010, at 2:27 PM, "[email protected]" <[email protected]> wrote:


On Jan 17, 2010, at 11:06 AM, Ashley Sheridan wrote:

On Sun, 2010-01-17 at 10:47 -0800, dealtek wrote:

http://www.aspfree.com/c/a/MS-SQL-Server/Using-PHP-with-MS-SQL-Server/ This article seems to sate that PHP can interface with MS Sequel Server ? If so, is it about the same level of complexity as working with PHP & MySQL? If one was to choose php & one DB over the other in a general comparison (not cost): any preferences?

You can use PHP and MSSQL quite happily together on either Apache or IIS. I've found a few disadvantages to MSSQL other than the cost factor though:

MySQL is faster in the main for the sorts of things I've thrown at it
I've not found a phpMyAdmin equivalent, which means you'd have to use the non-web interface that MS gives you unless you want to open all sorts of ports to connect remotely Depending on the version you may be missing out on certain features. I had to use a version of MSSQL once that had no LIMIT capabilities, only TOP, which made things a lot more difficult PHP doesn't have a mysql_real_escape_string equivalent for MSSQL, which is used to sanitise data for insertion based on the character set being used. MSSQL doesn't allow you to use different database engines for different tables, it only has the JET engine as far as I know, so you wouldn't be able to optimise on a table-by-table basis by using different storage engines.



Thanks so much Ashley for the clear - quick response!!!

The project in question is a pre existing site in .asp and MS SQL Server . The owner was inquiring as to adding additional modules (and small satellite websites) - most of which will not intersect with .asp but might use the MS SQL Server database... I suggested they find an .asp programmer but they might want PHP ...



Thanks,
[email protected]
[db-10]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--- End Message ---
--- Begin Message ---
Hi tedd!
I'm not see your email about this open source before,but i can't
understand why somebody like to use it.
It is too fat,and depend with JDK,I think it's an bad idea.
JAVA has so many problem with itself.
so I'd like to use some simpler text editor to code with php.

There is a work experience in my company.
My colleague use eclips with php plugin to coded in some project.
We found a bug in Integrated  Test.It's so easy to solve(save file as
UTF-8 encode).
He try to change encode in several times by eclips,but file's encode
not change.(cost 30 minutes)
He use editplus to change file's encode finaly.(cost 1 minutes).




2010/1/11 tedd <[email protected]>:
> Hi gang:
>
> I recently installed MAPA on my new system (Mac X 10.6.2) to use use Eclipse
> and PHP 5.
>
> The EasyEclipse for PHP download is located at:
>
> http://www.easyeclipse.org/site/distributions/php.html
>
> However, the installation fails.
>
> I posted an error report, but there are other reports that date months back.
> Does anyone have the ear of any developers who work on this open source
> project? Until that bug is fixed, my new system sits idle.
>
> Cheers,
>
> tedd
>
> --
> -------
> http://sperling.com  http://ancientstones.com  http://earthstones.com
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---
--- Begin Message ---
On Mon, 2010-01-18 at 03:13 +0800, hack988 hack988 wrote:

> Hi tedd!
> I'm not see your email about this open source before,but i can't
> understand why somebody like to use it.
> It is too fat,and depend with JDK,I think it's an bad idea.
> JAVA has so many problem with itself.
> so I'd like to use some simpler text editor to code with php.
> 
> There is a work experience in my company.
> My colleague use eclips with php plugin to coded in some project.
> We found a bug in Integrated  Test.It's so easy to solve(save file as
> UTF-8 encode).
> He try to change encode in several times by eclips,but file's encode
> not change.(cost 30 minutes)
> He use editplus to change file's encode finaly.(cost 1 minutes).
> 
> 
> 
> 
> 2010/1/11 tedd <[email protected]>:
> > Hi gang:
> >
> > I recently installed MAPA on my new system (Mac X 10.6.2) to use use Eclipse
> > and PHP 5.
> >
> > The EasyEclipse for PHP download is located at:
> >
> > http://www.easyeclipse.org/site/distributions/php.html
> >
> > However, the installation fails.
> >
> > I posted an error report, but there are other reports that date months back.
> > Does anyone have the ear of any developers who work on this open source
> > project? Until that bug is fixed, my new system sits idle.
> >
> > Cheers,
> >
> > tedd
> >
> > --
> > -------
> > http://sperling.com  http://ancientstones.com  http://earthstones.com
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
> 


The thing is, Eclipse is an IDE, whereas EditPlus is just a text editor.
There are quite large differences between the two types of software. An
IDE could save hours of work down the line where you'd be still entering
code by hand in a text editor.

Thanks,
Ash
http://www.ashleysheridan.co.uk



--- End Message ---
--- Begin Message ---
Yes,I'm just use text editor for php coding.
It's faster than using IDE.
I'm just add an custom syntax file ("php.stx" ) for Basic syntax and
php's internal functions.
Eclips's syntax and function association is so slow.

2010/1/18 Ashley Sheridan <[email protected]>
>
> On Mon, 2010-01-18 at 03:13 +0800, hack988 hack988 wrote:
>
> Hi tedd!
> I'm not see your email about this open source before,but i can't
> understand why somebody like to use it.
> It is too fat,and depend with JDK,I think it's an bad idea.
> JAVA has so many problem with itself.
> so I'd like to use some simpler text editor to code with php.
> There is a work experience in my company.
> My colleague use eclips with php plugin to coded in some project.
> We found a bug in Integrated  Test.It's so easy to solve(save file as
> UTF-8 encode).
> He try to change encode in several times by eclips,but file's encode
> not change.(cost 30 minutes)
> He use editplus to change file's encode finaly.(cost 1 minutes).
> 2010/1/11 tedd <[email protected]>:
> > Hi gang:
> >
> > I recently installed MAPA on my new system (Mac X 10.6.2) to use use Eclipse
> > and PHP 5.
> >
> > The EasyEclipse for PHP download is located at:
> >
> > http://www.easyeclipse.org/site/distributions/php.html
> >
> > However, the installation fails.
> >
> > I posted an error report, but there are other reports that date months back.
> > Does anyone have the ear of any developers who work on this open source
> > project? Until that bug is fixed, my new system sits idle.
> >
> > Cheers,
> >
> > tedd
> >
> > --
> > -------
> > http://sperling.com  http://ancientstones.com  http://earthstones.com
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
>
> The thing is, Eclipse is an IDE, whereas EditPlus is just a text editor. 
> There are quite large differences between the two types of software. An IDE 
> could save hours of work down the line where you'd be still entering code by 
> hand in a text editor.
>
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
>
>

--- End Message ---
--- Begin Message ---
On Mon, 2010-01-18 at 03:32 +0800, hack988 hack988 wrote:

> Yes,I'm just use text editor for php coding.
> It's faster than using IDE.
> I'm just add an custom syntax file ("php.stx" ) for Basic syntax and
> php's internal functions.
> Eclips's syntax and function association is so slow.
> 
> 2010/1/18 Ashley Sheridan <[email protected]>
> >
> > On Mon, 2010-01-18 at 03:13 +0800, hack988 hack988 wrote:
> >
> > Hi tedd!
> > I'm not see your email about this open source before,but i can't
> > understand why somebody like to use it.
> > It is too fat,and depend with JDK,I think it's an bad idea.
> > JAVA has so many problem with itself.
> > so I'd like to use some simpler text editor to code with php.
> > There is a work experience in my company.
> > My colleague use eclips with php plugin to coded in some project.
> > We found a bug in Integrated  Test.It's so easy to solve(save file as
> > UTF-8 encode).
> > He try to change encode in several times by eclips,but file's encode
> > not change.(cost 30 minutes)
> > He use editplus to change file's encode finaly.(cost 1 minutes).
> > 2010/1/11 tedd <[email protected]>:
> > > Hi gang:
> > >
> > > I recently installed MAPA on my new system (Mac X 10.6.2) to use use 
> > > Eclipse
> > > and PHP 5.
> > >
> > > The EasyEclipse for PHP download is located at:
> > >
> > > http://www.easyeclipse.org/site/distributions/php.html
> > >
> > > However, the installation fails.
> > >
> > > I posted an error report, but there are other reports that date months 
> > > back.
> > > Does anyone have the ear of any developers who work on this open source
> > > project? Until that bug is fixed, my new system sits idle.
> > >
> > > Cheers,
> > >
> > > tedd
> > >
> > > --
> > > -------
> > > http://sperling.com  http://ancientstones.com  http://earthstones.com
> > >
> > > --
> > > PHP General Mailing List (http://www.php.net/)
> > > To unsubscribe, visit: http://www.php.net/unsub.php
> > >
> > >
> >
> > The thing is, Eclipse is an IDE, whereas EditPlus is just a text editor. 
> > There are quite large differences between the two types of software. An IDE 
> > could save hours of work down the line where you'd be still entering code 
> > by hand in a text editor.
> >
> > Thanks,
> > Ash
> > http://www.ashleysheridan.co.uk
> >
> >
> 


What about class and method recognition during development? Also, you
lose out on the ability to step through the program, as no text editor
I've ever seen allows you to do that. The debugging process is usually
what takes most of the time in any development, and tracing through a
program is a huge benefit in this area.

Thanks,
Ash
http://www.ashleysheridan.co.uk



--- End Message ---
--- Begin Message ---
editplus can't debug with ie or firefox :)
Unfortunately I'm not use class in allmost time.
I'd like drupal's style.
I'm try to found an quickly and benefit IDE like microsoft's visual
studio,but I'm so disappointed with so many php's IDE

2010/1/18 Ashley Sheridan <[email protected]>
>
> On Mon, 2010-01-18 at 03:32 +0800, hack988 hack988 wrote:
>
> Yes,I'm just use text editor for php coding.
> It's faster than using IDE.
> I'm just add an custom syntax file ("php.stx" ) for Basic syntax and
> php's internal functions.
> Eclips's syntax and function association is so slow.
> 2010/1/18 Ashley Sheridan <[email protected]>
> >
> > On Mon, 2010-01-18 at 03:13 +0800, hack988 hack988 wrote:
> >
> > Hi tedd!
> > I'm not see your email about this open source before,but i can't
> > understand why somebody like to use it.
> > It is too fat,and depend with JDK,I think it's an bad idea.
> > JAVA has so many problem with itself.
> > so I'd like to use some simpler text editor to code with php.
> > There is a work experience in my company.
> > My colleague use eclips with php plugin to coded in some project.
> > We found a bug in Integrated  Test.It's so easy to solve(save file as
> > UTF-8 encode).
> > He try to change encode in several times by eclips,but file's encode
> > not change.(cost 30 minutes)
> > He use editplus to change file's encode finaly.(cost 1 minutes).
> > 2010/1/11 tedd <[email protected]>:
> > > Hi gang:
> > >
> > > I recently installed MAPA on my new system (Mac X 10.6.2) to use use 
> > > Eclipse
> > > and PHP 5.
> > >
> > > The EasyEclipse for PHP download is located at:
> > >
> > > http://www.easyeclipse.org/site/distributions/php.html
> > >
> > > However, the installation fails.
> > >
> > > I posted an error report, but there are other reports that date months 
> > > back.
> > > Does anyone have the ear of any developers who work on this open source
> > > project? Until that bug is fixed, my new system sits idle.
> > >
> > > Cheers,
> > >
> > > tedd
> > >
> > > --
> > > -------
> > > http://sperling.com  http://ancientstones.com  http://earthstones.com
> > >
> > > --
> > > PHP General Mailing List (http://www.php.net/)
> > > To unsubscribe, visit: http://www.php.net/unsub.php
> > >
> > >
> >
> > The thing is, Eclipse is an IDE, whereas EditPlus is just a text editor. 
> > There are quite large differences between the two types of software. An IDE 
> > could save hours of work down the line where you'd be still entering code 
> > by hand in a text editor.
> >
> > Thanks,
> > Ash
> > http://www.ashleysheridan.co.uk
> >
> >
>
> What about class and method recognition during development? Also, you lose 
> out on the ability to step through the program, as no text editor I've ever 
> seen allows you to do that. The debugging process is usually what takes most 
> of the time in any development, and tracing through a program is a huge 
> benefit in this area.
>
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
>
>

--- End Message ---
--- Begin Message ---
 editplus can debug with ie or firefox :)
 Unfortunately I'm not use class in allmost time.
 I'd like drupal's style.
I'm try to found an quickly and benefit IDE like microsoft's visual
 studio,but I'm so disappointed with so many php's IDE

 2010/1/18 Ashley Sheridan <[email protected]>
>>
>> On Mon, 2010-01-18 at 03:32 +0800, hack988 hack988 wrote:
>>
>> Yes,I'm just use text editor for php coding.
>> It's faster than using IDE.
>> I'm just add an custom syntax file ("php.stx" ) for Basic syntax and
>> php's internal functions.
>> Eclips's syntax and function association is so slow.
>> 2010/1/18 Ashley Sheridan <[email protected]>
>> >
>> > On Mon, 2010-01-18 at 03:13 +0800, hack988 hack988 wrote:
>> >
>> > Hi tedd!
>> > I'm not see your email about this open source before,but i can't
>> > understand why somebody like to use it.
>> > It is too fat,and depend with JDK,I think it's an bad idea.
>> > JAVA has so many problem with itself.
>> > so I'd like to use some simpler text editor to code with php.
>> > There is a work experience in my company.
>> > My colleague use eclips with php plugin to coded in some project.
>> > We found a bug in Integrated  Test.It's so easy to solve(save file as
>> > UTF-8 encode).
>> > He try to change encode in several times by eclips,but file's encode
>> > not change.(cost 30 minutes)
>> > He use editplus to change file's encode finaly.(cost 1 minutes).
>> > 2010/1/11 tedd <[email protected]>:
>> > > Hi gang:
>> > >
>> > > I recently installed MAPA on my new system (Mac X 10.6.2) to use use 
>> > > Eclipse
>> > > and PHP 5.
>> > >
>> > > The EasyEclipse for PHP download is located at:
>> > >
>> > > http://www.easyeclipse.org/site/distributions/php.html
>> > >
>> > > However, the installation fails.
>> > >
>> > > I posted an error report, but there are other reports that date months 
>> > > back.
>> > > Does anyone have the ear of any developers who work on this open source
>> > > project? Until that bug is fixed, my new system sits idle.
>> > >
>> > > Cheers,
>> > >
>> > > tedd
>> > >
>> > > --
>> > > -------
>> > > http://sperling.com  http://ancientstones.com  http://earthstones.com
>> > >
>> > > --
>> > > PHP General Mailing List (http://www.php.net/)
>> > > To unsubscribe, visit: http://www.php.net/unsub.php
>> > >
>> > >
>> >
>> > The thing is, Eclipse is an IDE, whereas EditPlus is just a text editor. 
>> > There are quite large differences between the two types of software. An 
>> > IDE could save hours of work down the line where you'd be still entering 
>> > code by hand in a text editor.
>> >
>> > Thanks,
>> > Ash
>> > http://www.ashleysheridan.co.uk
>> >
>> >
>>
>> What about class and method recognition during development? Also, you lose 
>> out on the ability to step through the program, as no text editor I've ever 
>> seen allows you to do that. The debugging process is usually what takes most 
>> of the time in any development, and tracing through a program is a huge 
>> benefit in this area.
>>
>> Thanks,
>> Ash
>> http://www.ashleysheridan.co.uk
>>
>>
>

--- End Message ---
--- Begin Message ---
On Mon, 2010-01-18 at 04:13 +0800, hack988 hack988 wrote:

> editplus can debug with ie or firefox :)
>  Unfortunately I'm not use class in allmost time.
>  I'd like drupal's style.
> I'm try to found an quickly and benefit IDE like microsoft's visual
>  studio,but I'm so disappointed with so many php's IDE
> 
>  2010/1/18 Ashley Sheridan <[email protected]>
> >>
> >> On Mon, 2010-01-18 at 03:32 +0800, hack988 hack988 wrote:
> >>
> >> Yes,I'm just use text editor for php coding.
> >> It's faster than using IDE.
> >> I'm just add an custom syntax file ("php.stx" ) for Basic syntax and
> >> php's internal functions.
> >> Eclips's syntax and function association is so slow.
> >> 2010/1/18 Ashley Sheridan <[email protected]>
> >> >
> >> > On Mon, 2010-01-18 at 03:13 +0800, hack988 hack988 wrote:
> >> >
> >> > Hi tedd!
> >> > I'm not see your email about this open source before,but i can't
> >> > understand why somebody like to use it.
> >> > It is too fat,and depend with JDK,I think it's an bad idea.
> >> > JAVA has so many problem with itself.
> >> > so I'd like to use some simpler text editor to code with php.
> >> > There is a work experience in my company.
> >> > My colleague use eclips with php plugin to coded in some project.
> >> > We found a bug in Integrated  Test.It's so easy to solve(save file as
> >> > UTF-8 encode).
> >> > He try to change encode in several times by eclips,but file's encode
> >> > not change.(cost 30 minutes)
> >> > He use editplus to change file's encode finaly.(cost 1 minutes).
> >> > 2010/1/11 tedd <[email protected]>:
> >> > > Hi gang:
> >> > >
> >> > > I recently installed MAPA on my new system (Mac X 10.6.2) to use use 
> >> > > Eclipse
> >> > > and PHP 5.
> >> > >
> >> > > The EasyEclipse for PHP download is located at:
> >> > >
> >> > > http://www.easyeclipse.org/site/distributions/php.html
> >> > >
> >> > > However, the installation fails.
> >> > >
> >> > > I posted an error report, but there are other reports that date months 
> >> > > back.
> >> > > Does anyone have the ear of any developers who work on this open source
> >> > > project? Until that bug is fixed, my new system sits idle.
> >> > >
> >> > > Cheers,
> >> > >
> >> > > tedd
> >> > >
> >> > > --
> >> > > -------
> >> > > http://sperling.com  http://ancientstones.com  http://earthstones.com
> >> > >
> >> > > --
> >> > > PHP General Mailing List (http://www.php.net/)
> >> > > To unsubscribe, visit: http://www.php.net/unsub.php
> >> > >
> >> > >
> >> >
> >> > The thing is, Eclipse is an IDE, whereas EditPlus is just a text editor. 
> >> > There are quite large differences between the two types of software. An 
> >> > IDE could save hours of work down the line where you'd be still entering 
> >> > code by hand in a text editor.
> >> >
> >> > Thanks,
> >> > Ash
> >> > http://www.ashleysheridan.co.uk
> >> >
> >> >
> >>
> >> What about class and method recognition during development? Also, you lose 
> >> out on the ability to step through the program, as no text editor I've 
> >> ever seen allows you to do that. The debugging process is usually what 
> >> takes most of the time in any development, and tracing through a program 
> >> is a huge benefit in this area.
> >>
> >> Thanks,
> >> Ash
> >> http://www.ashleysheridan.co.uk
> >>
> >>
> >


'Debugging' in a browser is nothing like debugging code in a step
approach. By stepping through the code, you can halt at any point in the
code, check out the variables and what's in them, and see where any
problems occur as they happen.

Thanks,
Ash
http://www.ashleysheridan.co.uk



--- End Message ---
--- Begin Message ---
"Richard" <[email protected]> schrieb im Newsbeitrag 
news:[email protected]...
> Hi,
>
>> as sugestet i tried backup by using RSYNC.
>> It is working fine.
>>
>> But i have some more Questions for this software.
>>
>> Is here some one that can help me with it?
>
> You might get better results with the documentation:
>
> http://samba.anu.edu.au/rsync/documentation.html
>
> At a glance there are links to mailing lists too.
>
> --
> Richard Heyes
> HTML5 canvas graphing: RGraph - http://www.rgraph.net (updated 2nd 
> January)
> Lots of PHP and Javascript code - http://www.phpguru.org

Hello Richard,

yes i see the links to the mailing lists, but i can not access them.

Kind Regards
Jens Geier



--- End Message ---
--- Begin Message ---
Dear list,

Java has a lot of tools to implement Workflows, but I'm trying to find a way
to achieve the same results in PHP. It seems that ezComponents has a
Workflow mechanism,
but it lacks the editor.

Is there any PHP-based Workflow Editor?
Do you have any recommendation?

Thank you in advance,
-b

--- End Message ---

Reply via email to