Current time: 05-06-2024, 08:57 AM Hello There, Guest! (LoginRegister)


Post Reply 
Problem to install IspCP ubuntu 8.04 LTS
Author Message
deepy Offline


Posts: 3
Joined: Sep 2010
Reputation: 0
Post: #1
Problem to install IspCP ubuntu 8.04 LTS
Hex when i try to run the setup there comes this error:

root@h1787635:/var/www/ispcp/engine/setup# perl ispcp-setup
Can't locate File/MimeInfo/Magic.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at ispcp-setup line 40.
BEGIN failed--compilation aborted at ispcp-setup line 40.

i also did what is written here:

http://isp-control.net/forum/thread-8938.html

Thank you for help a lot
09-04-2010 06:52 PM
Find all posts by this user Quote this message in a reply
RatS Offline
Project Leader
******

Posts: 1,854
Joined: Oct 2006
Reputation: 17
Post: #2
RE: Problem to install IspCP ubuntu 8.04 LTS
the messages says that you don't have libperl-file-mimeinfo installed. The installation should solve your problem.
09-04-2010 08:06 PM
Visit this user's website Find all posts by this user Quote this message in a reply
deepy Offline


Posts: 3
Joined: Sep 2010
Reputation: 0
Post: #3
RE: Problem to install IspCP ubuntu 8.04 LTS
mhh installation works successfully i think i get this messages:

Module php4 does not exist!
Module php5 already disabled
This module is already enabled!
Module ispcp_fastcgi does not exist!
This module is already enabled!
Module fcgid already disabled
This module is already enabled!
Module fastcgi disabled; run /etc/init.d/apache2 force-reload to fully disable.
This module is already enabled!
This module is already enabled!
This site is already enabled!
System startup links for /etc/init.d/ispcp_daemon already exist.
System startup links for /etc/init.d/ispcp_network already exist.
Site 000-default does not exist!
This site is already enabled!
-en Setting GUI Permissions:
.... done
Setting Engine Permissions: .. done

Starting services: ...........

Congratulations you installed ispCP '1.0.6 OMEGA' successfully!

Please type http://h1787635.stratoserver.net in your browser and
log in with your Administrator Account to use ispCP.

if i try to open http://h1787635.stratoserver.ne i get a download which the following php content:

<?php
/**
* ispCP ω (OMEGA) a Virtual Hosting Control System
*
* @copyright 2001-2006 by moleSoftware GmbH
* @copyright 2006-2010 by ispCP | http://isp-control.net
* @version SVN: $Id: index.php 2599 2010-02-11 15:08:57Z benedikt $
* @link http://isp-control.net
* @author ispCP Team
*
* @license
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is "VHCS - Virtual Hosting Control System".
*
* The Initial Developer of the Original Code is moleSoftware GmbH.
* Portions created by Initial Developer are Copyright © 2001-2006
* by moleSoftware GmbH. All Rights Reserved.
* Portions created by the ispCP Team are Copyright © 2006-2010 by
* isp Control Panel. All Rights Reserved.
*/

require 'include/ispcp-lib.php';

if (isset($_GET['logout'])) {
unset_user_login_data();
}

do_session_timeout();

init_login();

if (isset($_POST['uname'])
&& isset($_POST['upass'])
&& !empty($_POST['uname'])
&& !empty($_POST['upass'])) {

$uname = encode_idna($_POST['uname']);

check_input(trim($_POST['uname']));
check_input(trim($_POST['upass']));

if (register_user($uname, $_POST['upass'])) {
redirect_to_level_page();
}

user_goto('index.php');
}

if (check_user_login() && !redirect_to_level_page()) {
unset_user_login_data();
}

shall_user_wait();

$theme_color = isset($_SESSION['user_theme'])
? $_SESSION['user_theme']
: Config::get('USER_INITIAL_THEME');

$tpl = new pTemplate();

