Jump to content


Corporate Sponsors


Latest News: (loading..)

strub

Member Since 31 May 2007
Offline Last Active Yesterday, 21:53
-----

Topics I've Started

Help to create best Checkout Design

13 April 2012, 09:31

Hi,

I was wondering about your shops checkout design. Did you try different things? And what was the best Design concerning conversion rate?

If we have found together a nice "Best Checkout Design" I will programm a contribution out of it.

Here is a nice article which I think is a good fundametal start.
http://uxdesign.smashingmagazine.com/2011/04/06/fundamental-guidelines-of-e-commerce-checkout-design/

Thanks for helping find a good checkout process.

Feedback on my new Store

07 April 2012, 18:43

Hi,

I have spent quite a lot time in this shop, I think it must be over 100 hours optimizing it.

Now, I hope I didn't forget anything.

So I would be glad if you could give me some suggestions or what could still be made better.

Many thanks for your time in advance.


By the way, some highlights are:
- Ajax add to cart button
- Live validation for formulars



Here's the new shop

multiple language newsletter

31 March 2012, 21:54

Hi,

For my shop, I have almost finsihed my multiple language newsletter manager support.

The problem was that you could only send newsletters in one language.


So how it works:
In the newsletter manager you can create a new newsletter. Depending on the langauge set up, it shows for each language a seperate input field for the title and content.

So if sending the newsletter it looks in the table customers which language the customers has choosen when creating the account and sending it depending on the language.

The same goes for the visior_newsletter contribution.


If there is huge interest in that I would write the contribution with a nice documentation. So just let me know.

Site hacked through images folder

14 June 2011, 06:30

Hi,

One of my older site (OSC v2.2 RC2a)is still being hacked.

There are being uploaded very mysterious files to the images directory such as: allnet.php, dvd.php, indo.php and so on.


Now, I have deleted filemanager as well as define_language.php. Furthermore, I have made a .htaccess password file for the admin. Lastly I added a .htaccess file for the images directory like this:

# Prevent directory listing
IndexIgnore *
Options All -Indexes

# Secure directory by disabling script execution
AddHandler cgi-script .php .php2 .php3 .php4 .php5 .php6 .php7 .php8 .pl .py .jsp .asp .htm .html .shtml .sh .cgi
Options -ExecCGI
<Files ~ "\.(php*|s?p?html|cgi|pl)$">
deny from all
</Files>

# Don't show this file
<Files .htaccess>
order allow,deny
deny from all
</Files>

# Force download
<Files *.*>
  ForceType application/octet-stream
#  Header set Content-Disposition attachment
</Files>

But they still upload these files after some hours. Did I miss something? Thanks in advance.

ajax add to cart button for listing and product pages

09 June 2011, 15:18

Hi,

I am workin on a ajax add to cart button. Everything works fine expect for the product_infp.php page. If a product has attributes the bm_shopping_cart.php module gets not updated.
I really don't find the problem to this. But I assume that includes/classes/shopping_cart.php is the problem somewhere in the add_cart function:

What did I do:
added some javascript code in template_top.php: (just a code snippet)
var url="addtocart.php?products_id="+id+"&cart_quantity="+anzahl;

Then addtocart.php looks like this:
<?php
header('Content-type: text/html; charset=iso-8859-1');
require('includes/application_top_cart.php'); 

require(DIR_WS_LANGUAGES . $language . '/modules/boxes/bm_shopping_cart.php');

								
								$cart->add_cart($_REQUEST['products_id'], $cart->get_quantity(tep_get_uprid($_REQUEST['products_id'], $_REQUEST['id']))+$_REQUEST['cart_quantity'], $_REQUEST['id']);
								
							
								
require('includes/modules/boxes/bm_shopping_cart.php');

				$scart=new bm_shopping_cart();
				$SCARTC=$scart->data_shopping_cart();
				echo $SCARTC;

require('includes/application_bottom.php');
?>

Hope someone can help me out. Thanks in advance.