Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

New website: shop.outlab.net


Guest

Recommended Posts

Posted

It took me a while, well a very long while :rolleyes: , but I'm satisfied with it now.

 

http://shop.outlab.net/

 

The shop is part of my private collection vinyl records/cd's. I decided to start selling a part of it, so I'm very curious about how things will go. At the same time I added a Lyrics and Pictures part in the hope to get more people. I hope you'll like it!

 

Please, all feedback is welcome...

 

Thx, Paul

Posted

nice work overall.

 

with secure pages I get an SSL warning as well as some images in the title show up with http:// like this one

http://shop.outlab.net/images/table_background_login.gif

 

The titles on the right navigation column are way too close to the edge. You could allow a bit more spacing. I guss using the table padding for the info boxes.

 

One other difficulty I noticed was I had to scroll up to use the search and top controls. You could add an extra box on the right side or add them at the bottom too.

Posted

thx for the reaction

 

One thing I solved is to not place Google Ads when having secure pages by using

<?php if ($request_type == 'NONSSL') { ?>
... google javascript...
<?php } ?>

( Google doesn't offer an https version of the AdSense ad code at this time)

 

I don't understand though why the 'tep_image' got a link to the http server, while for example 'tep_image_button' are getting a link to the https server. My own images have absolute urls and cause no problems.

Posted
I don't understand though why the 'tep_image' got a link to the http server, while for example 'tep_image_button' are getting a link to the https server. My own images have absolute urls and cause no problems.

 

Alright, my own fault. I forgot I changed this code myself a while back. It is solved now..

Posted
thx for the reaction

 

One thing I solved is to not place Google Ads when having secure pages by using

<?php if ($request_type == 'NONSSL') { ?>
... google javascript...
<?php } ?>

( Google doesn't offer an https version of the AdSense ad code at this time)

 

I don't understand though why the 'tep_image' got a link to the http server, while for example 'tep_image_button' are getting a link to the https server. My own images have absolute urls and cause no problems.

 

Actually, they do :)

 

<?php if ( $_SERVER["SERVER_PORT"] == '443' ) { ?>
<script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct="UA-xxxxx-x";
urchinTracker();
</script>
<?php
} else {
?>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct="UA-xxxxx-x";
urchinTracker();
</script>
<? } ?>

 

Iggy

Everything's funny but nothing's a joke...

Posted
I mean Google Ads, not Analytics :)

 

Doh! :blush:

Everything's funny but nothing's a joke...

Posted
The titles on the right navigation column are way too close to the edge. You could allow a bit more spacing. I guss using the table padding for the info boxes.

 

The problem is I don't have access to any Windows browsers at this moment. Just Mac OS X.

And browsershots.org seems to serve only Linux temporarily. I wonder if other people think too that titles on the right navigation column are to close to the edge?

Archived

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

×
×
  • Create New...