No forward slash after domain name on file manager

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Post Reply
rjtpr
New Member
New Member
Posts: 6
Joined: Wed May 05, 2010 7:38 pm

No forward slash after domain name on file manager

Post by rjtpr »

I am new to cms made simple. I am having problems accessing files from the file manager. it's not showing a the slash after the domain name(for eg: http://www.domain.comuploads/test.pdf it should be like http://www.domain.com/uploads/test.pdf  ). As a result it's showing file not found error when i click on those files.on the config.php file upload url is set to
$config['uploads_url'] = $config['root_url'] .  'uploads';
How to fix this?
Last edited by rjtpr on Thu May 06, 2010 12:54 pm, edited 1 time in total.
replytomk3

Re: No forward slash after domain name on file manager

Post by replytomk3 »

$config['uploads_url'] = $config['root_url'] . '/uploads';
rjtpr
New Member
New Member
Posts: 6
Joined: Wed May 05, 2010 7:38 pm

Re: No forward slash after domain name on file manager

Post by rjtpr »

Hi,

i tried changing the $config['uploads_url']
to  $config['uploads_url'] = $config['root_url'] . '/uploads'; . Still not working.

Thank you
replytomk3

Re: No forward slash after domain name on file manager

Post by replytomk3 »

Post here complete config.php without the database password.
rjtpr
New Member
New Member
Posts: 6
Joined: Wed May 05, 2010 7:38 pm

Re: No forward slash after domain name on file manager

Post by rjtpr »

hi,

here's the config.php file that i'm using

Global Settings in the admin panel)
#after making any changes to path or url related options

#-----------------
#Behaviour Settings
#-----------------

# These settings will effect the overall behaviour of the CMS application, please
# use extreme caution when editing these.  Additionally, some settings may have
# no effect on servers with significantly restricted configurability.

# If you are experiencing propblems with php memory limit errors, then you may
# want to try enabling and/or adjusting this setting.
# Note: Your server may not allow the application to override memory limits.
$config['php_memory_limit'] = '';

# In versions of CMS Made Simple prior to version 1.4, the page template was processed
# in it's entirety.  This behaviour was later changed to process the head portion of the
# page template after the body.  If you are working with a highly configured site that
# relies significantly on the old order of smarty processing, you may want to try
# setting this parameter to false.
$config['process_whole_template'] = false;

# CMSMS Debug Mode?  Turn it on to get a better error when you
# see {nocache} errors, or to allow seeing php notices, warnings, and errors in the html output.
# This setting will also disable browser css caching.
$config['debug'] = false;

# Output compression?
# Turn this on to allow CMS to do output compression
# this is not needed for apache servers that have mod_deflate enabled
# and possibly other servers.  But may provide significant performance
# increases on some sites.  Use caution when using this as there have
# been reports of incompatibilities with some browsers.
$config['output_compression'] = false;

#-----------------
#Database Settings
#-----------------

#This is your database connection information.  Name of the server,
#username, password and a database with proper permissions should
#all be setup before CMS Made Simple is installed.
$config['dbms'] = 'mysql';
$config['db_hostname'] =
$config['db_username'] =
$config['db_password'] = '';
$config['db_name'] =
#Change this param only if you know what you are doing
$config["db_port"] = '';


#If app needs to coexist with other tables in the same db,
#put a prefix here.  e.g. "cms_"
$config['db_prefix'] = 'cms_';

#Use persistent connections?  They're generally faster, but not all hosts
#allow them.
$config['persistent_db_conn'] = false;

#Use ADODB Lite?  This should be true in almost all cases.  Note, slight
#tweaks might have to be made to date handling in a "regular" adodb
#install before it can be used.
$config['use_adodb_lite'] = true;

#-------------
#Path Settings
#-------------

#Document root as seen from the webserver.  No slash at the end
#If page is requested with https use https as root url
#e.g. http://blah.com
$config['root_url'] = 'http://www.domainname.org';
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on')
{
$config['root_url'] = str_replace('http','https',$config['root_url']);
}

#Path to document root. This should be the directory this file is in.
#e.g. /var/www/localhost
$config['root_path'] = '/mnt/target02/344057/397625/www.domainname.org/web/content/';

#Name of the admin directory
$config['admin_dir'] = 'admin';

#Where do previews get stored temporarily?  It defaults to tmp/cache.
$config['previews_path'] = '/mnt/target02/344057/397625/www.domainname.org/web/content/tmp/cache/';

#Where are uploaded files put?  This defaults to uploads.
$config['uploads_path'] = '/mnt/target02/344057/397625/www.domainname.org/web/content/uploads/';


$config['uploads_url'] = $config['root_url'] . '/uploads';
#$config['upload_tmp_dir'] = $config['root_url'] . 'uploads';


