Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Site not secure ??


zefeena

Recommended Posts

Hi,

I have definitely got SSL on my website, and when I am on my admin interface the little padlock shows in the browser.

However, it doesn't show on the shop - fair enough, it doesn't need to be a secret!  But once a person logs in, it still doesn't show the padlock, but oddly if you go to checkup, it kind of flashes up for a millisecond, then goes away, and also the actual address in the browser starts Https (when logged in).  Are the customers on a secure page? or is the lack of padlock (regardless of the https in browser), indicative that the page is not secure?

and is this something on my hosts side, or something I've got set up wrong?

Personally I really don't see why it matters, as I do not take any payments on the site (redirected to Paypal/worldpay hosted pages), but people care, so I guess I should!  

Any ideas please?  ( please use minimal tech speak, I've neglected by website for years and its on an old version, which according to my website is V2.3.4). Thank you

Running a botched up version of  osCommerce Online Merchant v2.3.4 bootstrap with the dresscode theme installed, numerous add-ons, terrible coding, terrible website, but will have to make do until I have made up for my losses and can risk shutting down for a couple of weeks while I start all over again. - I did not install my program but am endeavouring to fix it with your help.

Link to comment
Share on other sites

You need to check your site for stray "http://" as if it has these the padlock wll not show green. Loking at just your home page it has many of these. change these to "https://" and the padlock will trun green.

 

Link to comment
Share on other sites

How do I test for 'stray' http, and where might I find/change them.  thank you

Running a botched up version of  osCommerce Online Merchant v2.3.4 bootstrap with the dresscode theme installed, numerous add-ons, terrible coding, terrible website, but will have to make do until I have made up for my losses and can risk shutting down for a couple of weeks while I start all over again. - I did not install my program but am endeavouring to fix it with your help.

Link to comment
Share on other sites

So, do I literally have to work through each file one by one, or is there a magic way? ! 

Also, are there any files that should only be http, rather than https?

 

and thank you

 

Running a botched up version of  osCommerce Online Merchant v2.3.4 bootstrap with the dresscode theme installed, numerous add-ons, terrible coding, terrible website, but will have to make do until I have made up for my losses and can risk shutting down for a couple of weeks while I start all over again. - I did not install my program but am endeavouring to fix it with your help.

Link to comment
Share on other sites

I've checked the 'advanced-search' files and no mention of http:  and looked at various other random files and very few seem to contain it.  The couple I found, have made no difference it appears.

 

Running a botched up version of  osCommerce Online Merchant v2.3.4 bootstrap with the dresscode theme installed, numerous add-ons, terrible coding, terrible website, but will have to make do until I have made up for my losses and can risk shutting down for a couple of weeks while I start all over again. - I did not install my program but am endeavouring to fix it with your help.

Link to comment
Share on other sites

every http must change to https, some are more important to the browser than others, on the important ones you will lose tthe green padlock, on less important ones you keep the padlock but will lose the link or image using the http, if that maks sence,

Quick way? well yes but it depends on how confident you are! you can use tools like grepWin to do a global find and replace.

But if your not carefull you can do a lot of damage with that tool. I would recomend you do this in a code editor like notepad++ one file at a time, again just do a find and replace for http:// to https://

Start with the files the tool is telling you you have a problem with and check again each time it gives you a list to fix do it.

Or if your not happy doing that ask one of the developer to do it for you.

 

 

 

 

Link to comment
Share on other sites

I honestly can barely find mention of http://, other than in my application_top files.

My configure file first few rows look like this, should I not have any http:// bits here?

<?php
  define('HTTP_SERVER', 'http://domain.co.uk');
  define('HTTPS_SERVER', 'https://domain.co.uk'); 
  define('ENABLE_SSL', true); // secure webserver for checkout procedure?
  define('HTTP_COOKIE_DOMAIN', '.domain.co.uk');
  define('HTTPS_COOKIE_DOMAIN', '.domaint.co.uk');
  define('HTTP_COOKIE_PATH', '/');
  define('HTTPS_COOKIE_PATH', '/');
  define('DIR_WS_HTTP_CATALOG', '/');
  define('DIR_WS_HTTPS_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', '/home/xxxxxxxx/public_html/');
  define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . '/download/');
  define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
  

