Hello, working with CVS again, and I noticed that after updates, my stories with images already in them were giving me an image upload directory error.
So I read the docs, and noticed that there is no setting of path_html anywhere by default. So I've added it to config.php under the No Need To Edit section So I just added the sixth line below inside => <= (omit those "=>" symbols when adding...) Hope this is correct, because it now all works just great. // you shouldn't need to edit theses $_CONF['path_system'] = $_CONF['path'] . 'system/'; $_CONF['path_log'] = $_CONF['path'] . 'logs/'; $_CONF['path_language'] = $_CONF['path'] . 'language/'; $_CONF['backup_path'] = $_CONF['path'] . 'backups/'; => $_CONF['path_images'] = $_CONF['path_html'] . 'images/'; <=