developer system settings

This commit is contained in:
following
2012-08-13 18:41:37 +02:00
parent 4de76f686c
commit 7b184b38fb
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -95,13 +95,13 @@
/* other template options
*
*/
$opt['page']['absolute_url'] = 'http://' . $dev_domain . '/' . $dev_codepath . 'htdocs';
$opt['page']['absolute_url'] = $dev_baseurl;
$opt['mail']['from'] = '<admin email>';
/* location of uploaded images
*/
$opt['logic']['pictures']['dir'] = $dev_basepath . $dev_codepath . 'htdocs/images/uploads';
$opt['logic']['pictures']['url'] = 'http://' . $dev_domain . '/' . $dev_codepath . 'htdocs/images/uploads';
$opt['logic']['pictures']['url'] = $opt['page']['absolute_url'] . '/images/uploads';
$opt['logic']['pictures']['thumb_url'] = $opt['logic']['pictures']['url'] . '/thumbs';
/* cachemaps
+2 -2
View File
@@ -68,14 +68,14 @@
//if you are running this site on a other domain than staging.opencaching.de, you can set
//this in private_db.inc.php, but don't forget the ending /
$absolute_server_URI = 'http://' . $dev_domain . '/' . $dev_codepath . 'htdocs/';
$absolute_server_URI = $dev_baseurl . '/';
// EMail address of the sender
if (!isset($emailaddr)) $emailaddr = 'contact@mail.opencaching.de';
// location of cache images
if (!isset($picdir)) $picdir = $rootpath . 'images/uploads';
if (!isset($picurl)) $picurl = 'http://' . $dev_domain . '/' . $dev_codepath . 'htdocs/images/uploads';
if (!isset($picurl)) $picurl = $absolute_server_URI . 'images/uploads';
// Thumbsize
$thumb_max_width = 175;