Missing the www from homepage url
Hello there,
I've created a store at http://www.selosfilatelia.com but when I get inside the categories or even link to the logo, the main page url changes to http://selosfilatelia.com and the www disappears.
Why does this happen? How can I keep the www on all pages?
Thank you,
Pedro
Re: Missing the www from homepage url
Post the top 20 lines of your /includes/configure.php file
Re: Missing the www from homepage url
Hi Cobra, thanks for the fast reply!
The first lines of the Configure.php are:
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
define('HTTP_SERVER', 'http://selosfilatelia.com');
define('HTTPS_SERVER', 'https://selosfilatelia.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
Re: Missing the www from homepage url
Add the www to these paths and you should be good.
define('HTTP_SERVER', 'http://selosfilatelia.com');
define('HTTPS_SERVER', 'https://selosfilatelia.com');
Re: Missing the www from homepage url
Hi again,
I tried to edit the file but when I upload it via FTP I get the "553 Permission denied" error. Any hints?
Thanks,
Pedro
Re: Missing the www from homepage url
Are you sure it's 553 ? That's an email error code.
Check the permissions on that file on the server.
Re: Missing the www from homepage url
Perfect results!
I edited the permissions and then solved the problem.
Thanks so much!
Re: Missing the www from homepage url
Quote:
Originally Posted by
pedro_aa
Perfect results!
I edited the permissions and then solved the problem.
Thanks so much!
dont forget to change the permissions back.