Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lolo888
ISPConfig 3
Commits
6444a957
Commit
6444a957
authored
16 years ago
by
tbrehm
Browse files
Options
Downloads
Patches
Plain Diff
Installation instructions updated. Fixed a fedora specific bug in update script.
parent
0711af04
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
INSTALL_FEDORA_9.txt
+2
-14
2 additions, 14 deletions
INSTALL_FEDORA_9.txt
INSTALL_OPENSUSE_11.txt
+2
-15
2 additions, 15 deletions
INSTALL_OPENSUSE_11.txt
install/update.php
+13
-13
13 additions, 13 deletions
install/update.php
with
17 additions
and
42 deletions
INSTALL_FEDORA_9.txt
+
2
−
14
View file @
6444a957
...
...
@@ -149,8 +149,6 @@ There are two possile scenarios, but not both:
7.1) Install the latest released version
7.2) Install directly from SVN
apt-get install php5-cli
8.1) Installation of beta 3 from tar.gz
cd /tmp
...
...
@@ -160,7 +158,7 @@ apt-get install php5-cli
8.2) Installation from SVN
apt-get
install subversion
yum
install subversion
cd /tmp
svn export svn://svn.ispconfig.org/ispconfig3/trunk/
cd trunk/install
...
...
@@ -187,17 +185,8 @@ Optional:
Install a webbased FTP Client
apt-get install squirrelmail
ln -s /usr/share/squirrelmail/ /var/www/webmail
Access squirrelmail:
http://192.168.0.100/webmail
To configure squirrelmail, run:
yum install squirrelmail
/usr/sbin/squirrelmail-configure
----------------------------------------------------------------------------------------------------------
...
...
@@ -215,7 +204,6 @@ done
Installing Jailkit:
apt-get install build-essential autoconf automake1.9 libtool flex bison
cd /tmp
wget http://olivier.sessink.nl/jailkit/jailkit-2.5.tar.gz
tar xvfz jailkit-2.5.tar.gz
...
...
This diff is collapsed.
Click to expand it.
INSTALL_OPENSUSE_11.txt
+
2
−
15
View file @
6444a957
...
...
@@ -135,8 +135,6 @@ There are two possile scenarios, but not both:
7.1) Install the latest released version
7.2) Install directly from SVN
apt-get install php5-cli
7.1) Installation of beta 3 from tar.gz
cd /tmp
...
...
@@ -146,7 +144,7 @@ apt-get install php5-cli
7.2) Installation from SVN
apt-get install
subversion
yast2 -i
subversion
cd /tmp
svn export svn://svn.ispconfig.org/ispconfig3/trunk/
cd trunk/install
...
...
@@ -173,17 +171,7 @@ Optional:
Install a webbased FTP Client
apt-get install squirrelmail
ln -s /usr/share/squirrelmail/ /var/www/webmail
Access squirrelmail:
http://192.168.0.100/webmail
To configure squirrelmail, run:
/usr/sbin/squirrelmail-configure
yast2 -i squirrelmail
----------------------------------------------------------------------------------------------------------
...
...
@@ -201,7 +189,6 @@ done
Installing Jailkit:
apt-get install build-essential autoconf automake1.9 libtool flex bison
cd /tmp
wget http://olivier.sessink.nl/jailkit/jailkit-2.5.tar.gz
tar xvfz jailkit-2.5.tar.gz
...
...
This diff is collapsed.
Click to expand it.
install/update.php
+
13
−
13
View file @
6444a957
...
...
@@ -237,19 +237,19 @@ if($update_crontab_answer == 'yes') {
//** Restart services:
if
(
$reconfigure_services_answer
==
'yes'
)
{
swriteln
(
'Restarting services ...'
);
system
(
"/etc/init.d/mysql
restart
"
);
system
(
"/etc/init.d/postfix
restart
"
);
system
(
"/etc/init.d/saslauthd
restart
"
);
system
(
"/etc/init.d/amavis
restart
"
);
system
(
"/etc/init.d/clamav-daemon
restart
"
);
system
(
"/etc/init.d/
courier-authdaemon restart
"
);
system
(
"/etc/init.d/
courier-imap restart
"
);
system
(
"/etc/init.d/
courier-imap-ssl restart
"
);
system
(
"/etc/init.d/
courier-pop restart
"
);
system
(
"/etc/init.d/
courier-pop-ssl restart
"
);
system
(
"/etc/init.d/apache2
restart
"
);
system
(
"/etc/init.d/
pure
-
ftpd
-mysql
restart
"
);
system
(
"/etc/init.d/mydns
restart &> /dev/null
"
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'mysql'
][
'init_script'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'postfix'
][
'init_script'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'saslauthd'
][
'init_script'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'amavis'
][
'init_script'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'clamav'
][
'init_script'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'courier'
][
'
courier-authdaemon
'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'courier'
][
'
courier-imap
'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'courier'
][
'
courier-imap-ssl
'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'courier'
][
'
courier-pop
'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'courier'
][
'
courier-pop-ssl
'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'apache'
][
'init_script'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'
pureftpd
'
][
'init_script'
]
.
'
restart
'
);
system
(
$conf
[
'init_scripts'
]
.
'/'
.
$conf
[
'mydns'
][
'init_script'
]
.
'
restart &> /dev/null
'
);
}
echo
"Update finished.
\n
"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment