Welcome Guest. Please Login or Register  


You are here: Index > Softaculous Auto Installer > General Support > Topic : softaculous wont work in ispconfig no more



Threaded Mode | Print  

 softaculous wont work in ispconfig no more, used to work no wont (7 Replies, Read 3450 times)
turner123
Group: Member
Post Group: Newbie
Posts: 6
Status:
As per title come back to my ispconfig install and wanted to use my softaculous and 1st it had soap issues then certificate issues noow a blank screen and added whats needed to the ini file to no avail..

using https://domain.com:8080/softaculous blank page

system ubuntu 14.04

isp auto install script
wiki install softaculous
ioncube installed
php 5.6 apache2

iv tried many re installs and os no go here
IP: --   

softaculous wont work in ispconfig no more
turner123
Group: Member
Post Group: Newbie
Posts: 6
Status:
this is what i get all the time

Secure Connection Failed

An error occurred during a connection to "edited-out.com". SSL received a record that exceeded the maximum permissible length. Error code: SSL_ERROR_RX_RECORD_TOO_LONG

    The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
    Please contact the web site owners to inform them of this problem.
IP: --   

softaculous wont work in ispconfig no more
turner123
Group: Member
Post Group: Newbie
Posts: 6
Status:
***SOLVED***

This is what i did to solve the issue with ispconfig and sofaculous not working


1 sudo a2enmod ssl

2 sudo service apache2 restart

3 sudo mkdir /etc/apache2/ssl

4 sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/apache2/ssl/apache.key -out /etc/apache2/ssl/apache.crt

5 answer the questions promted for EG

Country Name (2 letter code) [AU]:US
State or Province Name (full name) [Some-State]:New York
Locality Name (eg, city) []:New York City
Organization Name (eg, company) [Internet Widgits Pty Ltd]:Your Company
Organizational Unit Name (eg, section) [] :D epartment of Kittens
Common Name (e.g. server FQDN or YOUR name) []:your_domain.com
Email Address []:your_email@domain.com

6 sudo nano /etc/apache2/sites-available/default-ssl.conf (delete contents and replave with this filling in the *)

<IfModule mod_ssl.c>
    <VirtualHost _default_:443>
        ServerAdmin admin@example.com*****
        ServerName your_domain.com******
        ServerAlias www.your_domain.com*****
        DocumentRoot /var/www/html
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
        SSLEngine on
        SSLCertificateFile /etc/apache2/ssl/apache.crt
        SSLCertificateKeyFile /etc/apache2/ssl/apache.key
        <FilesMatch "\.(cgi|shtml|phtml|php)$">
                        SSLOptions +StdEnvVars
        </FilesMatch>
        <Directory /usr/lib/cgi-bin>
                        SSLOptions +StdEnvVars
        </Directory>
        BrowserMatch "MSIE [2-6]" \
                        nokeepalive ssl-unclean-shutdown \
                        downgrade-1.0 force-response-1.0
        BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
    </VirtualHost>
</IfModule>

7 sudo a2ensite default-ssl.conf

8 sudo service apache2 restart


Now softaculous will work, seems the self signed certs ispconfig do are not done properly, but i got there in the end!!! and hope it helps someone else like myself who has next to zero it skills.
IP: --   

softaculous wont work in ispconfig no more
aakash_softac
Group: Member
Post Group: Super Member
Posts: 544
Status:
Hi,

Glad to know your issue has been resolved.

-----------------------
Aakash Gupta
SitePad Developer

Follow us for faster updates
Twitter: https://twitter.com/sitepad_editor
Facebook: https://facebook.com/SitePad
IP: --   

softaculous wont work in ispconfig no more
turner123
Group: Member
Post Group: Newbie
Posts: 6
Status:
Well i thought id re trace my steps and back to square one again, i think its the auto installer for ispconfig thats the issue, im going to reinstall again manually and then do the steps again, why isnt it just a simple task to do/get working!.
IP: --   

