Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
BRIC
dokuwiki
Commits
3816dcbc
Commit
3816dcbc
authored
19 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Patches
Plain Diff
nicer error messages for fatal errors
darcs-hash:20060303180548-7ad00-db294c2c5c10c8df69ebae7596e64e1af4d9bc35.gz
parent
3bb35907
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
inc/auth.php
+2
-2
2 additions, 2 deletions
inc/auth.php
inc/init.php
+25
-3
25 additions, 3 deletions
inc/init.php
with
27 additions
and
5 deletions
inc/auth.php
+
2
−
2
View file @
3816dcbc
...
...
@@ -33,10 +33,10 @@
$conf
[
'useacl'
]
=
0
;
}
}
else
{
die
(
$lang
[
'authmodfailed'
]);
nice_
die
(
$lang
[
'authmodfailed'
]);
}
}
else
{
die
(
$lang
[
'authmodfailed'
]);
nice_
die
(
$lang
[
'authmodfailed'
]);
}
}
...
...
This diff is collapsed.
Click to expand it.
inc/init.php
+
25
−
3
View file @
3816dcbc
...
...
@@ -128,7 +128,8 @@ function init_paths(){
foreach
(
$paths
as
$c
=>
$p
){
if
(
!
$conf
[
$c
])
$conf
[
$c
]
=
$conf
[
'savedir'
]
.
'/'
.
$p
;
$conf
[
$c
]
=
init_path
(
$conf
[
$c
]);
if
(
!
$conf
[
$c
])
die
(
"
$c
does not exist, isn't accessable or writable. Check config and permissions!"
);
if
(
!
$conf
[
$c
])
nice_die
(
"The
$c
does not exist, isn't accessable or writable.
Check your config and permission settings!"
);
}
}
...
...
@@ -149,7 +150,7 @@ function init_files(){
fclose
(
$fh
);
if
(
isset
(
$conf
[
'fmask'
]))
{
chmod
(
$file
,
$conf
[
'fmask'
]);
}
}
else
{
die
(
"
$file
is not writable. Check permissions!"
);
nice_
die
(
"
$file
is not writable. Check
your
permissions
settings
!"
);
}
}
}
...
...
@@ -282,7 +283,7 @@ function scriptify($file) {
}
$fh
=
fopen
(
$fn
,
'w'
);
if
(
!
$fh
)
{
die
(
$fn
.
' is not writable!'
);
nice_
die
(
$fn
.
' is not writable
. Check your permission settings
!'
);
}
// write php exit hack first
fwrite
(
$fh
,
"#
$fn
\n
"
);
...
...
@@ -299,5 +300,26 @@ function scriptify($file) {
@
rename
(
$file
,
"
$file
.old"
);
}
/**
* print a nice message even if no styles are loaded yet.
*/
function
nice_die
(
$msg
){
echo
<<<EOT
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head><title>DokuWiki Setup Error</title></head>
<body style="font-family: Arial, sans-serif">
<div style="width:60%; margin: auto; background-color: #fcc;
border: 1px solid #faa; padding: 0.5em 1em;">
<h1 style="font-size: 120%">DokuWiki Setup Error</h1>
<p>$msg</p>
</div>
</body>
</html>
EOT;
exit
;
}
//Setup VIM: ex: et ts=2 enc=utf-8 :
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