I would like to install SWOOLE on WHM and I want to download a specific version (4.8.1)
But I can't only download the latest version, which is 5.0.1, and I want to download 4.8.1.
Is there any way to install it...
I tried the download from Module Installers, but it did not work
Related
I am trying to install PHP 8 in wampserver, and I am following the tutorial in the official wampserver forum, but PHP 8 does not work. it shows the following error.
This PHP version 8.0.2 doesn't seem to be compatible with your actual Apache Version.
c:/wamp64/bin/php/php8.0.2/php8apache2_4.dll does not exist.
how do I solve this problem and install php8 in wampaserver?
Information
windows 10 build 19042
wampserver 3.2.3
apache 2.4.46
mysql 8.0.21
This is the page where I downloaded php8 https://windows.php.net/qa/
This is the tutorial I was using http://forum.wampserver.com/read.php?2,159568
Capture PHP exiting Add-on in browser hitting in the vm/server with server/vm ip
Backup the Exiting WAMP Server 3.0.0 folder in C:/wamp64 and copy it into any local directory
Upgrade WAMP Server 2.5/3.0.0 to the latest version 3.2.3
download and install as admin on the below link
https://wampserver.aviatechno.net/files/updates/wampserver2.5_x64_update_3.0.3.exe
Again upgrade to the latest version using below link
https://wampserver.aviatechno.net/files/updates/wampserver3_x86_x64_update3.2.5.exe
install visual c++ below
https://wampserver.aviatechno.net/files/vcpackages/vcredist_2019_x64.exe
Now Download and install php 8.0.6 Version on below link
https://wampserver.aviatechno.net/files/php/wampserver3_x64_addon_php8.0.6.exe
once successfully installation Apache will fail because of the latest PHP version to overcome these install the latest APACHE WAMP in below link
https://wampserver.aviatechno.net/files/apache/wampserver3_x64_addon_apache2.4.48.exe
Now to Click WAMP icon in-tray icon and click refresh and start all the services and change Apache and PHP to the latest version which we installed.
if the user required to install MySQL version 8.0.24 then download and install below link
https://wampserver.aviatechno.net/files/mysql/wampserver3_x64_addon_mysql8.0.24.exe
if phpmyadmin show incompatibility then install the latest version of PHPMYADMIN as below link
https://wampserver.aviatechno.net/files/apps/wampserver3_x86_x64_phpmyadmin5.1.1.exe
Reference Link
https://wampserver.aviatechno.net/?lang=en#mysql_versions
Am working with php applications and the library that I want to use requires
1.) GRPC extension
2.) PHP >= 7.0
3.) Install gRPC extension
pecl install grpc
4.) Then add grpc.so to php.ini
The SO link https://stackoverflow.com/questions/50222772/installing-grpc-for-localhost
I found here suggest the the use of grpc.dll
Am running xampp on WINDOW 7.
My only problem is how do I run pecl install grpc on xampp.
Again where do I get grpc.so
You can download pre-compiled grpc extension for windows from the PECL website: http://pecl.php.net/package/grpc. Click on the DLL icons.
I want to install gnupg module in windows xampp server.I have read and research all installation related link but I didn't get for windows installation.Does any one have an idea how to install it in xampp server.Please
give proper installation steps to install
I am trying to install printer.dll file for php 5.3.13 version in wampp,i try to install pear using pear i tried to download printer package
$pear download printer
but getting error :No releases available for package "pear.php.net/printer"
download failed
if from pear printer.dll file is not available , from where to get this printer extension for version 5.3.13 , please help.t
thank you in advance
printer is a pecl package, so the right way to install it is
$ pecl install printer
or
$ pear install pecl/printer
Now pecl does not ship windows dlls in their packages, so you cannot download it via pecl/pear at all on windows.
Note that the printer page has no releases, so you can't install it via pecl at all - http://pecl.php.net/package/printer
I've downloaded and installed Imagick and Imagick-devel. I now want to use it with PHP but every guide I've found has the following steps:
pecl install imagick
echo "extension=imagick.so" > /etc/php.d/imagick.ini
The first step pecl is part of PEAR, a package that I don't need and don't want to install. How would I install and hook Imagick to PHP without that pecl command?
OS: CentOS 6
Either your package manager has a php-imagick package, or you simply have to install pear/pecl to install the php extension.
PEAR is the only php package manager that supports installing php/pecl extensions, so unless your linux distribution provides a package itself, you have to use it.
Alternatively, you can download the tgz, extract it, compile it, install it and activate it manually. You have to know what you're doing in this case, though.