if ((Config::get('MAINTENANCEMODE')
|| databaseUpdate::getInstance()->checkUpdateExists()
|| criticalUpdate::getInstance()->checkUpdateExists())
&& !isset($_GET['admin'])) {

$tpl->define_dynamic('page', Config::get('LOGIN_TEMPLATE_PATH') . '/maintenancemode.tpl');
$tpl->assign(
array(
'TR_PAGE_TITLE' => tr('ispCP Omega a Virtual Hosting Control System'),
'THEME_COLOR_PATH' => Config::get('LOGIN_TEMPLATE_PATH'),
'THEME_CHARSET' => tr('encoding'),
'TR_MESSAGE' => nl2br(Config::get('MAINTENANCEMODE_MESSAGE')),
'TR_ADMINLOGIN' => tr('Administrator login')
)
);

} else {

$tpl->define_dynamic('page', Config::get('LOGIN_TEMPLATE_PATH') . '/index.tpl');

$tpl->assign(
array(
'TR_MAIN_INDEX_PAGE_TITLE' => tr('ispCP Omega a Virtual Hosting Control System'),
'THEME_COLOR_PATH' => Config::get('LOGIN_TEMPLATE_PATH'),
'THEME_CHARSET' => tr('encoding'),
'TR_LOGIN' => tr('Login'),
'TR_USERNAME' => tr('Username'),
'TR_PASSWORD' => tr('Password'),
'TR_LOGIN_INFO' => tr('Please enter your login information'),
// @todo: make this configurable by ispcp-lib
'TR_SSL_LINK' => isset($_SERVER['HTTPS']) ? $_SERVER['HTTPS'] . 'http://' . htmlentities($_SERVER['HTTP_HOST']) : 'https://' . htmlentities($_SERVER['HTTP_HOST']),
'TR_WEBMAIL_SSL_LINK' => "webmail",
'TR_FTP_SSL_LINK' => "ftp",
'TR_PMA_SSL_LINK' => "pma",
'TR_SSL_IMAGE' => isset($_SERVER['HTTPS']) ? 'lock.png' : 'unlock.png',
'TR_SSL_DESCRIPTION' => !isset($_SERVER['HTTPS']) ? tr('Secure Connection') : tr('Normal Connection')
)
);

}

if (Config::get('LOSTPASSWORD')) {
$tpl->assign('TR_LOSTPW', tr('Lost password'));
} else {
$tpl->assign('TR_LOSTPW', '');
}

$tpl->define_dynamic('page_message', 'page');
gen_page_message($tpl);

$tpl->parse('PAGE', 'page');
$tpl->prnt();

if (Config::get('DUMP_GUI_DEBUG')) {
dump_gui_debug();
}

and if i try to open server /iscp/gui/index.php i get error 404 with the iscp error site
With IE 8 i get Internal Server error 500
what can i do then?
(This post was last modified: 09-05-2010 06:40 AM by deepy.)
09-05-2010 05:23 AM
Find all posts by this user Quote this message in a reply
kilburn Offline
Development Team
*****
Dev Team

Posts: 2,182
Joined: Feb 2007
Reputation: 34
Post: #4
RE: Problem to install IspCP ubuntu 8.04 LTS
Installation means correctly following the ubuntu installation guide, not just running "ispcp-setup". Please clean your system and retry the full instalation procedure, making sure to not skip any step.

Additionally, you don't have to apply the "1.0.3-1" patch you linked to a current 1.0.6 release!
09-05-2010 10:45 AM
Visit this user's website Find all posts by this user Quote this message in a reply
deepy Offline


Posts: 3
Joined: Sep 2010
Reputation: 0
Post: #5
RE: Problem to install IspCP ubuntu 8.04 LTS
ok setup worked fine now and i can also open the ispcp frontend. but if i'm trying to add an user it works fine. but i cannot switch to it:

tld's account status is not ok!

if i look for the details i see in the domain status:

Addition in progress.

what can i do then?
09-05-2010 06:28 PM
Find all posts by this user Quote this message in a reply
kilburn Offline
Development Team
*****
Dev Team

Posts: 2,182
Joined: Feb 2007
Reputation: 34
Post: #6
RE: Problem to install IspCP ubuntu 8.04 LTS
There are two possible causes for this problem:

1. ispcp-daemon is not running on your system. Check it with "netstat -tlnp". If it isn't running, try to start it and see if it gives any problem. Once restarted, login as admin and go to "tools->ispcp debugger" and click "execute requests".

2. The domain creation failed for some reason. See the error by logging in to pma as root and checking the "status" field of the corresponding domain from the "domains" table. Paste the error here so we can further diagnose.
09-05-2010 06:37 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)