Browse Source

fix

old-stable
Rahul Bansal 13 years ago
parent
commit
2978c7dce9
  1. 3
      create.php
  2. 4
      init.php

3
create.php

@ -3,8 +3,7 @@
CREATE A SITE WITH WORDPRESS CREATE A SITE WITH WORDPRESS
*/ */
include_once('config.php'); include_once('init.php');
/** /**
* prompt user to eneter domain name * prompt user to eneter domain name

4
init.php

@ -5,8 +5,8 @@
error_reporting(E_ALL); error_reporting(E_ALL);
if (file_exists('config.php')){ if (file_exists('config.php')){
include 'config.php'} include 'config.php';
else{ }else{
die("Create a config.php to start with..."); die("Create a config.php to start with...");
} }

Loading…
Cancel
Save