Here are some ideas on what to try...
By the way, you have updated this line in your config.php file, correct?:
https://resources.phplist.com/system/my ... qli-updateEven though it is possible to re-use the old config.php, you should use the new version that came with 3.0.12, and edit it with the settings from your old config.php
#1: This may not work, in that the system uses cookies and session tokens, so you might need to provide those on the http url... (this is done by using a script to submit a url, read the cookie and session token, and then use them to construct the 'use once' url.
#2: Your a. Zend Engine (php) is out of date and needs to be updated.
b. the timezone settings between the php/apache and the database need to be updated/synced. Try loading this plugin to fix:
https://resources.phplist.com/plugin/timezoneyou have a mix of 'filesystem path' and 'website path' on this... you would want to use the file system path only, for example:
/usr/bin/php -q /var/www/
http://lista.midominio.com/admin/index.php -p processqueue -c /var/www/
http://lista.midominio.com/config/config.php
change to:
/usr/bin/php -q /var/www
/html/lists/index.php -p processqueue -c /var/www
/html/lists/config/config.php
you would need to verify the
/html/lists/ path, or change that to match the full file system path on your system (this is where the different hosting services vary, and it varies by the hosting service vendor, the type of computer you specify, and the type of account you have).
Here's a specific example of what works on my server:
/usr/bin/php -q /var/www/html/lists/admin/index.php -p processqueue -c /var/www/html/lists/config/config.php
#3: I see these kinds of messages when using /usr/bin/php on the commandline, but I should be using /usr/bin/php-cli