php-windows Digest 12 Jun 2007 10:09:23 -0000 Issue 3255
Topics (messages 28060 through 28062):
Re: PECL extension Install Questions . - Re: [PHP-WIN] Fatle Error:
FILTER_VALIDATE_EMAIL
28060 by: Mark Abrams
28061 by: Elizabeth Smith
Returning variable and array from function
28062 by: Gustav Wiberg
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 ---
Thank you Neil,
MSVCR80.DLL is on my PC in C:\windows\system32
my path points to the file ????
Also. I also read the doc on PECL and am lost as to how I would install this
under the ApacheTraid system that I use for development.
"Niel Archer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi Mark
>
>> The Windows PHP install does not work on my XP Pro PC -
>> Recieved errors "The procedure entry point_encode_pointer
>> could not locate the dynamic link library MSVCR80.DLL
>
> I don't use the windows installer, so can't offer advice on it.
> However, MSVCR80.DLL, is Microsoft's Visual C++ Runtime and I believe is
> available somewhere on the MS web-site.
>
> The short answer is Yes, you can add them to your installation. PEAR
> libraries are PHP scripts, so usable on all platforms. PECL extensions
> are available as windows DLLs
>
> Both PEAR/PECL use the same method to download, which is part of the
> standard PHP installation. Look at the respective web-sites for
> documentation on PEAR/PECL and their packages.
>
> http://pear.php.net
>
> http://pecl.php.net
>
>
> Niel
--- End Message ---
--- Begin Message ---
Mark Abrams wrote:
Thank you Neil,
MSVCR80.DLL is on my PC in C:\windows\system32
my path points to the file ????
Also. I also read the doc on PECL and am lost as to how I would install this
under the ApacheTraid system that I use for development.
You're on windows - precompiled is the way to go.
Get extensions from http://pecl4win.php.net or the pecl extensions zip
on http://php.net/downloads (remember you'll need to match extensions to
your php version) - pick the extensions you want, they're named in
php_extensionname.dll format, drop them into your php extensions
directory (I have no clue where apachetriad puts them - search is your
friend) and enable them in your php.ini file (extension=php_filter.dll
or whatever the heck you want to use) - then restart apache
Windows dll search paths can be...interesting. Try putting a copy of
MSVCR80.DLL in the same directory as your php sapi (should be something
like php5apache2.dll or similiar) or if that doesn't work try in the
same location as your apache binary.
for pear try go-pear.org and follow the instructions
--- End Message ---
--- Begin Message ---
Hi there!
I think I have done this before but I can't remember how I did...
I want to return one variable ($htmlReport) and one array from a function
I'd like to like this:
return $htmlReport, $res;
but get the error: Parse error: syntax error, unexpected ',' in
C:\www\test\timeweb\classes\reports.php on line 2745
Best regards
/Gustav Wiberg
--- End Message ---