Plesk 12.x / Linux :: Possible To Install To Debian Jessie With Auto-install Script?

Jul 19, 2015

Is it possible to install Plesk 12 to Debian Jessie with the autoinstall script?

View 7 Replies


ADVERTISEMENT

Plesk 12.x / Linux :: How To Install With Auto-installer CentOS

Sep 3, 2014

couldn't find any installation guide by Paralles how to install Plesk12 step by step. Found some on the internet, got the webinstaller started, but it says I should visit "192.168.0.100:8447" in my browser, which is just the internal IP of the server. Now I don't know what to do now, it's a fresh installed CentOS 6.5

View 6 Replies View Related

PhpMyAdmin On Debian - Install

Jun 4, 2007

I just upgraded to Debian from RedHat, but I'm a little lost trying to get phpMyAdmin working. Below is a snapshot of my config.

I'm sure I'm missing something.

looks like I have the packages...

debianlinux [/root] # dpkg -l | grep php
ii libapache-mod-php5 5.2.0-8+etch4
ii libapache2-mod-php4 4.4.4-8+etch2
ii php4-common 4.4.4-8+etch2
ii php5-common 5.2.0-8+etch4
ii php5-gd 5.2.0-8+etch4
ii php5-mcrypt 5.2.0-8+etch4
ii php5-mysql 5.2.0-8+etch4
ii phpmyadmin 2.9.1.1-3

am I missing any apache modules?

debianlinux [/etc/apache2] # apache2ctl -t -D DUMP_MODULES
Loaded Modules:
core_module (static)
log_config_module (static)
logio_module (static)
mpm_prefork_module (static)
http_module (static)
so_module (static)
alias_module (shared)
auth_basic_module (shared)
authn_file_module (shared)
authz_default_module (shared)
authz_groupfile_module (shared)
authz_host_module (shared)
authz_user_module (shared)
autoindex_module (shared)
cgi_module (shared)
dir_module (shared)
env_module (shared)
mime_module (shared)
python_module (shared)
negotiation_module (shared)
perl_module (shared)
php4_module (shared)
setenvif_module (shared)
status_module (shared)
Syntax OK

here is my short and sweet apache2.conf

debianlinux [/etc/apache2] # cat apache2.conf
ServerRoot "/etc/apache2/"
ServerName debianlinux
LockFile /var/lock/apache2/accept.lock
PidFile /var/run/apache2.pid
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>
<IfModule mpm_worker_module>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
User apache2
Group apache2
AccessFileName .htaccess
<Files ~ "^.ht">
Order allow,deny
Deny from all
</Files>
TypesConfig /etc/mime.types
DefaultType text/plain
HostnameLookups Off
ErrorLog /var/log/apache2/error.log
LogLevel warn
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf
Include /etc/apache2/ports.conf
Include /etc/apache2/conf.d/
LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
LogFormat "%h %l %u %t "%r" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
ServerSignature Off
<IfModule alias_module>
Alias /icons/ "/usr/share/apache2/icons/"
<Directory "/usr/share/apache2/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</IfModule>
<IfModule mod_autoindex.c>
IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*
DefaultIcon /icons/blank.gif
ReadmeName README.html
HeaderName HEADER.html
IndexIgnore .??* *~ *# RCS CVS *,v *,t
</IfModule>
<IfModule mod_mime.c>
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
<IfModule mod_mime.c>
AddCharset us-ascii .ascii .us-ascii
AddCharset ISO-8859-1 .iso8859-1 .latin1
AddHandler type-map var
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
</IfModule>
Include /etc/apache2/sites-enabled/
Include /etc/phpmyadmin/apache.conf

I can hit my default site okay, which in in /root (for testing)

debianlinux [/etc/apache2/sites-available] # cat default
NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /root/public_html/
<Directory /root/public_html/>
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /root/public_html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>

what about phpMyAdmin configuration?