Running a botched up version of  osCommerce Online Merchant v2.3.4 bootstrap with the dresscode theme installed, numerous add-ons, terrible coding, terrible website, but will have to make do until I have made up for my losses and can risk shutting down for a couple of weeks while I start all over again. - I did not install my program but am endeavouring to fix it with your help.

Link to comment
Share on other sites

thank you.  I'll give that a go

 

Running a botched up version of  osCommerce Online Merchant v2.3.4 bootstrap with the dresscode theme installed, numerous add-ons, terrible coding, terrible website, but will have to make do until I have made up for my losses and can risk shutting down for a couple of weeks while I start all over again. - I did not install my program but am endeavouring to fix it with your help.

Link to comment
Share on other sites

Thank you.  That seems to have fixed it.  one little 's' missing, and been causing trouble for years! lol

Running a botched up version of  osCommerce Online Merchant v2.3.4 bootstrap with the dresscode theme installed, numerous add-ons, terrible coding, terrible website, but will have to make do until I have made up for my losses and can risk shutting down for a couple of weeks while I start all over again. - I did not install my program but am endeavouring to fix it with your help.

Link to comment
Share on other sites

you can do it in both configure files. Then search the forum for the htaccess code to put down, which will force your non https version of the site to https. At the moment it's accessible via both.

Link to comment
Share on other sites

Unfortuntly you will probably find it's not a fix for the site as a whole.

Try to browse your site and you find you lose the green padlock again.

No short cuts, you will have to fix all http errors to have the green padlock stay on all pages.

 

Link to comment
Share on other sites

  • 2 weeks later...

I've been on with this for a while, going through file after file.  I'm so certain I have been through EVERY file, and yet the problem continues!  Obviously I must have missed something vital, but I cannot see where!  I cannot find these 'forms' that throw up http, it seems it essentially every product and every category, so where on earth I can find that - or is it my database?

So for the minute I cannot look at another file, but I wonder what this in orange means? and as it has long passed June 30th 2018, what should I be doing to remedy this issue?!!!

2102295121_Screenshot2019-08-05at20_58_36.png.d7315e74bf827df488cb17b6911b8306.png

Running a botched up version of  osCommerce Online Merchant v2.3.4 bootstrap with the dresscode theme installed, numerous add-ons, terrible coding, terrible website, but will have to make do until I have made up for my losses and can risk shutting down for a couple of weeks while I start all over again. - I did not install my program but am endeavouring to fix it with your help.

Link to comment
Share on other sites

Forgive me if you know this already. To help with searching all your files.

If you do not have a local backup of your site can you download a complete backup from your cpanel?

image.png.07fa662f5eb632513774fee0126b8801.png

image.png.eb8790a29c47984e6cb84290ecb43feb.png

Your site will be in the public_html directory of the download.

Download and install notepad++ if you do not have it.

Go to Find in Files

image.png.66da55e8445214cd98ce69561d3dce21.png

Click this to point it to your downloaded public_html directory.

image.png.4cf203122bdbcbd0dc5991a51872f54c.png

Click "Find All" and you will get a list of files and details of which line your search criteria is.

Hope this helps

 

Live shop Phoenix 1.0.8.4 on PHP 7.4 Working my way up the versions.

Link to comment
Share on other sites

10 hours ago, zefeena said:

but I wonder what this in orange means

You will need to contact your host to get them to turn it off you may allso need to recofiguer your SSL it all depends on what server and what SSL is beeing used.

10 hours ago, zefeena said:

I'm so certain I have been through EVERY file, and yet the problem continues!

You will find that some of the http is not directly in any file it's beeing generated by the code when it genrates html for output. If your running a template you may have to dig around to find it.

 

Link to comment
Share on other sites

In your both configure.php, is your ENABLE_SSL are set to true ?

define('ENABLE_SSL', true);

I ask this because you have mied content with https and http

I listed all http I find in your advanced_search.php page :

<link rel="canonical" href="http://XXXXXXXXX/advanced_search_result.php?keywords=craft"  >

<a href="http://XXXXXXXXX/index.php"><img src="images/store_logo.png" 

<li><a href="http://XXXXXXXXX/specials.php">Specials</a></li>

<form name="et_quick_find" action="http://XXXXXXXXX/advanced_search_result.php" method="get"><div id="search"><input type="text" name="keywords" value="craft" id="search_input" onfocus="if(this.value == 'I am Looking for...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'I am Looking for...';}" />&nbsp;</div><input name="search" value="" type="submit"/></form>

<div class="img_link_wrapper"><a class="image-link" href="http://XXXXXXXXX/index.php"></a></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=192">OFFER OF THE WEEK</a></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=146">Bargains/Clearance</a></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=91">Bra & Lingerie Making</a><div class="drop-box-subcat"><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_138">Bra Making Information</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_22">Bra & Lingerie Kits</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_64">Patterns</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_24">Bra Fasteners</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=25">19mm Fasteners</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=26">28mm Fasteners</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=27">38mm Fasteners</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=28">Wider Fasteners</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=29">Continuous Hook & Eye Tape</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=73">Popper Tape</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=182">Extenders</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_31">Bra Fittings</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=39">Clear Findings</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=41">Coated Metal Findings</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=40">Enamelled Findings</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=168">Nursing Clips</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=43">Plastic Findings</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=42">Shiny Metal Findings (FLAT)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=183">Shiny Metal Findings (Type 2)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=45">Bikini Fasteners</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=44">Decorative Pieces</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=34">Suspenders Fittings</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=164">Clearance Packs</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_130">Fabric Pieces</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=127">Bra Liner/Cup Pieces</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=50">Bra Padding Foam</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=211">Duoplex & Cup Fabrics</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=128">Lace Tulle (Lingerie)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=210">Laminated Fabrics</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=156">Lingerie Fabric (other)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=152">Overall Lace Pieces</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=125">Powernet & Substitutes</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=126">Remnant Bags</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=133">Soft Jersey (Gusset)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=132">Stretch Fabric (Lingerie)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=129">Stretch Fabric (Lycra)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=144">Lounge/Nightwear Fabrics</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=191">Fleece Fabric Pieces</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_48">Fabrics (continuous)</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=49">Bra Cup/Liner Fabric</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=171">Bra Padding Foam</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=209">Duoplex & Cup Fabrics</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=151">Overall Lace</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=51">Powernet & Wing Fabric</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=131">Stretch Lingerie Fabric</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=165">Cotton Jersey (gusset)</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_136">Lace</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=135">Guipure Lace</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=137">Narrow Rigid Lace</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=134">Narrow Stretch Lace</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=23">Wide Lace Tulle</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=153">Wide Rigid Lace</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=65">Wide Stretch Lace</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=180">Border Lace</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=167">Lace - Discontinued</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_46">Elastic</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=72">Clearance Elastic</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=181">Elastic-Full Rolls</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=114">Frilled Elastic</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=193">Trim Elastics</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=52">Bra Plush Elastic</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=61">Bra Strap Elastic</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=62">Fold-Over Elastic</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=69">Knicker/Lingerie Elastics</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=70">Non-Slip Elastic</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=47">Rouleau/Spaghetti Strap</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=67">Transparent/Clear Elastics</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=68">Waistband/Sports Elastic</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_32">Ready Made Straps</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_195">Bra Cups</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=197">Full Cup Bra Cups</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=201">Plunge Bra Cups</a><div class="drop-box-3subcat responsive_position"><div class="3sub-cat-name">
										<a href="http://XXXXXXXXX/index.php?cPath=91_195_201_198">Plunge Bra Cups (88np)</a></div><div class="3sub-cat-name">
										<a href="http://XXXXXXXXX/index.php?cPath=91_195_201_208">Plunge Bra Cups (L919) BLACK</a></div><div class="3sub-cat-name">
										<a href="http://XXXXXXXXX/index.php?cPath=91_195_201_206">Plunge Bra Cups (L919) COOKIE</a></div><div class="3sub-cat-name">
										<a href="http://XXXXXXXXX/index.php?cPath=91_195_201_207">Plunge Bra Cups (L919) IVORY</a></div><div class="3sub-cat-name">
										<a href="http://XXXXXXXXX/index.php?cPath=91_195_201_202">Plunge Bra Cups (L919) NUDE</a></div><div class="3sub-cat-name">
										<a href="http://XXXXXXXXX/index.php?cPath=91_195_201_205">Plunge Bra Cups (L919) RED</a></div></div></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=199">Push-up Cups</a><div class="drop-box-3subcat responsive_position"><div class="3sub-cat-name">
										<a href="http://XXXXXXXXX/index.php?cPath=91_195_199_200">Boost Cups C5029</a></div></div></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=196">Strapless Bra Cups (L916)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=30">End of Range Bra Cups</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_37">Bra Wires</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=54">Bra Wire Info</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=55">Style 03 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=56">Style 05 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=57">Style 08 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=58">Style 09 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=163">Style 12 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=59">Style 14 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=60">Style 17 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=172">Style BBW3 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=53">Style 20 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=111">Style 30 Wires (limited)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=92">Style 107 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=93">Style VT1 Wires</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=63">Other Bra Wires</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_36">Plastic Bra Bones</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_74">Bra Seam Tape</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_203">Bra Wire Casing</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=33">Wire Casing</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=173">Wire Casing - Tricot</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=204">Wire Casing - FULL ROLLS</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_166">Tapes</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=91_189">Samples</a></div></div></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=75">Corset Making</a><div class="drop-box-subcat"><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_99">Bias Binding</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=101">Cotton Bias Binding (25mm)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=100">Duchess Bias Binding (20mm)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=102">Other Bindings (clearance)</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_78">Bone Casing</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_77">Bones</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=89">Flat Steel Bones (7mm)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=170">Lacing Bones</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=88">Spiral Steel Bones - Heavy</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=87">Spiral Steel bones - Regular</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=90">Other Bones</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=186">CLEARANCE</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_76">Busks</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=84">Busks with Silver Fittings</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=86">Other Busks</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=85">Swarowski Crystal Diamante Busks</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=169">Handmade Busks (limited)</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_79">Continuous Boning</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_124">Corsetry Fabrics (per metre)</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_94">Corsetry/Bridal Fabric Remnants</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_80">Eyelets</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=96">Eyelet Tape</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=98">Eyelets - packs with tools</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=97">Eyelets - Refill Packs</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_119">Hook & Eye Tape</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_83">Kits & Courses</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=176">Corset Kits</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=175">Hunting Corset</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_82">Laces & Lacing</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=95">Continuous Lacing Cord</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=108">Pre-Tipped Laces</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=179">Lace Tips/Aglets</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_104">Patterns</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_123">Suspenders</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_81">Tipping Fluid</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=75_103">Work Room Tools</a></div></div></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=140">Patterns</a><div class="drop-box-subcat"><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=140_141">Butterick</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=140_143">Kwik Sew</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=140_145">McCalls</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=140_142">Vogue</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=140_184">OUT OF PRINT</a></div></div></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=155">Trims</a></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=105">Sports Wear</a><div class="drop-box-subcat"><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=105_188">CLEARING: up to 80% off!</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=105_106">Sports Fabric (per metre)</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=105_109">Sports Fabric Pieces</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=105_107">Sportswear Patterns</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=105_185">T-Shirt Fabrics</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=105_190">Sports Accessories</a></div></div></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=110">Craft</a></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=115">General Sewing</a><div class="drop-box-subcat"><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=115_147">Elastic</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=115_149">Fabric</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=115_120">Fasteners</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=139">Jeans Buttons (no-sew)</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=122">Non-Sew Fasteners</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=121">Shirt & Tie Fasteners</a></div></div></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=115_116">Workroom</a><div class="drop-box-subsubcat responsive_position"><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=117">Accessories</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=148">Size Labels</a></div><div class="subsub-cat-name">
                                <a href="http://XXXXXXXXX/index.php?cPath=118">Workroom Tools</a></div></div></div></div></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=154">Threads</a></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=161">Zips</a><div class="drop-box-subcat"><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=161_187">CLEARANCE ZIPS</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=161_162">Concealed/Invisible Zips</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=161_177">Diamante Zips</a></div><div class="sub-cat-name">
						<a href="http://XXXXXXXXX/index.php?cPath=161_178">Sports Zips</a></div></div></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=150">Upholstery</a></div><div class="cat-name">
				 <a class="main_category" href="http://XXXXXXXXX/index.php?cPath=112">INFORMATION</a></div>        <div class="cat-name blog-link"><a class="main_category" href="http://XXXXXXXXX/articles.php">Articles</a></div>

                <div class="breadcrumbs_box"><a href="http://XXXXXXXXX" class="headerNavigation1">Top</a><a href="http://XXXXXXXXX/index.php" class="headerNavigation1">Catalog</a><a href="http://XXXXXXXXX/advanced_search.php" class="headerNavigation1">Advanced Search</a><span class="headerNavigation">Search Results</span><div class="clear"></div></div>

                <a class="product_img" href="http://XXXXXXXXX/product_info.php?products_id=6517">

                <a class="icon_cart_title" href="http://XXXXXXXXX/product_info.php?products_id=6517">

                    <a href="http://XXXXXXXXX/advanced_search_result.php?keywords=craft&amp;sort=3a&amp;action=buy_now&amp;products_id=6517"></a>

                <a class="product_img" href="http://XXXXXXXXX/product_info.php?products_id=6518">

                <a class="icon_cart_title" href="http://XXXXXXXXX/product_info.php?products_id=6518">

                    <a href="http://XXXXXXXXX/advanced_search_result.php?keywords=craft&amp;sort=3a&amp;action=buy_now&amp;products_id=6518"></a>
        
		<a class="product_img" href="http://XXXXXXXXX/product_info.php?products_id=6522">

                <a class="icon_cart_title" href="http://XXXXXXXXX/product_info.php?products_id=6522">

                    <a href="http://XXXXXXXXX/advanced_search_result.php?keywords=craft&amp;sort=3a&amp;action=buy_now&amp;products_id=6522"></a>

        <a class="product_img" href="http://XXXXXXXXX/product_info.php?products_id=6520">

                <a class="icon_cart_title" href="http://XXXXXXXXX/product_info.php?products_id=6520">
                    <a href="http://XXXXXXXXX/advanced_search_result.php?keywords=craft&amp;sort=3a&amp;action=buy_now&amp;products_id=6520"></a>

</div><div class="four columns product_wrapper count_3cols_col_2 count_2cols_col_1">
<div class="product">
    <div class="product-image-wrapper">
        <span class="product_sticker sticker_onsale_top_left sticker_onsale_display"></span>        <a class="product_img" href="http://XXXXXXXXX/product_info.php?products_id=6521">
            <img width="150" height="150" src="images/thumbs/150x150_teddybear patch green.JPG" title="Craft/Bag/Nursery Fabric - 100% Cotton Sateen - 'Teddybear Patch' - GREEN/Multi, 140cm wide, per metre" alt="Craft/Bag/Nursery Fabric - 100% Cotton Sateen - 'Teddybear Patch' - GREEN/Multi, 140cm wide, per metre" class="scale-with-grid" />            <div class="product-image-wrapper-hover"></div>

                <a class="icon_cart_title" href="http://XXXXXXXXX/product_info.php?products_id=6521">

                    <a href="http://XXXXXXXXX/advanced_search_result.php?keywords=craft&amp;sort=3a&amp;action=buy_now&amp;products_id=6521"></a>

        <a class="product_img" href="http://XXXXXXXXX/product_info.php?products_id=6519">

                <a class="icon_cart_title" href="http://XXXXXXXXX/product_info.php?products_id=6519">

                    <a href="http://XXXXXXXXX/advanced_search_result.php?keywords=craft&amp;sort=3a&amp;action=buy_now&amp;products_id=6519"></a>

        <a class="product_img" href="http://XXXXXXXXX/product_info.php?products_id=3736">
            
                <a class="icon_cart_title" href="http://XXXXXXXXX/product_info.php?products_id=3736">

                    <a href="http://XXXXXXXXX/advanced_search_result.php?keywords=craft&amp;sort=3a&amp;action=buy_now&amp;products_id=3736"></a>

    <a class="dresscode_submit" href="http://XXXXXXXXX/advanced_search.php?keywords=craft">Back</a>  </div>

            <a class="img_border"  href="http://XXXXXXXXX/product_info.php?products_id=4197" title="">

            <a href="http://XXXXXXXXX/product_reviews_info.php?products_id=4197&amp;reviews_id=22" title="">
            
            <li><a href="http://XXXXXXXXX/advanced_search.php">Advanced search</a></li>
            <li><a href="http://XXXXXXXXX/privacy.php">Privacy Notice</a></li>
            <li><a href="http://XXXXXXXXX/conditions.php">Conditions of Use</a></li>
            <li><a href="http://XXXXXXXXX/articles.php">Articles</a></li>

            <li><a href="http://XXXXXXXXX/contact_us.php">Contacts</a></li>
            <li><a href="http://XXXXXXXXX/shipping.php">Shipping &amp; Returns</a></li>
            <li><a href="http://XXXXXXXXX/products_new.php">New Products</a></li>

            <li><a href="http://XXXXXXXXX/account_history.php">Order history</a></li>
            <li><a href="http://XXXXXXXXX/reviews.php">Reviews</a></li>

 

