Can't install, always returns to welocme screen

BitSoft

New Member
hi,

i can't install mailwizz, after i click on Next button on welcome page it returns me again to welcome page but it should proceed to requirments, there is no error (if i enter wrong licence key i have errror that key is wrong)
 
Hi,

This usually happens when PHP cannot save it's session info, usually because the folder that suppose to hold the session isn't writable by the web server.

You can create an empty php file on your server with following contents:
PHP:
<?php phpinfo();?>
Then save it and access it in the browser. Once it loads, look for the "session.save_path" and see what folder it points to and make sure it's writable (chmod -R 0777) by the web server.

That should do it, let me know if it doesn't.
Thanks.
 
We have one more problem that we dont know how to solve :(, on requirements page everything is green except Zip Archive which is red (Failed), we tried with differrent versions but it doesnt pass, can you send me what package we need to install for zip archive?
 
You need to install php's zip archive extension, there's nothing i can send. Depending on your server software, you can do it either from Cpanel with easy apache, or from command line with yum install php-zip or apt-get install php-zip depending on the linux distro you're using. After you do this, don't forget to restart apache ;)
 
we allready tried that but i doesnt work. we have centos 7 (latest version) which i installed in virtual machine just for sending newsletters
does it need some special version or we are doing something wrong

root@a:/opt/applications/PHP/php-5.6.17>yum install php-zip

Loaded plugins: fastestmirror, langpacks

base | 3.6 kB 00:00:00

epel/x86_64/metalink | 26 kB 00:00:00

epel | 4.3 kB 00:00:00

extras | 3.4 kB 00:00:00

nux-dextop | 2.9 kB 00:00:00

updates | 3.4 kB 00:00:00

epel/x86_64/primary_db FAILED ] 0.0 B/s | 0 B --:--:-- ETA

http://ftp.upjs.sk/pub/mirrors/epel...0ac2fe06911bd62b61c253f7a5d-primary.sqlite.xz: [Errno 14] HTTP Error 404 - Not Found

Trying other mirror.

To address this issue please refer to the below knowledge base article



https://access.redhat.com/articles/1320623



If above article doesn't help to resolve this issue please create a bug on https://bugs.centos.org/



(1/2): epel/x86_64/updateinfo | 477 kB 00:00:00

(2/2): epel/x86_64/primary_db | 3.8 MB 00:00:03

Loading mirror speeds from cached hostfile

* base: mirror.centos.plus.hr

* epel: mirror.vutbr.cz

* extras: mirror.centos.plus.hr

* nux-dextop: mirror.li.nux.ro

* updates: mirror.centos.plus.hr

Package php-common-5.4.16-36.el7_1.x86_64 already installed and latest version

Nothing to do





./configure --with-apxs2=/opt/applications/apache2/bin/apxs --with-curl --with-mysql --with-pdo-mysql --enable-mbstring --enable-zip --with-libzip --with-imap --with-kerberos --with-imap-ssl --with-libzip




root@a:/etc/php.d>ls -ltra

total 100

-rw-r--r--. 1 root root 49 Jan 30 2015 imap.ini

-rw-r--r--. 1 root root 47 Jun 23 2015 zip.ini

-rw-r--r--. 1 root root 47 Jun 23 2015 xsl.ini

-rw-r--r--. 1 root root 59 Jun 23 2015 xmlwriter.ini

-rw-r--r--. 1 root root 59 Jun 23 2015 xmlreader.ini

-rw-r--r--. 1 root root 49 Jun 23 2015 wddx.ini

-rw-r--r--. 1 root root 55 Jun 23 2015 sysvshm.ini

-rw-r--r--. 1 root root 55 Jun 23 2015 sysvsem.ini

-rw-r--r--. 1 root root 55 Jun 23 2015 sysvmsg.ini

-rw-r--r--. 1 root root 55 Jun 23 2015 sqlite3.ini

-rw-r--r--. 1 root root 51 Jun 23 2015 posix.ini

-rw-r--r--. 1 root root 49 Jun 23 2015 phar.ini

-rw-r--r--. 1 root root 61 Jun 23 2015 pdo_sqlite.ini

-rw-r--r--. 1 root root 59 Jun 23 2015 pdo_mysql.ini

-rw-r--r--. 1 root root 47 Jun 23 2015 pdo.ini

-rw-r--r--. 1 root root 51 Jun 23 2015 mysql.ini

-rw-r--r--. 1 root root 53 Jun 23 2015 mysqli.ini

-rw-r--r--. 1 root root 49 Jun 23 2015 json.ini

-rw-r--r--. 1 root root 57 Jun 23 2015 fileinfo.ini

-rw-r--r--. 1 root root 47 Jun 23 2015 dom.ini

-rw-r--r--. 1 root root 49 Jun 23 2015 curl.ini

drwxr-xr-x. 2 root root 4096 Feb 1 13:31 .

drwxr-xr-x. 138 root root 8192 Feb 1 15:20 ..



root@a:/etc/php.d>less zip.ini ; Enable zip extension module extension=zip.so
 
Back
Top