<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[11705] trunk/wp-admin/setup-config.php: Provide a pre-filled wp-config.
php file in a textarea if setup-config can't write to the server.</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/11705">11705</a></dd>
<dt>Author</dt> <dd>westi</dd>
<dt>Date</dt> <dd>2009-07-09 21:35:47 +0000 (Thu, 09 Jul 2009)</dd>
</dl>
<h3>Log Message</h3>
<pre>Provide a pre-filled wp-config.php file in a textarea if setup-config can't write to the server. Fixes <a href="http://trac.wordpress.org/ticket/10107">#10107</a> props filosofo.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminsetupconfigphp">trunk/wp-admin/setup-config.php</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminsetupconfigphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/setup-config.php (11704 => 11705)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/setup-config.php        2009-07-09 21:21:57 UTC (rev 11704)
+++ trunk/wp-admin/setup-config.php        2009-07-09 21:35:47 UTC (rev 11705)
</span><span class="lines">@@ -35,9 +35,6 @@
</span><span class="cx">
</span><span class="cx"> $configFile = file(ABSPATH . 'wp-config-sample.php');
</span><span class="cx">
</span><del>-if ( !is_writable(ABSPATH))
-        wp_die("Sorry, I can't write to the directory. You'll have to either change the permissions on your WordPress directory or create your wp-config.php manually.");
-
</del><span class="cx"> // Check if wp-config.php has been created
</span><span class="cx"> if (file_exists(ABSPATH . 'wp-config.php'))
</span><span class="cx">         wp_die("<p>The file 'wp-config.php' already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try <a href='install.php'>installing now</a>.</p>");
</span><span class="lines">@@ -155,38 +152,52 @@
</span><span class="cx">         if ( !empty($wpdb->error) )
</span><span class="cx">                 wp_die($wpdb->error->get_error_message());
</span><span class="cx">
</span><del>-        $handle = fopen(ABSPATH . 'wp-config.php', 'w');
-
</del><span class="cx">         foreach ($configFile as $line_num => $line) {
</span><span class="cx">                 switch (substr($line,0,16)) {
</span><span class="cx">                         case "define('DB_NAME'":
</span><del>-                                fwrite($handle, str_replace("putyourdbnamehere", $dbname, $line));
</del><ins>+                                $configFile[$line_num] = str_replace("putyourdbnamehere", $dbname, $line);
</ins><span class="cx">                                 break;
</span><span class="cx">                         case "define('DB_USER'":
</span><del>-                                fwrite($handle, str_replace("'usernamehere'", "'$uname'", $line));
</del><ins>+                                $configFile[$line_num] = str_replace("'usernamehere'", "'$uname'", $line);
</ins><span class="cx">                                 break;
</span><span class="cx">                         case "define('DB_PASSW":
</span><del>-                                fwrite($handle, str_replace("'yourpasswordhere'", "'$passwrd'", $line));
</del><ins>+                                $configFile[$line_num] = str_replace("'yourpasswordhere'", "'$passwrd'", $line);
</ins><span class="cx">                                 break;
</span><span class="cx">                         case "define('DB_HOST'":
</span><del>-                                fwrite($handle, str_replace("localhost", $dbhost, $line));
</del><ins>+                                $configFile[$line_num] = str_replace("localhost", $dbhost, $line);
</ins><span class="cx">                                 break;
</span><span class="cx">                         case '$table_prefix =':
</span><del>-                                fwrite($handle, str_replace('wp_', $prefix, $line));
</del><ins>+                                $configFile[$line_num] = str_replace('wp_', $prefix, $line);
</ins><span class="cx">                                 break;
</span><del>-                        default:
-                                fwrite($handle, $line);
</del><span class="cx">                 }
</span><span class="cx">         }
</span><del>-        fclose($handle);
-        chmod(ABSPATH . 'wp-config.php', 0666);
-
-        display_header();
</del><ins>+        if ( ! is_writable(ABSPATH) ) :
+                display_header();
</ins><span class="cx"> ?>
</span><ins>+<p>Sorry, but I can't write the <code>wp-config.php</code> file.</p>
+<p>You can create the <code>wp-config.php</code> manually and paste the following text into it.</p>
+<textarea cols="90" rows="15"><?php
+                foreach( $configFile as $line ) {
+                        echo htmlentities($line);
+                }
+?></textarea>
+<p>After you've done that, click "Run the install."</p>
+<p class="step"><a href="install.php" class="button">Run the install</a></p>
+<?php
+        else :
+                $handle = fopen(ABSPATH . 'wp-config.php', 'w');
+                foreach( $configFile as $line ) {
+                        fwrite($handle, $line);
+                }
+                fclose($handle);
+                chmod(ABSPATH . 'wp-config.php', 0666);
+                display_header();
+?>
</ins><span class="cx"> <p>All right sparky! You've made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to&hellip;</p>
</span><span class="cx">
</span><span class="cx"> <p class="step"><a href="install.php" class="button">Run the install</a></p>
</span><span class="cx"> <?php
</span><ins>+        endif;
</ins><span class="cx">         break;
</span><span class="cx"> }
</span><span class="cx"> ?>
</span></span></pre>
</div>
</div>
</body>
</html>