I’ve added EE to a duplicate site following .(JavaScript must be enabled to view this email address).
I setup my subdomain first (mcc.easytheretiger.net, this is where EE is installed) and then the main site (http://www.easytheretiger.net).
The duplicate site’s index pulls up, but all the navigation links fail with the message “No input file specified.” I’ve tried modifying the URL in the browser without luck.
In my duplicate site (http://www.easytheretiger.net), I have posted index.php, path.php, and .htaccess. I’ll paste the contents below (with sensitive info removed).
<?php
// ------------------------------------------------------
// DO NOT ALTER THIS FILE UNLESS YOU HAVE A REASON TO
// ------------------------------------------------------
// Path to the directory containing your backend files
$system_path = "../mcc.easytheretiger.net/admin/";
// ------------------------------------------------------
// MANUALLY CONFIGURABLE VARIABLES
// See user guide for more information
// ------------------------------------------------------
$template_group = "mv_home";
$template = "index";
$site_url = "http://www.easytheretiger.net/";
$site_index = "";
$site_404 = "";
//I don't think the array below is helping, but I tried messing with this too.
$global_vars = array(
"mv_home" => "home",
"mv_story" => "story",
"mv_wine" => "wine",
"mv_visit" => "visit",
"mv_contact" => "contact"
); // Last entry must not include the comma at the end
?>Here is the contents of my .htaccess file:
# rewrite rules
RewriteEngine On
# ditch index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]Could someone help me how to resolve my path issues?
Thanks!
EasyThereTiger
(On a side note, I’m confused how webblogs would work for a duplicate site. Do I need to create additional webblogs for this site, or would they feed off the primary sites webblogs (if I wanted to approach it that way). It’s probably less confusing to just create additional webblogs.)
Mod Edit: Moved to the how-to forum for community assistance.