#---------------
#Upload Settings
#---------------

#Maxium upload size (in bytes)?
$config['max_upload_size'] = 2000000;

#Permissions for uploaded files.  This only really needs changing if your
#host has a weird permissions scheme.
$config['default_upload_permission'] = '664';

#------------------
#Usability Settings
#------------------

#Allow smarty {php} tags?  These could be dangerous if you don't trust your users.
$config['use_smarty_php_tags'] = false;

#Automatically assign alias based on page title?
$config['auto_alias_content'] = true;

#------------
#URL Settings
#------------

#What type of URL rewriting should we be using for pretty URLs?  Valid options are:
#'none', 'internal', and 'mod_rewrite'.  'internal' will not work with IIS some CGI
#configurations. 'mod_rewrite' requires proper apache configuration, a valid
#.htaccess file and most likely {metadata} in your page templates.  For more
#information, see:
#http://wiki.cmsmadesimple.org/index.php ... ty_URL.27s
$config['url_rewriting'] = 'mod_rewrite';

#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '/';

#If you're using the internal pretty url mechanism or mod_rewrite, would you like to
#show urls in their hierarchy?  (ex. http://www.mysite.com/parent/parent/childpage)
$config['use_hierarchy'] = true;

#If using none of the above options, what should we be using for the query string
#variable?  (ex. http://www.mysite.com/index.php?page=somecontent)
$config['query_var'] = 'page';

#--------------
#Image Settings
#--------------

#Which program should be used for handling thumbnails in the image manager.
#See http://wiki.cmsmadesimple.org/index.php ... ge_Manager for more
#info on what this all means
$config['image_manipulation_prog'] = 'GD';
$config['image_transform_lib_path'] = '/usr/bin/ImageMagick/';

#Default path and URL for uploaded images in the image manager
$config['image_uploads_path'] = '/mnt/target02/344057/397625/www.thefactsaboutwater.org/web/content/uploads/images';
$config['image_uploads_url'] = $config['root_url'] . '/uploads/images';


#------------------------
#Locale/Encoding Settings
#------------------------

#Locale to use for various default date handling functions, etc.  Leaving
#this blank will use the server's default.  This might not be good if the
#site is hosted in a different country than it's intended audience.
$config['locale'] = '';

#In almost all cases, default_encoding should be empty (which defaults to utf-8)
#and admin_encoding should be utf-8.  If you'd like this to be different, change
#both.  Keep in mind, however, that the admin interface translations are all in
#utf-8, and will be converted on the fly to match the admin_encoding.  This
#could seriously slow down the admin interfaces for users.
$config['default_encoding'] = '';
$config['admin_encoding'] = 'utf-8';

#This is a mysql specific option that is generally defaulted to true.  Only
#disable this for backwards compatibility or the use of non utf-8 databases.
$config['set_names'] = false;

# URL of the Admin Panel section of the User Handbook
# Set none if you want hide the link from Error
$config['wiki_url'] = 'http://wiki.cmsmadesimple.org/index.php ... dmin_Panel';

?>
Last edited by Anonymous on Thu May 06, 2010 8:31 pm, edited 1 time in total.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: No forward slash after domain name on file manager

Post by Dr.CSS »

You really shouldn't put any of your DB info in here...

1) / is not a page extension in any way shape or form, I'm sorry but I've seen this before and it's just nuts...

2) what does your .htaccess say and where did you get it...

3) Did you change anything else before this started happening, I've installed and worked on many many sites and have never seen this before...
rjtpr
New Member
New Member
Posts: 6
Joined: Wed May 05, 2010 7:38 pm

Re: No forward slash after domain name on file manager

Post by rjtpr »

Database and domain info i gave in the config.php wasn't real  ;)
here's the .htaccess file  that i'm using and i got it from here http://wiki.cmsmadesimple.org/index.php ... l_Settings

# BEGIN Optional settings



# Turns off directory browsing

# not absolutely essential, but keeps people from snooping around without

# needing empty index.html files everywhere

Options -Indexes



# Deny access to config.php

# This can be useful if php ever breaks or dies

# Use with caution, this may break other functions of CMSms that use a config.php

# file.  This may also break other programs you have running under your CMSms

# install that use config.php.  You may need to add another .htaccess file to those

# directories to specifically allow config.php.



order allow,deny

deny from all





# Sets your 403 error document

# not absolutely essential to have,

# or you may already have error pages defined elsewhere

ErrorDocument 403 /forbidden403.shtml



# No sense advertising what we are running

ServerSignature Off



# END Optional Settings



# BEGIN CMSMS and Rewrite Rules

# Make sure you have Options FollowSymLinks

# and Allow on



