osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

problem getting secure site to work

This is a discussion on problem getting secure site to work within the osCMax v2 Installation issues forums, part of the osCMax v2.0 Forums category; I can't get my secure site catalog to work. I have a shared ssl. "my site is http://www.proper-designs.com" my secure ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v2.0 Forums > osCMax v2 Installation issues

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Reply

 

LinkBack Thread Tools
  #1  
Old 09-03-2008, 09:24 PM
New Member
 
Join Date: Dec 2003
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
bagged89s10
Unhappy problem getting secure site to work

I can't get my secure site catalog to work. I have a shared ssl.

"my site is http://www.proper-designs.com"
my secure site is https://quasar.secureguards.com/~prope/

i followed the instructions and used to following settings during install.

non secure settings
WWW Address: http://www.proper-designs.com/catalog/
Webserver Root Directory: /home2/prope/public_html/catalog/
HTTP Cookie Domain: http://www.proper-designs.com
HTTP Cookie Path: /catalog/

secure settings
Secure WWW Address: https://quasar.secureguards.com/~prope/catalog/
Secure Cookie Domain: quasar.secureguards.com
Secure Cookie Path: /~prope/catalog/

when i go to https://quasar.secureguards.com/~prope/catalog......this is the error i get.



Warning: Unknown(): open_basedir restriction in effect. File(/home2/prope/public_html/catalog/index.php) is not within the allowed path(s): (/home2/quasar/:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp) in Unknown on line 0

Warning: Unknown(/home2/prope/public_html/catalog/index.php): failed to open stream: Operation not permitted in Unknown on line 0

Warning: Unknown(): open_basedir restriction in effect. File(/home2/prope/public_html/catalog/index.php) is not within the allowed path(s): (/home2/quasar/:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp) in Unknown on line 0

Warning: Unknown(/home2/prope/public_html/catalog/index.php): failed to open stream: Operation not permitted in Unknown on line 0

Warning: (null)() [function.include]: Failed opening '/home2/prope/public_html/catalog/index.php' for inclusion (include_path='/usr/lib/php:.:/usr/php4/lib/php:/usr/local/php4/lib/php') in Unknown on line 0


how do i fix this error?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Advertisement
  #2  
Old 09-05-2008, 12:45 AM
jpf's Avatar
jpf jpf is offline
Moderator

 
Join Date: Sep 2003
Location: Manitoba, Canada
Posts: 1,792
Thanks: 5
Thanked 104 Times in 90 Posts
Rep Power: 12
jpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to all
Default Re: problem getting secure site to work

Please post your /catalog/includes/configure.php file (without the Database info).
__________________
JPF - osCMax Fourm Moderator
Try out our osCMax at: Live Catalog Demo
Limited access Admin: Live Admin Demo
Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 09-05-2008, 04:41 AM
New Member
 
Join Date: Dec 2003
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
bagged89s10
Default Re: problem getting secure site to work

Quote:
Originally Posted by jpf View Post
Please post your /catalog/includes/configure.php file (without the Database info).
<?php
/*
osCMax v2.0, Open Source E-Commerce Solutions
http://www.osCDox.com

Copyright 2006 osCMax2005 osCMax

Released under the GNU General Public License
*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://www.proper-designs.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://quasar.secureguards.com'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'www.proper-designs.com');
define('HTTPS_COOKIE_DOMAIN', 'quasar.secureguards.com');
define('HTTP_COOKIE_PATH', '/catalog/');
define('HTTPS_COOKIE_PATH', '/~prope/catalog/');
define('DIR_WS_HTTP_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/~prope/catalog/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/');
define('DIR_FS_CATALOG', '/home2/prope/public_html/catalog/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 09-05-2008, 11:34 AM
jpf's Avatar
jpf jpf is offline
Moderator

 
Join Date: Sep 2003
Location: Manitoba, Canada
Posts: 1,792
Thanks: 5
Thanked 104 Times in 90 Posts
Rep Power: 12
jpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to alljpf is a name known to all
Default Re: problem getting secure site to work

And also note you should have:
Code:
  define('USE_PCONNECT', 'false'); // use persistent connections?
  define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
Make sure sessions are in mySQL - but that is not looking like the problem.



Code:
Warning: Unknown(): open_basedir restriction in effect. File(/home2/prope/public_html/catalog/index.php) is not within the allowed path(s): (/home2/quasar/:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp) in Unknown on line 0
Also ask your host about:
/home2/prope/public_html/catalog/index.php is not within the allowed paths: /home2/quasar/ .....
__________________
JPF - osCMax Fourm Moderator
Try out our osCMax at: Live Catalog Demo
Limited access Admin: Live Admin Demo
Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Advertisement
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Secure your site with an IP trap michael_s New osCommerce Contributions 0 05-07-2008 04:17 AM
Secure your site with an IP trap michael_s New osCommerce Contributions 0 04-30-2008 11:30 AM
How to Secure a Oscommerce Site? Evette0220 osCMax v2 Installation issues 1 10-31-2006 09:02 AM
Site doesn't work in IE/Mozilla rogerj30 osCommerce 2.2 Installation Help 1 08-08-2004 04:32 AM
Secure site help CMWM osCMax v1.7 Discussion 3 04-30-2004 02:47 PM


All times are GMT -8. The time now is 11:50 AM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax