Installing OAuth on WampServer x86 with php 5.4.3? - php

I'm trying to install OAuth on WampServer x86 with php 5.4.3 and have tried adding extensions from pierre, even tried installing directly from PECL. These have all produced errors in the logs, and haven't enabled OAuth. Does anyone know which dll version I need to use?

The only dll I found to work for that version is from the windows.php.net directory: http://windows.php.net/downloads/pecl/releases/oauth/1.2.3/php_oauth-1.2.3-5.4-ts-vc9-x86.zip
Best of luck to anyone who has to deal with this on another version...

Related

how can i get libmemcached for windows?

i'm trying to install the memcached extension in my windows localhost: wamp 64 php 5.5.12. see memcached at: https://pecl.php.net/package/memcached (notice that This extension uses libmemcached library)
unfortunately there is not a ready dll for this extension.. so i need to produce the dll myself.
i followed this guide in order to produce a working dll: https://wiki.php.net/internals/windows/stepbystepbuild
(im using Microsoft Visual Studio 2012 to compile)
i get an error when i try to configure (just before the build).
here is the print screen error that i get:
unfortunately the memcached extension is depended on 'libmemcached library' which do not officially support windows environment.
i came across this git project.
https://github.com/moteus/libmemcached-win32
im not sure what can i do with that source file and how can that help me. it seems that this git project is a libmemcached ready to work in windows (for all i know)
do this github project is a ready libmemcached library (if so where is the memcached.lib?)? or how can i produce from this page a memcached.lib file? (or anything that will help me make a working dll for the memcached extension)
would deeply appreciate any help on this.
thanks!!
There is vs2015 lib+dlls 1.0.18 available:
https://github.com/yshurik/libmemcached-win/releases/tag/1.0.18
Also vcxproj is availbale so you can compile it for other versions of msvc.
win32 branch on launchpad is extremely old and has different api from 1.0 version.
Apparently there is a libmemcached for windows. From the memcached website:
https://code.launchpad.net/~mattn/libmemcached/libmemcached-win32

Hot to enable PHP oauth in windows, Got error in "oauth.dsp"

I try to install oauth in windows. but not properly configured.
i am using laragon php 7.0. i also tried dll paste to ext folder but i not working, after that i tried install via pear but it's also problem to install.
pear install pecl/oauth-1.2.3
downloading oauth-1.2.3.tgz ...
Starting to download oauth-1.2.3.tgz (45,5
.............done: 45,531 bytes
6 source files, building
ERROR: The DSP oauth.dsp does not exist.
Please give a solution.
My system configuration is
pear version
PEAR Version: 1.10.1
PHP Version: 7.0.8
Zend Engine Version: 3.0.0
Running on: Windows NT IT-SBALA 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) i586
Thanks in advance.
I find answer myself.
PEAR install is working only source format file. it not working windows.php.net file. like wampp, xampp and etc.,
windows version support dll only, but I tried dll already.
The actual mistake is versioning problem.
PHP 7.0.8 support oauth 2.0.XXX. I tried lowest version and highest version. not a correct version this is the problem.
Please use correct version to solve the problem...

How to install 5.2 version of PHP in wamp

I have wampserver 2.5 installed on my machine which has PHP 5.5.12
But I need to setup and application which is built in PHP 5.2. So how do I use this 5.2 version of PHP?
To get that far back in history, you may find it easier to install one of the old WampServer 2.2 releases.
You can find the old releases here
There is a special extension to WampServer 2, which will let you install PHP 5.2.11 in your WampServer.
Here's the download link: WampServer Extension for PHP 5.2.11
WampServer Extension for PHP 5.2.11 - is not the best solution, as you could get compatibility error error image.
Better to use RiggsFolly solution and install older wamp version.

Mac 10.6 - unable to install PHP intl

I'm trying to install the PHP intl extension on Mac 10.6 "Snow Leopard" using the following command:
sudo pecl install intl
...but getting the following errors:
running: phpize
grep: /usr/include/php/main/php.h: No such file or directory
grep: /usr/include/php/Zend/zend_modules.h: No such file or directory
grep: /usr/include/php/Zend/zend_extensions.h: No such file or directory
Configuring for:
PHP Api Version:
Zend Module Api No:
Zend Extension Api No:
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.
ERROR: `phpize' failed
I am using the bundles Apache server with PHP 5.3.4.
Does anyone know how to install the intl extension?
Have you thought about using MAMP instead? It generally works better than Apple's bundled packages.
I've installed Zend Server CE and everything works 100%.
I removed Zend Server CE later on, and used this instead:
http://php-osx.liip.ch/ which is specifically built for Mac OSX 10.6, and Symfony2 in mind.
This worked better for me in the end, as I'm a Netbeans user, this means I can use xdebug bundled with the liip distribution.
I found it a bit cumbersome getting xdebug installed on Zend Server CE, and also, the liip PHP installation doesn't install an additional Apache and MySQL, it uses what is already included with the OS.
Try installing autoconf
brew install autoconf
Regards
This might be an old post, but for me, I found the easiest option was to install PHP using the liip service (http://php-osx.liip.ch/). Using one simple command, it installed the latest version of PHP, configured it with the existing apache server installed on my mac all along with the intl extension. A number of hours frustration solved in a couple of minutes!

Why is php_imagic extension removed from WampServer Version 2.0?

Is there any reason for this?
Yes there is a reason.
The dll of imagick doesn't work with wamp 2.0 because wampserver is not compiled with VC9.
I seems you can resolve this by compiling yourself php5 and apache in VC9. I Didn't try.

Categories