debianlinux [/etc/phpmyadmin] # ls -la
total 44
drwxr-xr-x 2 root root 4096 2007-06-02 06:54 .
drwxr-xr-x 72 root root 4096 2007-06-03 10:59 ..
-rw-r--r-- 1 root root 654 2007-06-02 06:34 apache.conf
-rw-r--r-- 1 root root 205 2007-06-02 06:35 apache.conf.beta
-rw-r----- 1 root www-data 63 2007-05-29 05:39 blowfish_secret.inc.php
-rw-r--r-- 1 root root 170 2007-05-29 05:39 config.footer.inc.php
-rw-r--r-- 1 root root 170 2007-05-29 05:39 config.header.inc.php
-rw-r--r-- 1 root root 5943 2007-05-29 05:39 config.inc.php
-rw-r--r-- 1 root root 1542 2007-06-02 06:35 htaccess
-rw-r----- 1 root www-data 8 2007-05-29 05:39 htpasswd.setup

here is contents of config.inc.php

<?php
$i = 0;
$i++;
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
?>

all the phpmyadmin files are in /usr/share/phpmyadmin - any config tasks here?

View 8 Replies View Related

Phpmyadmin Install On DEBIAN

Mar 2, 2007

This should be a routine walk in the park job for me but for some reason this time the phpmyadmin installation on debian is giving me so much trouble. I have installed it numerous times with no issues.

I am trying phpmyadmin installation the usual way, "apt-get install phpmyadmin" but no matter what I do I keep getting "500 Internal Server Error".

My mysql server has a root password.

I know debian well and they wont put a package up which has not been tested well so I am surprised phpmyadmin is not working properly on the basic installation.

I have been trying to make it work for 3 days now and as a last resort I am coming here to see if someone can shed some light on the issue.

View 4 Replies View Related

PHP Mail() On Default Debian Install

Jul 6, 2009

We recently installed a fresh copy of Debian and PHP, however mail() doesn't want to send any emails, despite being enabled in php.ini etc.

Someone told me mail() will not work straight out of the box with a new Debian setup.

View 3 Replies View Related

Plesk 12.x / Linux :: How To Install PHP 5.2

Jul 21, 2014

Easy way to install 5.2 with plesk i try all old threads but these not working ....

View 2 Replies View Related

Plesk 12.x / Linux :: How To Install Php 5.5

Dec 20, 2014

I wanna know How to install php 5.5 in my Plesk 12 CentOs 6

View 4 Replies View Related

Plesk 12.x / Linux :: How To Install APC

Dec 19, 2014

I am using Plesk for my website and I want speed it little bit so I wanna install an APC without screwing everything.

View 16 Replies View Related

Plesk 11.x / Linux :: How To Install 11.5.30

Feb 15, 2015

I am trying to install Plesk 11.5.30...I have downloaded the autoinstaller to my CentOS 7 server:

# wget http://autoinstall.plesk.com/plesk-installer
#chmod +x plesk-installer
#./plesk-installer --all-versions
I have also tried:
# ./plesk-installer --select-release-id PLESK_11_5_30

But i only get options from Plesk 12.0.18 to 12.1.15. I should run /usr/local/psa/admin/sbin/autoinstaller --all-versions to install older versions of Plesk, but when i run this the file does not exist.How do i install Plesk 11.5.30?

View 2 Replies View Related

Plesk 12.x / Linux :: How To Install CloudFlare For PA 3.0.2

Nov 3, 2014

I'am partner with cloudflare I have the follow question:

As my subject says how can I install cloudflare for PA? (I already install the addon extension ServerShield Plus by CloudFlare) but pretend install CloudFlare for PA [URL] ....

Where I can get:
[URL] ....
POA IP, POA API, etc?

View 7 Replies View Related

Plesk 12.x / Linux :: Select PHP 5.6 After Install

Dec 8, 2014

I have installed PHP 5.6 following this guide (enabling php 5.6 in remi) but I can't select the new version of PHP from hosting settings page in domain administration. What is ionCube?

View 5 Replies View Related

Plesk 11.x / Linux :: How To Install OpenProject On 11.5

Dec 10, 2014

How can I install OpenProject on Plesk 11.5 (Debian 7.7) without problems? How to add vhost for OpenProject and keep running my other websites?

[URL] ....

View 3 Replies View Related

Plesk 12.x / Linux :: How To Install Mcrypt For PHP

Nov 5, 2014

I would like to know the process to activate or install mcrypt module on my php ?

I'm on
OS Ubuntu 10.04.3 LTS
Plesk 12.0.18

View 2 Replies View Related

Plesk 12.x / Linux :: Can't Install On OpenSUSE 13.1

Jul 2, 2014

I get the following error:

