<!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(&quot;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.&quot;);
-
</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(&quot;&lt;p&gt;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 &lt;a href='install.php'&gt;installing now&lt;/a&gt;.&lt;/p&gt;&quot;);
</span><span class="lines">@@ -155,38 +152,52 @@
</span><span class="cx">         if ( !empty($wpdb-&gt;error) )
</span><span class="cx">                 wp_die($wpdb-&gt;error-&gt;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 =&gt; $line) {
</span><span class="cx">                 switch (substr($line,0,16)) {
</span><span class="cx">                         case &quot;define('DB_NAME'&quot;:
</span><del>-                                fwrite($handle, str_replace(&quot;putyourdbnamehere&quot;, $dbname, $line));
</del><ins>+                                $configFile[$line_num] = str_replace(&quot;putyourdbnamehere&quot;, $dbname, $line);
</ins><span class="cx">                                 break;
</span><span class="cx">                         case &quot;define('DB_USER'&quot;:
</span><del>-                                fwrite($handle, str_replace(&quot;'usernamehere'&quot;, &quot;'$uname'&quot;, $line));
</del><ins>+                                $configFile[$line_num] = str_replace(&quot;'usernamehere'&quot;, &quot;'$uname'&quot;, $line);
</ins><span class="cx">                                 break;
</span><span class="cx">                         case &quot;define('DB_PASSW&quot;:
</span><del>-                                fwrite($handle, str_replace(&quot;'yourpasswordhere'&quot;, &quot;'$passwrd'&quot;, $line));
</del><ins>+                                $configFile[$line_num] = str_replace(&quot;'yourpasswordhere'&quot;, &quot;'$passwrd'&quot;, $line);
</ins><span class="cx">                                 break;
</span><span class="cx">                         case &quot;define('DB_HOST'&quot;:
</span><del>-                                fwrite($handle, str_replace(&quot;localhost&quot;, $dbhost, $line));
</del><ins>+                                $configFile[$line_num] = str_replace(&quot;localhost&quot;, $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"> ?&gt;
</span><ins>+&lt;p&gt;Sorry, but I can't write the &lt;code&gt;wp-config.php&lt;/code&gt; file.&lt;/p&gt;
+&lt;p&gt;You can create the &lt;code&gt;wp-config.php&lt;/code&gt; manually and paste the following text into it.&lt;/p&gt;
+&lt;textarea cols=&quot;90&quot; rows=&quot;15&quot;&gt;&lt;?php
+                foreach( $configFile as $line ) {
+                        echo htmlentities($line);
+                }
+?&gt;&lt;/textarea&gt;
+&lt;p&gt;After you've done that, click &quot;Run the install.&quot;&lt;/p&gt;
+&lt;p class=&quot;step&quot;&gt;&lt;a href=&quot;install.php&quot; class=&quot;button&quot;&gt;Run the install&lt;/a&gt;&lt;/p&gt;
+&lt;?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();
+?&gt;
</ins><span class="cx"> &lt;p&gt;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&amp;hellip;&lt;/p&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;p class=&quot;step&quot;&gt;&lt;a href=&quot;install.php&quot; class=&quot;button&quot;&gt;Run the install&lt;/a&gt;&lt;/p&gt;
</span><span class="cx"> &lt;?php
</span><ins>+        endif;
</ins><span class="cx">         break;
</span><span class="cx"> }
</span><span class="cx"> ?&gt;
</span></span></pre>
</div>
</div>

</body>
</html>