inrodrigo / minibill

Automatically exported from code.google.com/p/minibill
0 stars 0 forks source link

Relative paths in config.php better than absolute paths #1

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
When trying to install minibill
It most likely says that session_save_path and template_cache_dir needs to
be changed

Current code:
$config['session_save_path']    = '/home/ultrize/tmp/minibill/sessions';
$config['template_cache_dir']   = '/home/ultrize/tmp/minibill/templates_c';

could be:
$config['session_save_path']    = 'tmp/sessions';
$config['template_cache_dir']   = 'tmp/templates_c';

That way editing config.php manually would not be needed.

Original issue reported on code.google.com by elias.r...@gmail.com on 7 Aug 2009 at 12:59

GoogleCodeExporter commented 8 years ago
Great idea - I'll get that into the next release.

Original comment by mfrederico@gmail.com on 17 Jun 2010 at 8:10