softaculous wont work in ispconfig no more
turner123
Group: Member
Post Group: Newbie
Posts: 6
Status:
ok again iv managed to get it to work :) i think its the wiki install i was using quick one so reinstalled using the normal one and worked again!!
IP: --   

softaculous wont work in ispconfig no more
turner123
Group: Member
Post Group: Newbie
Posts: 6
Status:
The issue has 100% been fixed now seems to be mysqli issue after update, i could get it working via old installs from 2014 but newest auto install for ispconfig caused it to stop working and wanted to find why, now i have. hope it helps others out.

Quote
[18-Mar-2017 14:20:49 America/New_York] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/mysql.so' - /usr/lib/php5/20121212/mysql.so: undefined symbol: mysqlnd_connect in Unknown on line 0
[18-Mar-2017 14:20:49 America/New_York] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/mysqli.so' - /usr/lib/php5/20121212/mysqli.so: undefined symbol: mysqlnd_connect in Unknown on line 0
[18-Mar-2017 14:20:49 America/New_York] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/soap.so' - /usr/lib/php5/20121212/soap.so: cannot open shared object file: No such file or directory in Unknown on line 0
[18-Mar-2017 14:20:49 America/New_York] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/posix.so' - /usr/lib/php5/20121212/posix.so: cannot open shared object file: No such file or directory in Unknown on line 0
[18-Mar-2017 18:20:49 Etc/UTC] PHP Fatal error:  Class 'mysqli' not found in /usr/local/ispconfig/interface/lib/classes/db_mysql.inc.php on line 31


i ran the command and sorted the probelm
sudo apt-get install php5-mysql
IP: --   

softaculous wont work in ispconfig no more
aakash_softac
Group: Member
Post Group: Super Member
Posts: 544
Status:
Quote From : turner123 March 18, 2017, 6:39 pm
The issue has 100% been fixed now seems to be mysqli issue after update, i could get it working via old installs from 2014 but newest auto install for ispconfig caused it to stop working and wanted to find why, now i have. hope it helps others out.

Quote
[18-Mar-2017 14:20:49 America/New_York] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/mysql.so' - /usr/lib/php5/20121212/mysql.so: undefined symbol: mysqlnd_connect in Unknown on line 0
[18-Mar-2017 14:20:49 America/New_York] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/mysqli.so' - /usr/lib/php5/20121212/mysqli.so: undefined symbol: mysqlnd_connect in Unknown on line 0
[18-Mar-2017 14:20:49 America/New_York] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/soap.so' - /usr/lib/php5/20121212/soap.so: cannot open shared object file: No such file or directory in Unknown on line 0
[18-Mar-2017 14:20:49 America/New_York] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php5/20121212/posix.so' - /usr/lib/php5/20121212/posix.so: cannot open shared object file: No such file or directory in Unknown on line 0
[18-Mar-2017 18:20:49 Etc/UTC] PHP Fatal error:  Class 'mysqli' not found in /usr/local/ispconfig/interface/lib/classes/db_mysql.inc.php on line 31


i ran the command and sorted the probelm
sudo apt-get install php5-mysql


Hi,

I think you missed the common issue part in Softaculous Documentation for installing Softaculous on ISPCONFIG

http://softaculous.com/docs/Installing_Softaculous_in_ISPConfig#Common_Issue

Quote

Common Issue
Blank Page is displayed when Softaculous is accessed.
Problem : PHP Extension mysql and mysql.so is not loaded by Softaculous
Solution: Append the following lines in /usr/local/softaculous/php.ini

extension=mysql.so
extension=mysqli.so
extension=curl.so
extension=soap.so
extension=posix.so
extension=json.so


-----------------------
Aakash Gupta
SitePad Developer

Follow us for faster updates
Twitter: https://twitter.com/sitepad_editor
Facebook: https://facebook.com/SitePad
IP: --   

« Previous    Next »

Threaded Mode | Print  



Jump To :


Users viewing this topic
1 guests, 0 users.


All times are GMT. The time now is March 28, 2024, 9:42 pm.

  Powered By AEF 1.0.8 © 2007-2008 Electron Inc.Queries: 11  |  Page Created In:0.022