• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

ZIP PHP extension: Not loaded

RedeemMc

New Member
Joined
Feb 7, 2023
Messages
3
Reaction score
1
Ive been having this priblem since i started in this world of the otserv. I cannot install myacc because of this problem. I have look for a solution but nothing has worked yet.

Share mi php.ini and the Myacc screenshot.

1675840897552.png





extension=bz2
extension=curl
;extension=ffi
;extension=ftp
extension=fileinfo
;extension=gd
extension=gettext
;extension=gmp
;extension=intl
;extension=imap
;extension=ldap
extension=mbstring
extension=exif ; Must be after mbstring as it depends on it
extension=mysqli
;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
;extension=oci8_19 ; Use with Oracle Database 19 Instant Client
;extension=odbc
;extension=openssl
;extension=pdo_firebird
extension=pdo_mysql
;extension=pdo_oci
;extension=pdo_odbc
;extension=pdo_pgsql
extension=pdo_sqlite
;extension=pgsql
;extension=shmop

; The MIBS data available in the PHP distribution must be installed.
; See PHP: Installation - Manual (https://www.php.net/manual/en/snmp.installation.php)
;extension=snmp

;extension=soap
;extension=sockets
;extension=sodium
;extension=sqlite3
;extension=tidy
;extension=xsl
;extension=zip


;zend_extension=opcache

;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
asp_tags=Off
display_startup_errors=On
track_errors=Off
y2k_compliance=On
allow_call_time_pass_reference=Off
safe_mode=Off
safe_mode_gid=Off
safe_mode_allowed_env_vars=PHP_
safe_mode_protected_env_vars=LD_LIBRARY_PATH
error_log="D:\Xampp\php\logs\php_error_log"
register_globals=Off
register_long_arrays=Off
magic_quotes_gpc=Off
magic_quotes_runtime=Off
magic_quotes_sybase=Off
extension=php_openssl.dll
extension=php_ftp.dll





NEED HELP!!!
 
Hi Slaw, thank you for your answer. But that didn't work as well. The solution I've found is to download the Xampp Version 7.14, and then the AAC installation went smooth as butter.

The newest version of xampp give the php error for some reason.
 
Not the only one, here is the solution.

You can simply solve this issue 'As of PHP 8.2.0, php_zip.dll DLL must be enabled in php.ini. Previously, this extension was built-in.'

Follow these steps:


First open Xampp control panel and then in Xampp control panel click on 'config > php.ini' change this and save.

from:

;extension=zip

to:

extension=zip

Now your problem will be solved! You don't need to download and extract 'php_zip.dll' If it is working for you, please let me know.
 
Not the only one, here is the solution.

You can simply solve this issue 'As of PHP 8.2.0, php_zip.dll DLL must be enabled in php.ini. Previously, this extension was built-in.'

Follow these steps:


First open Xampp control panel and then in Xampp control panel click on 'config > php.ini' change this and save.

from:

;extension=zip

to:

extension=zip

Now your problem will be solved! You don't need to download and extract 'php_zip.dll' If it is working for you, please let me know.
this worked wonders! +1
 
Back
Top