是一个优秀的语义个人发布平台

源代码在线查看: setup-config.php

软件大小: 234 K
上传用户: hslhsl123
关键词: 发布
下载地址: 免注册下载 普通下载 VIP

相关代码

								$_wp_installing = 1;
				
				if (file_exists('../wp-config.php')) 
					die("The file 'wp-config.php' already exists. If you need to reset any of the configuration items in this file, please delete it first.");
				
				if (!file_exists('../wp-config-sample.php'))
				    die('Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.');
				$configFile = file('../wp-config-sample.php');
				
				if (!is_writable('../')) 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.");
				
				$step = $_GET['step'];
				if (!$step) $step = 0;
				?>
				
				
				
				WordPress › Setup Configuration File
				
				
				    					body {
						font-family: Georgia, "Times New Roman", Times, serif;
						margin-left: 15%;
						margin-right: 15%;
					}
					#logo {
						margin: 0;
						padding: 0;
						background-image: url(http://wordpress.org/images/logo.png);
						background-repeat: no-repeat;
						height: 60px;
						border-bottom: 4px solid #333;
					}
					#logo a {
						display: block;
						height: 60px;
					}
					#logo a span {
						display: none;
					}
					p, li {
						line-height: 140%;
					}
				    -->
					
				
				 
				WordPress 
								
				switch($step) {
					case 0:
				?> 
				Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding. 
				 
				  Database name 
				  Database username 
				  Database password 
				  Database host 
				  Table prefix (if you want to run more than one WordPress in a single database) 
				 
				If for any reason this automatic file creation doesn't work, don't worry. All this does is fill in the database information to a configuration file. You may also simply open wp-config-sample.php in a text editor, fill in your information, and save it as wp-config.php. 
				In all likelihood, these items were supplied to you by your ISP. If you do not have this information, then you will need to contact them before you can continue. If you’re all ready, let’s go! 
									break;
				
					case 1:
					?> 
				 
				 
				  Below you should enter your database connection details. If you're not sure about these, contact your host. 
				   
				     
				      Database Name 
				       
				      The name of the database you want to run WP in.  
				     
				     
				      User Name 
				       
				      Your MySQL username 
				     
				     
				      Password 
				       
				      ...and MySQL password. 
				     
				     
				      Database Host 
				       
				      99% chance you won't need to change this value. 
				    
				    
				      Table Prefix
				      
				      If you want to run multiple WordPress installations in a single database, change this.
				     
				   
				   
				 
									break;
					
					case 2:
					$dbname = $_POST['dbname'];
				    $uname = $_POST['uname'];
				    $passwrd = $_POST['pwd'];
				    $dbhost = $_POST['dbhost'];
					$prefix = $_POST['prefix'];
					if (empty($prefix)) $prefix = 'wp_';
				
				    // Test the db connection.
				    define('DB_NAME', $dbname);
				    define('DB_USER', $uname);
				    define('DB_PASSWORD', $passwrd);
				    define('DB_HOST', $dbhost);
				
				    // We'll fail here if the values are no good.
				    require_once('../wp-includes/wp-db.php');
					$handle = fopen('../wp-config.php', 'w');
				
				    foreach ($configFile as $line_num => $line) {
				        switch (substr($line,0,16)) {
				            case "define('DB_NAME'":
				                fwrite($handle, str_replace("wordpress", $dbname, $line));
				                break;
				            case "define('DB_USER'":
				                fwrite($handle, str_replace("'username'", "'$uname'", $line));
				                break;
				            case "define('DB_PASSW":
				                fwrite($handle, str_replace("'password'", "'$passwrd'", $line));
				                break;
				            case "define('DB_HOST'":
				                fwrite($handle, str_replace("localhost", $dbhost, $line));
				                break;
							case '$table_prefix  =':
								fwrite($handle, str_replace('wp_', $prefix, $line));
								break;
				            default:
				                fwrite($handle, $line);
				        }
				    }
				    fclose($handle);
					chmod('../wp-config.php', 0666);
				?> 
				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 run the install! 
									break;
				
				}
				?> 
				
				
							

相关资源