===> Checking for the necessary system accounts
Checking for the system groups and users necessary for MySQL...
Checking for the group ''...
Trying to add group ''... groupadd: '' is not a valid group name

ERROR while trying to add group ''Click to expand...

View 7 Replies View Related

Plesk 11.x / Linux :: How To Install FFMPEG

May 24, 2014

How do I install FFMPEG on Pleslk 11.5?

View 1 Replies View Related

Plesk 12.x / Linux :: Install Joomla Via XML-RPC API

Aug 18, 2014

I trying to install Joommla via XML-RPC API. (Plesk version : 12.0.18 Update #13 - API version : 1.6.6.0)

Here are my methods
1. get Package list
2. download package
3. install package

if I try with Wordpress, I don't have any problems.

With Joomla : step 2 : I've got this message in log file :
ERR [panel] Error during package add to repository: Add-ons for APS packaged web apps are not supported.
ERR [apscatalog] Error during downloading package from APS Catalog: Add-ons for APS packaged web apps are not supported.
ERR [panel] Task failed: id=95, pid=21231, type=aps-download, error=Add-ons for APS packaged web apps are not supported.

If I install via http admin interface, install works.

View 4 Replies View Related

Plesk 11.x / Linux :: Install Two Versions Of PHP?

Jul 21, 2014

I tried to install an additional version of PHP followuing this guide [URL] .....

But when i launch this command (the same of the guide but I substitute "php540" with "php55") I retrive the following error:

./configure '--with-libdir=lib64' '--cache-file=../config.cache' '--prefix=/usr/local/php55-cgi' '--with-config-file-path=/usr/local/php55-cgi/etc' '--disable-debug' '--with-pic' '--disable-rpath' '--enable-fastcgi' '--with-bz2' '--with-curl' '--with-freetype-dir=/usr/local/php55-cgi' '--with-png-dir=/usr/local/php55-cgi' '--enable-

[Code]....

View 3 Replies View Related

Plesk 12.x / Linux :: Wordpress Scan Not Seeing Install Of 4.1.1?

Apr 1, 2015

So I have a client using Wordpress 3.6, so the scan does little good.

I update the Wordpress to 4.1.1 and do the Scan again. Plesk cannot find the updated install of WP still?

View 5 Replies View Related

Plesk 12.x / Linux :: Unable To Install Magicspam

Oct 7, 2014

When trying to install magicspam (magicspam-plesk-1.0.8-1.1-precise64-postfix.amd64.deb) in the extensions management I get the following error: Error: Unable to install the extension: Unable to install the module package file

OSUbuntu 12.04.5 LTS
Plesk version12.0.18 Update #18, last updated at Oct 7, 2014 02:05 AM

The previous update of magicspam with version 1.0.6 worked fine. There were no changes to the system except the Plesk updates.

View 4 Replies View Related

Plesk 12.x / Linux :: How To Install MagicSpam On Centos 7 X64

Aug 22, 2014

We purchased license for MagicSpam and now couldn't find anywhere installation for Centos 7...How to install?

View 2 Replies View Related

Plesk 12.x / Linux :: Wordpress Install Error?

Mar 10, 2015

HTTP Error (404)

[URL] ....

This is the error I get when trying to install wordpress

View 10 Replies View Related

Plesk 12.x / Linux :: Unable To Install Joomla App

Sep 5, 2014

I have installed this several times on my server without issue and 24 hours after setting up one successfully I am no longer able to install any. Upon installation I keep getting this error message and to my knowledge nothing has been changed with the setup of the server.

Code:
Error: Installation of joomla at http://webaddress.co.uk/httpdocs failed. Non-zero exit status returned by script. Output stream: 'PHP Warning: fopen(/var/www/vhosts/webaddress.co.uk/httpdocs/httpdocs//configuration.php): failed to open stream: No such file or directory in /usr/local/psa/var/apspackages/apscataloggi4T1a.zip93a52a9b-e8bb-df/cache/scripts/file-util.php on line 15 '. Error stream: 'PHP Warning: fopen(/var/www/vhosts/webaddress.co.uk/httpdocs/httpdocs//configuration.php): failed to open stream: No such file or directory in /usr/local/psa/var/apspackages/apscataloggi4T1a.zip93a52a9b-e8bb-df/cache/scripts/file-util.php on line 15 '.

View 4 Replies View Related

Plesk 11.x / Linux :: Error When Install Horde With 11.5.30?

May 11, 2014

I'm facing a problems with my plesk 11.5.30 (latest update with CentOS 6.x).

One subscription can't switch between horde and round-cube. When they change to round-cube, it's still running Horde. To solve this problems, I tried remove Horde (everything's fine, successful) and install it again (error).

View 9 Replies View Related

Plesk 12.x / Linux :: Can Install Imagemagick On Centos 6.5

Dec 10, 2014

Can i install imagemagick on centos 6.5 with this commands?

ImageMagick:

[root@server ~]# yum install ImageMagick
[root@server ~]# yum install ImageMagick-devel

PHP-imagick:
[root@server ~]# yum install gcc (Please note: if it is already installed, then it will be updated if required)
[root@server ~]# yum install make automake
[root@server ~]# yum install php-pear
[root@server ~]# yum install php-devel
[root@server ~]# pecl install imagick

Now you will have to add the imagick extension in your PHP condifuration file:[root@server ~]# cd /etc/php.d/[root@server ~]# nano -w imagick.ini

Then you put following line in that file:extension = “imagick.so”..And save it with <CTRL> <O>After finishing this, you will have to restart Apache as follows: [root@server ~]# service httpd restart

View 4 Replies View Related

Plesk 12.x / Linux :: Upgrade And Install Won't Work

Nov 19, 2014

I can't install or remove anything. when i click on continue it's just refreshes the page and come backs to the list.

I have checked error log and the latest error log is ERR [panel] Specified column "isAllowed1 is not in the row.

And i don't think this error related to the problem. When I click on continue it does not create any line in the error log.

View 10 Replies View Related

Plesk 12.x / Linux :: Can't Install Magento Application

May 19, 2015

When I try to install Magento 1.9.1.1 I get the error message;Error: Installation of magento at http://mydomain.com/ failed. Non-zero exit status returned by script.Can't seem to get any more information into what might be causing this issue...

View 2 Replies View Related

Plesk 12.x / Linux :: Possible To Install And Run On Google App Engine?

Aug 27, 2014

Is it possible to install and run Plesk on Google App Engine? If so, could you point me to some appropriate documentation? If not, what about Google Compute Engine?

View 1 Replies View Related

Plesk 12.x / Linux :: FTP Login Error 530 After Install

Nov 8, 2014

I just finished installing Plesk Panel 12. I seems like that everything is working as it should, except for FTP. I am not able to login with any FTP accounts.

View 13 Replies View Related

Plesk 12.x / Linux :: How To Install Ffmpeg On Server

Sep 12, 2014

I have server with the Plesk control panel on Linux server and want to install ffmpeg + MPlayer + LAME + FLVtool2 + MediaInfo + Mencoder + MP4Box + neroAacEnc , but not sure about the steps to install it. Is there any script or easy steps to install ffmpeg + MPlayer + LAME + FLVtool2 + MediaInfo + Mencoder + MP4Box + neroAacEnc on my server.

View 1 Replies View Related

Plesk 12.x / Linux :: Cannot Install Version 12.0.18 On CentOS 6.6

Dec 5, 2014

I have new Linux server with CentOS 6.6 on it. I have tried to install Plesk version 12.0.18 on it.

During installation process from http://autoinstall.plesk.com/plesk-installer shell script I'm getting error:
START Bootstrapper 12.0.18 prep-install for BASE AT Fri Dec 5 19:09:44 CST 2014
***** problem report *****
ERROR while trying to SMB database not created
Check the error reason(see log file: /var/log/plesk/install/plesk_12.0.18_installation.log), fix and try again
STOP Bootstrapper 12.0.18 prep-install for BASE AT Fri Dec 5 19:10:01 CST 2014: PROBLEMS FOUND
START Bootstrapper 12.0.18 prep-install for BASE AT Fri Dec 5 19:15:46 CST 2014

When I have tried to run command:

# /usr/local/psa/bootstrapper/pp12.0.18-bootstrapper/bootstrapper.sh repair

I'm getting errors:

---TRANSACTION 0 0, not started, process no 32603, OS thread id 139715979196160
MySQL thread id 38, query id 7054 localhost admin
SHOW ENGINE innodb status
--------
FILE I/O
--------
I/O thread 0 state: waiting for i/o request (insert buffer thread)

[Code] ....

View 10 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved