Jump to content


Corporate Sponsors


Latest News: (loading..)

crimble crumble

Member Since 13 Jul 2005
Offline Last Active Mar 21 2012, 02:19
-----

Topics I've Started

Paypal Standard IPN phone number field required?

08 February 2012, 23:33

I've installed Paypal standard IPN and it works fine but I don't understand why the customer has to enter their telephone number when paying with a credit card. My shop does not require the customer provide a phone number. Is this just the way PayPal standard is set up or is there something wrong on my end?

#RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]

29 January 2012, 21:01

I was having problems in my admin configuration where if I tried to change the store name it wouldn't make the change in the database. This was confusing since it worked just fine on my local xammp server. After testing my database user permissions I contacted my host and they fixed the problem by commenting this line out of my .htaccess file.

[i]#RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L][/i]

That worked, although I don't understand why. However then my domain wasn't redirecting propery from domain.com to www.domain.com. The host then added this line:

<IfModule mod_rewrite.c>
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_HOST} !^www..+$ [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>

This solved the redirect but caused the admin problem to come back. So now I'm going mental.

remove item from cart instantly?

28 January 2012, 19:36

Can anyone recommend an add on that would make it easy to remove an item from the cart? So instead of checking a box and clicking update you can just click once and have it instantly update via ajax/jquery.

Thanks.