You are not logged in.
Pages: 1
Good Afthernoon,
I am trying to upload images to a page, but it adds the wrong link (http://domain.comfiles/resources/large_gym.jpg)
This is my enviroments.php (someone know why it does nog work
<?
// Time Zone
date_default_timezone_set("Europe/Amsterdam");
// Website Environment
$bigtree["config"]["debug"] = true; // Set to false to stop all PHP errors/warnings from showing, or "full" to show all errors include notices and strict standards
$bigtree["config"]["domain"] = "http://domain.lan/"; // "domain" should be http://www.website.com
$bigtree["config"]["www_root"] = "http://domain.lan/"; // "www_root" should be http://www.website.com/location/of/the/site/
$bigtree["config"]["static_root"] = "http://domain.lan/"; // "static_root" can either be the same as "www_root" or another domain that points to the same place -i t is used to server static files to increase page load time due to max connections per domain in most browsers.
$bigtree["config"]["admin_root"] = "http://domain.lan/admin/"; // "admin_root" should be the location you want to access BigTree's admin from, i.e. http://www.website.com/admin/
$bigtree["config"]["force_secure_login"] = false; // If you have HTTPS enabled, set to true to force admin logins through HTTPS
$bigtree["config"]["environment"] = ""; // "dev" or "live"; empty to hide
$bigtree["config"]["environment_live_url"] = ""; // Live admin URL
$bigtree["config"]["developer_mode"] = false; // Set to true to lock out all users except developers.
$bigtree["config"]["maintenance_url"] = false; // Set to a URL to 307 redirect visitors to a maintenance page (driven by /templates/basic/_maintenance.php).
$bigtree["config"]["routing"] = "htaccess";
$bigtree["config"]["cache"] = false; // Enable Simple Caching
$bigtree["config"]["cache_ttl"] = 300; // Number of seconds to keep a cached page
$bigtree["config"]["sql_interface"] = "mysqli"; // Change to "mysql" to use legacy MySQL interface in PHP.
// Database Environment
$bigtree["config"]["db"]["host"] = "localhost";
$bigtree["config"]["db"]["name"] = "xx";
$bigtree["config"]["db"]["user"] = "xx";
$bigtree["config"]["db"]["password"] = "xx";
$bigtree["config"]["db"]["port"] = "";
$bigtree["config"]["db"]["socket"] = "";
// Separate write database info (for load balanced setups)
$bigtree["config"]["db_write"]["host"] = "";
$bigtree["config"]["db_write"]["name"] = "";
$bigtree["config"]["db_write"]["user"] = "";
$bigtree["config"]["db_write"]["password"] = "";
$bigtree["config"]["db_write"]["port"] = "";
$bigtree["config"]["db_write"]["socket"] = "";
?>
Offline
Usually that's an indication of a missing trailing slash on your $bigtree["config"]["static_root"] configuration.
Offline
Pages: 1