I've got a non-standard installation, as usual, with the following
structure:

cgi.nfshost.com (server for dynamic content)
/protected (now considered barn location, which is out of the public
root directory)
/protected/scripts
/protected/actions (renamed system directory)
/public/(fieldname)/index.php
/public/(fieldname)/pages (or stamps, indexes, etc.)

cdn.nfshost.com (server for static content)
/protected (now considered a shared folder, but not intended for use
at the moment)
/protected/images (or public, plugins, etc.)
/public/(fieldname)/images (or public, plugins, etc.)

I'm pretty much setting every variable in my index.php file, and have
renamed $boltwire to $cgi and added $cgi to point to my static server.
Below are the variables which have been set in my index.php:

$cgi = '../../protected';
$cdn = '/f5/cdn/public/(fieldname)';
$barnPath = "$cgi";
$scriptPath = "$cgi/scripts";
$systemPath = "$cgi/actions";
$farmPath = "$cdn";
$imgPath = "$cdn/images";
$pubPath = "$cdn/uploads";
$pluginPath = "$cdn/plugins";
$skinPath = "$cdn/themes";
$fieldURL = 'http://www.fieldurl.com/';
$fieldName = '';
$index = 'index.php';
$scriptURL = "$fieldURL$index?p=";
$pagesDir = 'pages';
$configDir = 'config';

include_once("../../protected/scripts/engine.php");

The installation works fine, save for no images or static content is
loading, which would usually be found on the same server in the field
path, but in my case, is being pipelined from another server.

-- 
You received this message because you are subscribed to the Google Groups 
"BoltWire" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/boltwire?hl=en.

Reply via email to