Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Levin Zimmermann
slapos
Commits
d2daf998
Commit
d2daf998
authored
13 years ago
by
Antoine Catton
Browse files
Options
Download
Email Patches
Plain Diff
Add error logging on wordpress in order to run diagnose.
parent
60f410dc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
software/wordpress/software.cfg
software/wordpress/software.cfg
+1
-1
software/wordpress/wp-config.php.in
software/wordpress/wp-config.php.in
+4
-1
No files found.
software/wordpress/software.cfg
View file @
d2daf998
...
@@ -21,7 +21,7 @@ location = ${buildout:parts-directory}/${:_buildout_section_name_}
...
@@ -21,7 +21,7 @@ location = ${buildout:parts-directory}/${:_buildout_section_name_}
[application-configuration]
[application-configuration]
location = wp-config.php
location = wp-config.php
md5sum =
3859841a4ad6ed23744d6bc5a01321e0
md5sum =
8f6fcb5d413e44e0a8b495b3c3a355ee
[versions]
[versions]
#slapos.cookbook = 0.12
#slapos.cookbook = 0.12
...
...
This diff is collapsed.
Click to expand it.
software/wordpress/wp-config.php.in
View file @
d2daf998
...
@@ -78,7 +78,10 @@ define('WPLANG', '');
...
@@ -78,7 +78,10 @@ define('WPLANG', '');
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
* in their development environments.
*/
*/
define
(
'WP_DEBUG'
,
false
);
define
(
'WP_DEBUG'
,
true
);
// For slapos to diagnose errors.
define
(
'WP_DEBUG_LOG'
,
true
);
define
(
'WP_DEBUG_DISPLAY'
,
false
);
/* That's all, stop editing! Happy blogging. */
/* That's all, stop editing! Happy blogging. */
...
...
This diff is collapsed.
Click to expand it.
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