Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Lukas Niegsch
slapos
Commits
02bb7717
Commit
02bb7717
authored
Jan 12, 2012
by
Mayoro Diagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding configure file for zikula
parent
b42ebe81
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
20 deletions
+20
-20
software/fluxbb/template/config.php.in
software/fluxbb/template/config.php.in
+0
-17
software/pixelpost/template/config.php
software/pixelpost/template/config.php
+0
-3
software/zikula/configure-zikula.py
software/zikula/configure-zikula.py
+20
-0
No files found.
software/fluxbb/template/config.php.in
deleted
100644 → 0
View file @
b42ebe81
<?php
$db_type
=
'mysql'
;
$db_host
=
'%(mysql_host)s'
;
$db_name
=
'%(mysql_database)s'
;
$db_username
=
'%(mysql_user)s'
;
$db_password
=
'%(mysql_password)s'
;
$db_prefix
=
'fbb_'
;
$p_connect
=
false
;
$cookie_name
=
'pun_cookie_357edd'
;
$cookie_domain
=
''
;
$cookie_path
=
'/'
;
$cookie_secure
=
0
;
$cookie_seed
=
'aba88f605e01bfe2'
;
define
(
'PUN'
,
1
);
software/pixelpost/template/config.php
deleted
100644 → 0
View file @
b42ebe81
<?php
?>
software/zikula/configure-zikula.py
0 → 100644
View file @
02bb7717
# -*- coding: utf-8 -*-
import
sys
import
os
def
setup
(
args
):
mysql_port
,
mysql_host
,
mysql_user
,
mysql_password
,
mysql_database
,
base_url
,
htdocs
=
args
config_php
=
os
.
path
.
join
(
htdocs
,
"config/config.php"
)
install_php
=
os
.
path
.
join
(
htdocs
,
"install.php"
)
install_folder
=
os
.
path
.
join
(
htdocs
,
"install"
)
upgrade_php
=
os
.
path
.
join
(
htdocs
,
"upgrade.php"
)
os
.
chmod
(
config_php
,
0444
)
os
.
remove
(
install_php
)
os
.
remove
(
install
)
os
.
remove
(
upgrade_php
)
if
__name__
==
'__main__'
:
setup
(
sys
.
argv
[
1
:])
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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