alexandre marillesse
alexandre marillesse

Reputation: 85

problem with extension impossible enable or install

php 7.3.5 hello i have a problem with the extension ext-http , and composer say me ext-http is missing even if i write this in composer .json , why ? this this exact message: _Problem 1 - The requested PHP extension ext-http * is missing from your system. Install or enable PHP's http extension. i tried to see th php.ini , and it i saw nothin to be relevant

with delete the entire vendor directroy it's work maybe it's cause to the version of php after ...

{
  "type": "project",
  "license": "proprietary",
  "require": {
    "php": "^7.1.3",
    "ext-ctype": "*",
    "ext-iconv": "*",
    "psr/log": "^1.1",
    "ext-intl" : "*",
    "ext-http": "*",
    "sensio/framework-extra-bundle": "^5.2",
    "sensiolabs/security-checker": "^5.0",
    "swiftmailer/swiftmailer": "^6.0",
    "symfony/asset": "4.2.*",
    "symfony/console": "4.2.*",
    "symfony/debug": "4.2.*",
    "symfony/debug-pack": "^1.0",
    "symfony/dependency-injection": "4.2.*",
    "symfony/dotenv": "4.2.*",
    "symfony/expression-language": "4.2.*",
    "symfony/flex": "^1.1",
    "symfony/form": "4.2.*",
    "symfony/framework-bundle": "4.2.*",
    "symfony/monolog-bundle": "^3.1",
    "symfony/orm-pack": "*",
    "symfony/process": "4.2.*",
    "symfony/security-bundle": "4.2.*",
    "symfony/serializer-pack": "*",
    "symfony/swiftmailer-bundle": "^3.1",
    "symfony/translation": "4.2.*",
    "symfony/twig-bundle": "4.2.*",
    "symfony/validator": "4.2.*",
    "symfony/web-link": "4.2.*",
    "symfony/webpack-encore-bundle": "^1.2",
    "symfony/yaml": "4.2.*"
  },
  "require-dev": {
    "doctrine/doctrine-fixtures-bundle": "^3.1",
    "symfony/maker-bundle": "^1.0",
    "symfony/profiler-pack": "*",
    "symfony/test-pack": "*",
    "symfony/web-server-bundle": "4.2.*"
  },
  "config": {
    "preferred-install": {
      "*": "dist"
    },
    "sort-packages": true
  },
  "autoload": {
    "psr-4": {
      "App\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "App\\Tests\\": "tests/"
    }
  },
  "replace": {
    "paragonie/random_compat": "2.*",
    "symfony/polyfill-ctype": "*",
    "symfony/polyfill-iconv": "*",
    "symfony/polyfill-php71": "*",
    "symfony/polyfill-php70": "*",
    "symfony/polyfill-php56": "*"
  },
  "scripts": {
    "auto-scripts": {
      "cache:clear": "symfony-cmd",
      "assets:install %PUBLIC_DIR%": "symfony-cmd",
      "security-checker security:check": "script"
    },
    "post-install-cmd": [
      "@auto-scripts"
    ],
    "post-update-cmd": [
      "@auto-scripts"
    ]
  },
  "conflict": {
    "symfony/symfony": "*"
  },
  "extra": {
    "symfony": {
      "allow-contrib": false,
      "require": "4.2.*"
    }
  }
}

Upvotes: 4

Views: 10455

Answers (3)

Bouky Men
Bouky Men

Reputation: 11

on the bash linux typing :php -v result

apres aller voir /etc/php/<version>/mods-available in the file ctype.ini or other unrecognized extension: put the extension=name.so

like :

Upvotes: 1

Rana Nadeem
Rana Nadeem

Reputation: 1225

Just enable this in php.ini file by removing ; if there is at the start of the line. That should be like this: enter image description here

you can find it on XAMPP in this way: enter image description here

Upvotes: 1

Mke Nt
Mke Nt

Reputation: 105

Look at this solution : https://stackoverflow.com/a/54686959/11505413

Delete this line in your composer.json :

"require": {
"ext-http": "*"
}

Do a :

composer install

then :

composer update

Upvotes: 5

Related Questions