• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

Cron Error in V4

Version
4.0.7
PHP version
8.1
Database driver
MariaDB
Database version
10.3.38-MariaDB
Web browser
Google Chrome

PiczCrazy

Chevereto Member
Hi,
When I try to run Cron am getting the below error, can any one help me to resolve this.

TypeError thrown in /public_html/app/vendor/symfony/polyfill-mbstring/Mbstring.php:116

# Message
iconv(): Argument #3 ($string) must be of type string, array given

# Incident ID:64196dabe3d07

# Time
2023-03-21T08:41:15+00:00 [1679388075]

# Stack trace
------------------------------------------------------------
#0 /public_html/app/vendor/symfony/polyfill-mbstring/Mbstring.php:116
{main}()
------------------------------------------------------------
#1 /public_html/app/vendor/symfony/polyfill-mbstring/Mbstring.php:116
iconv()
------------------------------------------------------------
#2 /public_html/app/vendor/symfony/polyfill-mbstring/bootstrap80.php:15
Symfony\Polyfill\Mbstring\Mbstring::mb_convert_encoding()
------------------------------------------------------------
#3 /public_html/app/src/Encryption/functions.php:108
mb_convert_encoding()
------------------------------------------------------------
#4 /public_html/app/src/Legacy/Classes/Settings.php:447
Chevereto\Encryption\decryptValues()
------------------------------------------------------------
#5 /public_html/app/src/Legacy/functions.php:1052
Chevereto\Legacy\Classes\Settings->__construct()
------------------------------------------------------------
#6 /public_html/app/legacy/entrypoints/cli.php:45
Chevereto\Legacy\loaderHandler()
------------------------------------------------------------
#7 /public_html/app/bin/legacy:13
require_once(string(length=51))
------------------------------------------------------------


Unable to use XR Debug at /public_html/app/legacy/load/register-handlers.php:52: Function curl_close is not available
 
I would guess you are missing php MBstring extension? since file error is pointing to is MBstring.php, so make sure that extension is enabled on your php version.

Att the bottom it says Function curl_close is not available, so it possible could be due to you not having curl extension enabled instead.

Open the specific php.ini that your php version uses and look under Extension secton for php_curl.so (for linux) or php_curl.dll (for windows)

Same for the mbstring but it is php_mbstring.so / php_mbstring.dll, so make sure both mbstring and curl is enabled.
 
Back
Top