I want to install a site with cmsms 0.10.4, which I know is old, but I have a template which works for this version - I need phplayers, basically. I've had a couple of sites on cmsms 0.10.x and they have been great, so thanks for developing an excellent application.
The new site is running at www.wmltd.co.uk/cmsms at the moment, on a server running apache which announces itself as version 1.3.33. mysql is 4.0.21 and php is version 4.3.10. register_globals is set to "On".
The install process worked fine. The problem occurs when I try to change one of the pages - I go to the page in the admin section, and then I edit it, and all appears fine. However, when I then press "Preview", "Apply" or "Submit", I get a 404 error:
Code: Select all
Not Found
The requested URL /cmsms/admin/editcontent.php was not found on this server.
Apache/1.3.33 Server at wmltd.co.uk Port 80
Code: Select all
<?php
$config['dbms'] = 'mysql';
$config['db_hostname'] = 'mysql.someserver.net';
$config['db_username'] = '*****';
$config['db_password'] = '*****';
$config['db_name'] = '*****';
$config['db_prefix'] = 'cms_';
$config['root_url'] = 'http://wmltd.co.uk/cmsms/';
$config['root_path'] = '/hsphere/local/home/wmltd/wmltd.co.uk/cmsms';
$config['query_var'] = 'page';
$config['use_bb_code'] = false;
$config['use_smarty_php_tags'] = false;
$config['previews_path'] = '/hsphere/local/home/wmltd/wmltd.co.uk/cmsms/tmp/cache';
$config['uploads_path'] = '/hsphere/local/home/wmltd/wmltd.co.uk/cmsms/uploads';$config['uploads_url'] = 'http://wmltd.co.uk/cmsms/uploads';
$config['max_upload_size'] = 1000000;
$config['debug'] = true;
$config['assume_mod_rewrite'] = false;
$config['auto_alias_content'] = true;
$config['image_manipulation_prog'] = 'GD';
$config['image_transform_lib_path'] = '/usr/bin/ImageMagick/';
$config['use_Indite'] = false;
$config['image_uploads_path'] = '/hsphere/local/home/wmltd/wmltd.co.uk/cmsms/uploads/images';
$config['image_uploads_url'] = 'http://wmltd.co.uk/cmsms/uploads/images';
$config['default_encoding'] = '';
$config['disable_htmlarea_translation'] = false;
$config['admin_dir'] = 'admin';
$config['persistent_db_conn'] = true;
$config['default_upload_permission'] = '664';
$config['page_extension'] = '.shtml';
$config['locale'] = 'en_US';
?>
Seb James