I do not really understand the problem.
In config.php of Sugar you have an entry site_url which points to the star URL of the Sugar installation, e.g.
http://www.somethingelse.com/SugarCRM in your case.
In httpd.conf of apache you have a directory entry like this:
Code:
<Directory "D:/SUGAR-xampp/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks Includes ExecCGI
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory> That runs fine on my machine.
The Sugar installer normally installs an index.php in your webserver root (htdocs) to redirect to the correct subdirectors with a content like this:
Code:
<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
header('Location: '.$uri.'/sugarcrm/');
exit;
?>
Something is wrong with the XAMPP Lite installation :-( All that allows the references you want, no need to set starturl.
regards
hk
Bookmarks