Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[PHP] A good PHP Shop

0 views
Skip to first unread message

Jaxon

unread,
Mar 7, 2002, 4:49:01 PM3/7/02
to Bradley Goldsmith, Peter Haywood, php...@lists.php.net, php-g...@lists.php.net
hi

how does it compare to fishcart?

cheers,
jaxon

> -----Original Message-----
> From: Bradley Goldsmith [mailto:br...@massive.com.au]
> Sent: Thursday, March 07, 2002 4:40 PM
> To: 'Peter Haywood'; php...@lists.php.net; php-g...@lists.php.net
> Subject: RE: [PHP] A good PHP Shop
>
>
> Check out phpshop.org.
>
> It's base implimentation is a little dry (but extremely functional).
>
> You can view a heavily modified version in the wild at my shop:
> www.artsupplies.com.au
>
>
> All the best,
> Brad
>
>
> -----Original Message-----
> From: Peter Haywood [mailto:pe...@peterhaywood.com]
> Sent: Thursday, 7 March 2002 2:31 PM
> To: php...@lists.php.net; php-g...@lists.php.net
> Subject: [PHP] A good PHP Shop
>
>
> Hello,,
>
> I am looking at setting up PHP driven shop.
>
> Can anyone recommend one? Or which ones to stay away from? And why?
>
> I am reviewing phpShop at the moment, and it looks pretty nicely featured.
>
> Thanks,
>
> Pete
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>


Matt

unread,
Mar 7, 2002, 6:50:38 PM3/7/02
to ja...@salamander.net, Bradley Goldsmith, Peter Haywood, php-g...@lists.php.net
Don't forget The Exchange Project, which is now called osCommerce:
http://www.oscommerce.com/

Bradley Goldsmith

unread,
Mar 7, 2002, 4:40:11 PM3/7/02
to Peter Haywood, php...@lists.php.net, php-g...@lists.php.net

Jaxon

unread,
Mar 7, 2002, 5:12:51 PM3/7/02
to Bradley Goldsmith, Peter Haywood, php-g...@lists.php.net
www.fishcart.org :)

i've been trying to decide which one to use to tackle a big mall project,
but don't know enough about 'carts to make an intelligent assessment yet.

cheers,
jaxon

> -----Original Message-----
> From: Bradley Goldsmith [mailto:br...@massive.com.au]

> Sent: Thursday, March 07, 2002 5:06 PM
> To: 'ja...@salamander.net'; Bradley Goldsmith; 'Peter Haywood';
> php-g...@lists.php.net
> Subject: RE: [PHP] A good PHP Shop
>
>
> Dunno, Havn't looked at it. What's the Url?
>
> -bcg


>
>
>
> -----Original Message-----
> From: Jaxon [mailto:ja...@salamander.net]
> Sent: Friday, 8 March 2002 8:49 AM
> To: Bradley Goldsmith; 'Peter Haywood'; php...@lists.php.net;
> php-g...@lists.php.net
> Subject: RE: [PHP] A good PHP Shop
>
>
> hi
>
> how does it compare to fishcart?
>
> cheers,
> jaxon
>
> > -----Original Message-----
> > From: Bradley Goldsmith [mailto:br...@massive.com.au]
> > Sent: Thursday, March 07, 2002 4:40 PM
> > To: 'Peter Haywood'; php...@lists.php.net; php-g...@lists.php.net

Bradley Goldsmith

unread,
Mar 7, 2002, 5:05:38 PM3/7/02
to ja...@salamander.net, Bradley Goldsmith, Peter Haywood, php-g...@lists.php.net

Mark

unread,
Mar 7, 2002, 5:57:22 PM3/7/02
to php...@lists.php.net, php-g...@lists.php.net
Hi,
I'm having a problem dealing with #'s in my urls. Most browsers will
not send the # with the request because they know it's only for use
with a named anchor.

so when you type in: http://mysite.com/test.php?id=0#top
all that the browser will send as a request is
http://mysite.com/test.php?id=0

this is good. My problem is when a weird browser sends the #top as
part of the request. when this happens, the value of id is now
"0#top". I need to make sure this doesn't happen. I know I could do
some ereg_replace on all my variables, but I would have to do this on
every request and I'd rather avoid it.

in php.ini there is a variable called arg_separator.input that looks
like it can help but when I add the line:

arg_separator.input = "&#"

I still get $id = "0#top"

so it doesn't seem to be working. I have php 4.0.6

thanks for any ideas,
- Mark

George Whiffen

unread,
Mar 8, 2002, 3:44:28 PM3/8/02
to php-g...@lists.php.net, ja...@salamander.net
Here's a mini-checklist on tricky bits, some of which are as much about
payment as
much as cart:

1. Delivery & Packing especially pricing on composite loads, destination,
different speeds.

2. Sales taxes.

3. Quantity discounts, discount vouchers, reusable vouchers, loyalty cards.

4. Affiliate and referral tracking and their accounts.

5. Order processing, separate auth and debit, refunds, partial refunds

6. Stock control.

and, of course, currencies, languages etc., if you want to do the proper job.

Depending on your target base, I'd be particularly careful about the shopping
process. It's really
easy to put off customers, especially the general public. For example,
insisting on user
registration before you get to the cart or order will lose you business,
unless you're the likes
of zend store and are guaranteed confident customers.

If you want to look at a mall for ideas, try http://www.ishop.co.uk which
only has php at the
backend but does show you can get rich functionality, without having to have
Amazon's
budget.

George

0 new messages