About 10,500,000 results
Open links in new tab
  1. How to install all required PHP extensions for Laravel?

    If you want php extension for the specific version of PHP: The complete list of all the needed PHP extensions with version 8.3 for Laravel 11: sudo apt-get install -y php8.3 php8.3-cli php8.3-common php8.3-fpm php8.3-mysql php8.3-zip php8.3-gd php8.3-mbstring php8.3-curl php8.3-xml php8.3-bcmath openssl php8.3-json php8.3-tokenizer

  2. Installing PHP extensions on Windows - Stack Overflow

    Put the extension library folder under PHP's install path. On my computer this is C:\xampp\php\ext. Search in your PHP.ini for "extension_dir" to find what yours is. Edit php.ini to load the extension. Find ; Dynamic Extensions ;. Add line extension=my_lib.dll; This should do it.

  3. How to enable php curl extension - Stack Overflow

    Jul 21, 2016 · Follow below steps to enable CURL via the php.ini. 1.Locate your PHP.ini file. (normally located at in the bin folder of your apache install e.g.) 2.Open the PHP.ini in notepad. 3.Search or find the following : ';extension=php_curl.dll' 4.Uncomment this by removing the semi-colon ';' before it. 5.Save and Close PHP.ini. 6.Restart Apache

  4. php - How do I install cURL on Windows? - Stack Overflow

    Oct 8, 2008 · Apache (current version 2.2.21) now releases 2 different versions, that makes enabling curl much more easier. The apache version you need is the one WITH SSL support. Install it, then install php like you're used to. In php.ini, uncomment the line ;extension=php_curl.dll if you haven't so and you're ready to go. No need to download anything else.

  5. php - Installing PDO driver on MySQL Linux server - Stack Overflow

    Nov 14, 2012 · sudo apt-get install php*-mysql where * is a version name of php like 5.6, 7.0, 7.1, 7.2. After installation you need to mention these two statements. extension=pdo.so extension=pdo_mysql.so in your .ini file (uncomment if it is already there) and restart server by command. sudo service apache2 restart

  6. How to install redis extension for php 7 - Stack Overflow

    For Debian-based Linux distros you need a php-dev and pkg-php-tools packages for building native PHP extension from phpredis source code: sudo apt update && \ sudo apt install php-dev pkg-php-tools --yes && \ sudo pecl channel-update pecl.php.net && \ sudo pecl install redis

  7. How do I install GD on my windows server version of PHP

    Oct 21, 2011 · I tried to search for "extension=php_gd2.dll" file in "php.ini" file but there was no such thing there (";extension=php_gd2.dll" was also not there with a semicolon). Then I included the statement "extension=php_gd2.dll" myself in php.ini file.

  8. url - how to hide .php from address bar - Stack Overflow

    Apr 29, 2011 · The important thing here is the RewriteRule, which matches the full path of any request URI to any PHP file and passes that to the file $1.php, $1 being the first (and only) match from that regular expression.

  9. Install Tidy, PHP - Stack Overflow

    Jun 28, 2010 · When browsing my php.ini the line:;extension=php_tidy.dll is missing. How can I add the module to my php install? Note I tried adding: extension=php_tidy.dll but with no luck. I checked the docs but all they say is: This extension is bundled with PHP 5 and greater, and is installed using the --with-tidy configure option.

  10. PHP 7 simpleXML - Stack Overflow

    Feb 24, 2016 · in my case, you have to make sure about your php version. php -v example: if your php is PHP 7.4.28, than you have to write. sudo apt install php7.4-xml see, instead to write all version, just write the first and second, than following with -xml. I have this issue and it's take time, until I understand how to write properly. hopefully it's work ...

Refresh