hola buen día gente,
acabo de actualizar de la versión 1.15.8 a v.16.3 y me falta activar estas extensiones PHP,
me pueden indicar como activarlo por favor,
adjunto lo que tengo en el archivo php.ini


gracias por su apoyo,

  • KevinTheJedi replied to this.
  • encontre las lineas para agregar a php.ini,
    las dejo para si alguien les sirve,

    extension=gd
    extension=php_apcu.dll

    lusho05

    For APCu and GDlib you need to install those extensions. Once they are installed they should be added to the php.ini file. If not you can add a line and save changes. You may also need to restart Apache for the changes to take effect.

    Also, fix_pathinfo is only really needed for IIS users so you can ignore this one.

    Cheers.

      lusho05

      It varies for each environment so you will be better off doing some research on your specific environment.

      However for gdlib it should be the gd line; so change:

      ;extension=gd

      to:

      extension=gd

      ... and for acpu it might be something like:

      extension=pecl_apcu

      Cheers.

      encontre las lineas para agregar a php.ini,
      las dejo para si alguien les sirve,

      extension=gd
      extension=php_apcu.dll

      both of those should have .dll on them since you are running windows.

      extension=gd.dll
      extension=php_apcu.dll

      Write a Reply...