with OsC 2.2 since 2006 ...

Link to comment
Share on other sites

Another thing : when i go to your website with the url domain.tld, I don't have the green lock in my browser. Same thing when I use http://www.domaine.tld.

But I have the green lock the first time when I use https://www.domaine.tld

 

with OsC 2.2 since 2006 ...

Link to comment
Share on other sites

You need to redirect to https using .htaccess. 

RewriteEngine on

# Force https
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
 

Contributions: Better Together and Quantity Discounts for osCommerce 2.3.x and Phoenix. See my profile for more details.

Link to comment
Share on other sites

  • 3 months later...

If you have a back up of your site on your PC, get PSPad or Notepad++. Use the search files function to search for "http". This is not the normal find or search function. Search files looks at all the files in the folder you point it at, including sub folders. If you have no back up, then download your site now! 

Live shop Phoenix 1.0.8.4 on PHP 7.4 Working my way up the versions.

Link to comment
Share on other sites

On 7/23/2019 at 1:12 PM, burt said:

Run a few pages through

https://www.whynopadlock.com/

and post the results here.

Most likely those pages which are supposed to be secure are calling an insecure item from elsewhere.

Helpfull @burt! While preparing moving host, the hoster that I am discussing hosting with, said my site is not standard SSL. I added the advised text to the .htaccess file, all connections are secure now. Thanks @Jack_mcs 🙂

 

Text added:

#these 4 lines force SSL usage
RewriteEngine On
RewriteCond %{HTTP_HOST} <domainname>\.nl [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.<mydomainname>.nl/$1 [R,L]

I dare to do this because I have used SSL on my own PC for a long time now, and I dare to say that I am the best returning visitor of my site... 🙂
 

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...