Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
isp
ISPConfig 3
Commits
ba611213
Commit
ba611213
authored
Jun 05, 2012
by
tbrehm
Browse files
Fixed: FS#2227 - Erro /etc/suphp.conf Opensuse File or Link not found /srv/www/cgi-bin/php5
parent
15c949b3
Changes
1
Show whitespace changes
Inline
Side-by-side
install/dist/lib/opensuse.lib.php
View file @
ba611213
...
...
@@ -542,6 +542,10 @@ class installer_dist extends installer_base {
replaceLine
(
'/etc/suphp.conf'
,
'umask=0077'
,
'umask=0022'
,
0
);
//}
if
(
!
file_exists
(
'/srv/www/cgi-bin/php5'
)
&&
file_exists
(
'/srv/www/cgi-bin/php'
))
{
symlink
(
'/srv/www/cgi-bin/php'
,
'/srv/www/cgi-bin/php5'
);
}
// Sites enabled and available dirs
exec
(
'mkdir -p '
.
$conf
[
'apache'
][
'vhost_conf_enabled_dir'
]);
exec
(
'mkdir -p '
.
$conf
[
'apache'
][
'vhost_conf_dir'
]);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment