From: "Jake Conk" on
Hello,

I tried installing the pecl svn extension but I get an error.

This is the command I ran along with all the output:

--------------------------------------------------------------------------------

> pecl install svn-beta
downloading svn-0.3.tgz ...
Starting to download svn-0.3.tgz (20,274 bytes)
....... done: 20,274 bytes
4 source files, building
ERROR: The DSP svn.dsp does not exist

--------------------------------------------------------------------------------

I am using php 5.2.5 on windows xp. Any help would be greatly appreciated.

Thanks,

- Jake
From: "John Mertic" on
You should grab the pre-complied extension from
http://pecl4win.php.net/list.php instead. Use pecl install tried to
compile it locally, which you aren't set up for.

John

On Wed, Apr 16, 2008 at 1:41 PM, Jake Conk <jake.conk(a)gmail.com> wrote:
> Hello,
>
> I tried installing the pecl svn extension but I get an error.
>
> This is the command I ran along with all the output:
>
> --------------------------------------------------------------------------------
>
> > pecl install svn-beta
> downloading svn-0.3.tgz ...
> Starting to download svn-0.3.tgz (20,274 bytes)
> ...... done: 20,274 bytes
> 4 source files, building
> ERROR: The DSP svn.dsp does not exist
>
> --------------------------------------------------------------------------------
>
> I am using php 5.2.5 on windows xp. Any help would be greatly appreciated.
>
> Thanks,
>
> - Jake
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>



--
John Mertic
jmertic(a)gmail.com
http://jmertic.wordpress.com

"Explaining a joke is like dissecting a frog: you understand it
better, but the frog dies
in the process." --Mark Twain
From: Elizabeth M Smith on
Jake Conk wrote:
> Hello,
>
> I tried installing the pecl svn extension but I get an error.
>
> This is the command I ran along with all the output:
>
> --------------------------------------------------------------------------------
>
>> pecl install svn-beta
> downloading svn-0.3.tgz ...
> Starting to download svn-0.3.tgz (20,274 bytes)
> ...... done: 20,274 bytes
> 4 source files, building
> ERROR: The DSP svn.dsp does not exist
>
> --------------------------------------------------------------------------------
>
> I am using php 5.2.5 on windows xp. Any help would be greatly appreciated.
>
> Thanks,
>
> - Jake

Hmmm - that's not the way to install pecl extensions on windows.

First of all you need to install subversion - since the svn php
extension is a wrapper.

Second you need to get a svn extension binary - php_svn.dll

Are you using the thread safe or non-thread safe version of php?
Grab the appropriate pecl pack from http://php.net/downloads and this
item should be inside. Place php_svn.dll in your php extensions directory.

Finally you need to edit your php.ini, adding the line
extension=php_svn.dll where your other extensions are enabled. Then
restart your server.

Thanks,
Elizabeth Smith
From: "Jake Conk" on
Oh wow I didn't know there were pre-compiled extensions already for
windows. One problem though is the latest version they have the
extensions compiled for is PHP 5.2.1 and I am running PHP 5.2.5 here
and PHP 5.3.0 at home. If I use an extension compiled for PHP 5.2.1 on
either of those versions that I am using couldn't that produce some
unexpected results? What do you advise I should do?

Thanks,
- Jake

On Wed, Apr 16, 2008 at 10:56 AM, John Mertic <jmertic(a)gmail.com> wrote:
> You should grab the pre-complied extension from
> http://pecl4win.php.net/list.php instead. Use pecl install tried to
> compile it locally, which you aren't set up for.
>
> John
>
>
>
> On Wed, Apr 16, 2008 at 1:41 PM, Jake Conk <jake.conk(a)gmail.com> wrote:
> > Hello,
> >
> > I tried installing the pecl svn extension but I get an error.
> >
> > This is the command I ran along with all the output:
> >
> > --------------------------------------------------------------------------------
> >
> > > pecl install svn-beta
> > downloading svn-0.3.tgz ...
> > Starting to download svn-0.3.tgz (20,274 bytes)
> > ...... done: 20,274 bytes
> > 4 source files, building
> > ERROR: The DSP svn.dsp does not exist
> >
> > --------------------------------------------------------------------------------
> >
> > I am using php 5.2.5 on windows xp. Any help would be greatly appreciated.
> >
> > Thanks,
> >
> > - Jake
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
>
>
>
> --
> John Mertic
> jmertic(a)gmail.com
> http://jmertic.wordpress.com
>
> "Explaining a joke is like dissecting a frog: you understand it
> better, but the frog dies
> in the process." --Mark Twain
>
From: "Jake Conk" on
Elizabeth,

Thanks for your detailed setup instructions. I have a few questions. I
am running the PHP 5.2.5 here for Apache 2, I got this all setup by
just downloading the latest wamp package from
http://www.wampserver.com so how do I figure out if I'm running a
threaded or non-threaded version of PHP?

Also, you said the svn extension is just a wrapper. Does that mean its
just calling svn commands on my computer and not really using SVN code
to communicate with the SVN servers?

Thanks,
- Jake


On Wed, Apr 16, 2008 at 11:01 AM, Elizabeth M Smith
<auroraeosrose(a)gmail.com> wrote:
>
> Jake Conk wrote:
> > Hello,
> >
> > I tried installing the pecl svn extension but I get an error.
> >
> > This is the command I ran along with all the output:
> >
> > --------------------------------------------------------------------------------
> >
> >> pecl install svn-beta
> > downloading svn-0.3.tgz ...
> > Starting to download svn-0.3.tgz (20,274 bytes)
> > ...... done: 20,274 bytes
> > 4 source files, building
> > ERROR: The DSP svn.dsp does not exist
> >
> > --------------------------------------------------------------------------------
> >
> > I am using php 5.2.5 on windows xp. Any help would be greatly appreciated.
> >
> > Thanks,
> >
> > - Jake
>
> Hmmm - that's not the way to install pecl extensions on windows.
>
> First of all you need to install subversion - since the svn php
> extension is a wrapper.
>
> Second you need to get a svn extension binary - php_svn.dll
>
> Are you using the thread safe or non-thread safe version of php?
> Grab the appropriate pecl pack from http://php.net/downloads and this
> item should be inside. Place php_svn.dll in your php extensions directory.
>
> Finally you need to edit your php.ini, adding the line
> extension=php_svn.dll where your other extensions are enabled. Then
> restart your server.
>
> Thanks,
> Elizabeth Smith
>
> --
>
>
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>