Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help error On SSL


JIM454

Recommended Posts

Posted

Wy website has been working find until today now I'm getting this error when I try to use my SSL.

 

 

Warning: Unknown(): open_basedir restriction in effect. File(/home/jim454/public_html/firestone/create_account.php) is not within the allowed path(s): (/home/secure7:/usr/lib/php:/usr/local/lib/php:/tmp) in Unknown on line 0

 

Warning: Unknown(/home/jim454/public_html/firestone/create_account.php): failed to open stream: Operation not permitted in Unknown on line 0

 

Warning: Unknown(): open_basedir restriction in effect. File(/home/jim454/public_html/firestone/create_account.php) is not within the allowed path(s): (/home/secure7:/usr/lib/php:/usr/local/lib/php:/tmp) in Unknown on line 0

 

Warning: Unknown(/home/jim454/public_html/firestone/create_account.php): failed to open stream: Operation not permitted in Unknown on line 0

 

Warning: (null)(): Failed opening '/home/jim454/public_html/firestone/create_account.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in Unknown on line 0

Posted

Can I see your website address please?

Jason

 

Simple 1-2-3 Intructions on how to get, install and configure SSL

 

The Google Sandbox explained

 

Simple to follow instructions on how to change the look of your OSC

 

How To Make A Horrible OSC Website

 

my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP

 

my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...

Posted

Rick, who installed this SSL? Is this "shared SSL" with hostgator.com?

Jason

 

Simple 1-2-3 Intructions on how to get, install and configure SSL

 

The Google Sandbox explained

 

Simple to follow instructions on how to change the look of your OSC

 

How To Make A Horrible OSC Website

 

my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP

 

my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...

Posted

Regardless, you have to adjust your configure.php files. You'll first have to find out from hostgator if your SSL was installed on http://celticfirestone.com, or http://www.celticfirestone.com.

 

One is located in catalog/includes/configure.php.

The other is located in catalog/admin/includes/configure.php.

 

Assuming it was installed on www.celticfirestone.com (if it was without the www, just take the www's off):

You must change these so that they are like this, around line 13:

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.celticfirestone.com');

define('HTTPS_SERVER', 'https://www.celticfirestone.com');

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.celticfirestone.com');

define('HTTPS_COOKIE_DOMAIN', 'www.celticfirestone.com');

define('HTTP_COOKIE_PATH', '/catalog/');

 

 

Now if you're on using "Shared SSL" -- and again, you'll have to ask hostgator, then you'll have to ask them how to configure your configure.php files. I would *imagine* it would look something like this:

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.celticfirestone.com');

define('HTTPS_SERVER', 'https://secure7.hostgator.com/celticfirestone.com');

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.celticfirestone.com');

define('HTTPS_COOKIE_DOMAIN', 'www.celticfirestone.com');

define('HTTP_COOKIE_PATH', '/catalog/');

 

You need to get on the horn with hostgator and figure out how this SSL was installed, and what kind of SSL it is, and configure your configure.php files accordingly and upload them to the proper directories on your server.

Jason

 

Simple 1-2-3 Intructions on how to get, install and configure SSL

 

The Google Sandbox explained

 

Simple to follow instructions on how to change the look of your OSC

 

How To Make A Horrible OSC Website

 

my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP

 

my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...

Posted
Regardless, you have to adjust your configure.php files. You'll first have to find out from hostgator if your SSL was installed on http://celticfirestone.com, or http://www.celticfirestone.com.

 

One is located in catalog/includes/configure.php.

The other is located in catalog/admin/includes/configure.php.

 

Assuming it was installed on www.celticfirestone.com (if it was without the www, just take the www's off):

You must change these so that they are like this, around line 13:

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.celticfirestone.com');

define('HTTPS_SERVER', 'https://www.celticfirestone.com');

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.celticfirestone.com');

define('HTTPS_COOKIE_DOMAIN', 'www.celticfirestone.com');

define('HTTP_COOKIE_PATH', '/catalog/');

Now if you're on using "Shared SSL" -- and again, you'll have to ask hostgator, then you'll have to ask them how to configure your configure.php files. I would *imagine* it would look something like this:

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.celticfirestone.com');

define('HTTPS_SERVER', 'https://secure7.hostgator.com/celticfirestone.com');

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'www.celticfirestone.com');

define('HTTPS_COOKIE_DOMAIN', 'www.celticfirestone.com');

define('HTTP_COOKIE_PATH', '/catalog/');

 

You need to get on the horn with hostgator and figure out how this SSL was installed, and what kind of SSL it is, and configure your configure.php files accordingly and upload them to the proper directories on your server.

 

My SSL been working find for a year until today I email hostgator and this was the reply I got back.

 

I have restarted Apache with ssl, the cert on your site is now working as it normally does.

Posted

Tell them that no it's not! I've done the back-and-forth support ticket thing many times. Tell the brainiac host that he can go to the site himself if he doesnt' believe you -- show him the URL. It's not working, and the SSL is not installed properly, or your configure files are not properly configured, and they need to tell you how to configure them based on the type of SSL you have, and hte location as to where it's installed.

Jason

 

Simple 1-2-3 Intructions on how to get, install and configure SSL

 

The Google Sandbox explained

 

Simple to follow instructions on how to change the look of your OSC

 

How To Make A Horrible OSC Website

 

my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP

 

my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...

Posted
Tell them that no it's not! I've done the back-and-forth support ticket thing many times. Tell the brainiac host that he can go to the site himself if he doesnt' believe you -- show him the URL. It's not working, and the SSL is not installed properly, or your configure files are not properly configured, and they need to tell you how to configure them based on the type of SSL you have, and hte location as to where it's installed.

 

They got it fix.

Thanks Jason for your help.

Posted

okay, make sure your pictures are linked like img src-"/catalog/images/picture.gif"

 

instead of: img src="http://www.celtic.com/images/picture.gif"

 

Get the http out of there so that box doesn't pop up about non secure items -- OR just put an S in front of the http -- I would just make it a simple /catalog/images/picture.gif link.

Jason

 

Simple 1-2-3 Intructions on how to get, install and configure SSL

 

The Google Sandbox explained

 

Simple to follow instructions on how to change the look of your OSC

 

How To Make A Horrible OSC Website

 

my toolbox: All things WordPress-related - All things Adobe-related - PHP Designer 2007 - Codecanyon Junkie - Crimson Editor - Winmerge - phpMyAdmin - WS_FTP

 

my installed contributions: Category Banners, File Upload feature-.77, Header Tags, Sort_Product_Attributes_1, XSellv2.3, Price Break 1.11.2, wishlist 3.5, rollover_category_images_v1.2, Short_Description_v2.1, UPSXML_v1_2_3, quickbooks qbi_v2_10, allprods v4.4, Mouseover-effect for image-buttons 1.0, Ultimate_SEO, AAP 1.41, Auto Select State Value, Fast Easy Checkout, Dynamic SiteMap v2.0, Image Magic, Links Manager 1.14, Featured Products, Customer Testimonials, Article Manager, FAQ System, and I'm sure more ...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...