[eluser]phusiondesign[/eluser]
It works! That seemed to be the problem. Here is my setup now.
Code:
[ root ]
--- [ system ]
--- index.php // this is your ONE index.php file //
($system_folder = "system"; $application_folder = "application";)
--- .htaccess // this is your ONE .htaccess file //
--- license.txt
--- [ application ] // this is your ONE appliction //
--- [ All the system folders go here... ]
--- [ two ]
--- index.php// this is your TWO index.php file //
($system_folder = "../system"; $application_folder = "application";)
--- .htaccess // this is your TWO .htaccess file //
--- [ application ] // this is you TWO application //
--- [ three ]
--- index.php // this is your THREE index.php file //
($system_folder = "../system"; $application_folder = "application";)
--- .htaccess // this is your THREE .htaccess file //
--- [ application ] // this is you THREE application //
Now, I just need to get the .htaccess files working correctly. Also, I am going to try a similar structure and will post that setup. Thanks!