Makes sense, the farmURL is designed to allow multiple fields using the same farm.
Are you sure setting the farmURL to a local path instead of http link doesn't create problems? I believe this was standard before, but I seem to remember getting problems with a plugin after an update, which was fixed by making that a normal URL. (All my index.php files are filled with those definitions.) On Jan 21, 5:18 am, jacmgr <[email protected]> wrote: > Here is what I found and how I fixed it. > > to debug, in the field config.php I added > echo $fieldURL; > echo $farmURL; > print_r($BOLTvar); > > and got this > > http://localhost/BW3414/field/http://localhost/boltwire/farm > Array > ( > [$version] => v3.4.14 > [$now] => 1295581696 > [$captcha] => 2494 > [$return] => main > [$ip] => 127.0.0.1 > [$ip2] => 127-0-0-1 > [$domain] => localhost > [$field] => field > [$fieldurl] =>http://localhost/BW3414/field/ > [$skin] => > [$script] =>http://localhost/BW3414/field/index.php?p= > etc..... > > So it seems like the var not correctly set is $farmURL. > > In the latest version 3.4.14 engine.php, $imgURL and $pubURL are > dependent on $farmURL > I think that wasn't true in prior version. > > MY FIX: > In my field/config/config.php file, I added > $farmURL = dirname($fieldURL).'/boltwire/farm'; > $imgURL = "$farmURL/img"; > $pubURL = "$farmURL/pub"; > > Now the GUI images show correctly for me. > > Maybe there is better way, but it is working now. > > This problem is in a fresh install of boltwire with GUI plugin, > nothing else. Would be discourageing for someone just trying out > boltwire. -- 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.