RewriteEngine On



# Might be needed in a subdirectory

RewriteBase /



# URL Filtering helps stop some hack attempts

#IF the URI contains a "http:"

RewriteCond %{QUERY_STRING} http\: [OR]

#OR if the URI contains a "["

RewriteCond %{QUERY_STRING} \[ [OR]

#OR if the URI contains a "]"

RewriteCond %{QUERY_STRING} \] [OR]

#OR if the URI contains a ""

RewriteCond %{QUERY_STRING} (\|%3E) [NC,OR]

#OR script trying to set a PHP GLOBALS variable via URL

RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]

#OR any script trying to modify a _REQUEST variable via URL

RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})

RewriteRule ^.*$ - [F,L]

# END Filtering



# CMSMS Rewriting

# Set assume mod_rewrite to true in config.php and clear CMSMS cache

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.+)$ index.php?page=$1 [QSA]

# END CMSMS



# END Rewrite rules
owr_bgld

Re: No forward slash after domain name on file manager

Post by owr_bgld »

I don't know for what it's needed (I don't have it in my config), but if it's needed for you, there is an missing / also:
#$config['upload_tmp_dir'] = $config['root_url'] . 'uploads';
change to #$config['upload_tmp_dir'] = $config['root_url'] . '/uploads';
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: No forward slash after domain name on file manager

Post by Dr.CSS »

I would try the htaccess file in the doc folder in root instead of that one, it is named htaccess.txt, move it to root and rename .htaccess, it may help...
rjtpr
New Member
New Member
Posts: 6
Joined: Wed May 05, 2010 7:38 pm

Re: No forward slash after domain name on file manager

Post by rjtpr »

Thanks for helping.

I updated the config.php
added $config['upload_tmp_dir'] = $config['root_url'] . '/uploads'; .
Also tried moving htaccess.txt in doc folder to .htccess root folder.
Still no slash after the domain name  ???
replytomk3

Re: No forward slash after domain name on file manager

Post by replytomk3 »

Your hosting server is messed up. Every URL I see is wrong.

Fe,
$config['root_path'] = '/mnt/target02/344057/397625/www.domainname.org/web/content/';

should not have the final slash.

Did you have an htaccess before you installed CMSMS?

You should temporarily disable any htaccess or any other server settings. Call hosting as well. Then reinstall CMSMS and on step 5 uncheck two boxes. The config.php file paths need to be all regenerated with correct server setup.

Also PM me site link and ftp access. I might be able look at server config, and possibly repair the config.php
replytomk3

Re: No forward slash after domain name on file manager

Post by replytomk3 »

My config.php for reference. This uses pretty URLs.

Code: Select all

<?php


#CMS Made Simple Configuration File
#Please clear the cache (Site Admin->Global Settings in the admin panel)
#after making any changes to path or url related options

#-----------------
#Behaviour Settings
#-----------------

# These settings will effect the overall behaviour of the CMS application, please
# use extreme caution when editing these.  Additionally, some settings may have
# no effect on servers with significantly restricted configurability.

# If you are experiencing propblems with php memory limit errors, then you may
# want to try enabling and/or adjusting this setting.
# Note: Your server may not allow the application to override memory limits.
$config['php_memory_limit'] = '40000000';

# In versions of CMS Made Simple prior to version 1.4, the page template was processed
# in it's entirety.  This behaviour was later changed to process the head portion of the
# page template after the body.  If you are working with a highly configured site that
# relies significantly on the old order of smarty processing, you may want to try
# setting this parameter to false.
$config['process_whole_template'] = false;

# CMSMS Debug Mode?  Turn it on to get a better error when you
# see {nocache} errors, or to allow seeing php notices, warnings, and errors in the html output.
# This setting will also disable browser css caching.
$config['debug'] = false;

# Output compression?
# Turn this on to allow CMS to do output compression
# this is not needed for apache servers that have mod_deflate enabled
# and possibly other servers.  But may provide significant performance
# increases on some sites.  Use caution when using this as there have
# been reports of incompatibilities with some browsers.
$config['output_compression'] = false;

#-----------------
#Database Settings
#-----------------

#This is your database connection information.  Name of the server,
#username, password and a database with proper permissions should
#all be setup before CMS Made Simple is installed.
$config['dbms'] = 'mysql';
$config['db_hostname'] = '';
$config['db_username'] = '';
$config['db_password'] = '';
$config['db_name'] = '';
#Change this param only if you know what you are doing
$config["db_port"] = '';


#If app needs to coexist with other tables in the same db,
#put a prefix here.  e.g. "cms_"
$config['db_prefix'] = '';

#Use persistent connections?  They're generally faster, but not all hosts
#allow them.
$config['persistent_db_conn'] = true;

#Use ADODB Lite?  This should be true in almost all cases.  Note, slight
#tweaks might have to be made to date handling in a "regular" adodb
#install before it can be used.
$config['use_adodb_lite'] = true;

#-------------
#Path Settings
#-------------

#Document root as seen from the webserver.  No slash at the end
#If page is requested with https use https as root url
#e.g. http://blah.com
$config['root_url'] = 'http://m.info';
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on')
{
$config['root_url'] = str_replace('http','https',$config['root_url']);
}

#Path to document root. This should be the directory this file is in.
#e.g. /var/www/localhost
$config['root_path'] = '/homepages/htdocs';

#Name of the admin directory
$config['admin_dir'] = 'admin';

#Where do previews get stored temporarily?  It defaults to tmp/cache.
$config['previews_path'] = '/homepages/htdocs/tmp/cache';

#Where are uploaded files put?  This defaults to uploads.
$config['uploads_path'] = '/homepages/htdocs/uploads';

#Where is the url to this uploads directory?
$config['uploads_url'] = $config['root_url'] . '/uploads';


#---------------
#Upload Settings
#---------------

#Maxium upload size (in bytes)?
$config['max_upload_size'] = 20000000;

#Permissions for uploaded files.  This only really needs changing if your
#host has a weird permissions scheme.
$config['default_upload_permission'] = '664';

#------------------
#Usability Settings
#------------------

#Allow smarty {php} tags?  These could be dangerous if you don't trust your users.
$config['use_smarty_php_tags'] = false;

#Automatically assign alias based on page title?
$config['auto_alias_content'] = true;

#------------
#URL Settings
#------------

#What type of URL rewriting should we be using for pretty URLs?  Valid options are:
#'none', 'internal', and 'mod_rewrite'.  'internal' will not work with IIS some CGI
#configurations. 'mod_rewrite' requires proper apache configuration, a valid
#.htaccess file and most likely {metadata} in your page templates.  For more
#information, see:
#http://wiki.cmsmadesimple.org/index.php/FAQ/Installation/Pretty_URLs#Pretty_URL.27s
$config['url_rewriting'] = 'mod_rewrite';

#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '.html';

#If you're using the internal pretty url mechanism or mod_rewrite, would you like to
#show urls in their hierarchy?  (ex. http://www.mysite.com/parent/parent/childpage)
$config['use_hierarchy'] = true;

#If using none of the above options, what should we be using for the query string
#variable?  (ex. http://www.mysite.com/index.php?page=somecontent)
$config['query_var'] = 'page';

#--------------
#Image Settings
#--------------

#Which program should be used for handling thumbnails in the image manager.
#See http://wiki.cmsmadesimple.org/index.php/User_Handbook/Admin_Panel/Content/Image_Manager for more
#info on what this all means
$config['image_manipulation_prog'] = 'GD';
$config['image_transform_lib_path'] = '/usr/bin/ImageMagick/';

#Default path and URL for uploaded images in the image manager
$config['image_uploads_path'] = '/homepages/htdocs/uploads/images';
$config['image_uploads_url'] = $config['root_url'] . '/uploads/images'; 


#------------------------
#Locale/Encoding Settings
#------------------------

#Locale to use for various default date handling functions, etc.  Leaving
#this blank will use the server's default.  This might not be good if the
#site is hosted in a different country than it's intended audience.
$config['locale'] = '';

#In almost all cases, default_encoding should be empty (which defaults to utf-8)
#and admin_encoding should be utf-8.  If you'd like this to be different, change
#both.  Keep in mind, however, that the admin interface translations are all in
#utf-8, and will be converted on the fly to match the admin_encoding.  This
#could seriously slow down the admin interfaces for users.
$config['default_encoding'] = 'utf-8';
$config['admin_encoding'] = 'utf-8';

#This is a mysql specific option that is generally defaulted to true.  Only
#disable this for backwards compatibility or the use of non utf-8 databases.
$config['set_names'] = true;

# URL of the Admin Panel section of the User Handbook
# Set none if you want hide the link from Error
$config['wiki_url'] = 'http://wiki.cmsmadesimple.org/index.php/User_Handbook/Admin_Panel';

?>
rjtpr
New Member
New Member
Posts: 6
Joined: Wed May 05, 2010 7:38 pm

Re: No forward slash after domain name on file manager

Post by rjtpr »

Hi,

Thanks for helping.Now the '/'  has appeared after the domain name on file manager :). Removed  the slash after content ( $config['root_path'] = '/mnt/target02/344057/397625/www.domainname.org/web/content/' ) and other uploads path.
.
****"www.domainname.org" isn't the  domain that i am using..

Thank you!
Post Reply

Return to “CMSMS Core”