Requirement Settings issue

On my dashboard audit, I'm getting the following errors:

allow_url_fopen = Off - FAIL (must be = On)

rewrite_module - FAIL (you will need to install rewrite_module for Apache)

php module: zip - FAIL (must be module zip)

HOWEVER, The server settings are all on:

allow_url_fopen = Off - FAIL (must be = On) >> is enabled.

++++++++++++++++++++++++++++++++++++++++++++++++++++
php module: zip - FAIL (must be module zip)

[root@server ~]# php -m|grep zip
zip
[root@server ~]#
++++++++++++++++++++++++++++++++++++++++++++++++++++

rewrite_module - FAIL (you will need to install rewrite_module for Apache)

[root@server ~]# httpd -M |grep rew
rewrite_module (shared)
[root@server ~]#
++++++++++++++++++++++++++++++++++++++

Any other reason why I would get these errors?

  • 727
  • More
Replies (1)
    • Hello Devin Young !

      All these messages indicate the real misconfiguration of your server to work correctly with UNA.

      allow_url_fopen = Off - FAIL (must be = On) this message show that allow_url_fopen parameter has the wrong Off value. You need to switch it to On. The same story with other settings. Only rewrite_module - FAIL may be wrong because it's hard to detect its installation with PHP tools.

      Login or Join to comment.