Re: Order notes

2010-09-14 Thread Alessandro Ronchi
://groups.google.com/group/satchmo-users?hl=en.

 --
 You received this message because you are subscribed to the Google Groups 
 Satchmo users group.
 To post to this group, send email to satchmo-us...@googlegroups.com.
 To unsubscribe from this group, send email to 
 satchmo-users+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/satchmo-users?hl=en.





-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: Save logged user cart

2010-08-27 Thread Alessandro Ronchi
it's present also in 0.8.1 version?
thanks in advance, best regards.
-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Save logged user cart

2010-08-26 Thread Alessandro Ronchi
I want the user to be able to recover its cart when he returns to my site.

1) user logon
2) user put things on cart
3) user logoff
4) user returns and logon
5) -- user has the cart full

5) is not working

Is it possible?

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: New Arrivals on shop home

2010-08-25 Thread Alessandro Ronchi
2010/8/25 Aziz Bookwala aziz.man...@gmail.com

 @alessandro: where is the satchmo code hosted, where can i submit my tags?


http://bitbucket.org/chris1610/satchmo/wiki/Home

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: New Arrivals on shop home

2010-08-24 Thread Alessandro Ronchi
2010/8/20 Aziz Bookwala aziz.man...@gmail.com

 Hello All
 Working on my first satchmo project. Just wanted to know, what would be the
 best way to go about displaying new arrivals on the home page?


You can make a template tag that simply outputs the latest arrivarls.

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: Customizing payment confirmation mail

2010-08-24 Thread Alessandro Ronchi
You can also make a template tag and return the output on email template.


-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: New google analytics code

2010-08-24 Thread Alessandro Ronchi
2010/8/23 Alessandro Ronchi alessandro.ron...@soasi.com

 The new code doesn't work with checkout tracking. Did anyone managed
 to get new analytics code work with the async code?
 Does I need a change in the checkout templates too?



I think I solved.
also receipt.html should be changed, accordingly to
http://code.google.com/intl/it-IT/apis/analytics/docs/tracking/gaTrackingEcommerce.html

this is the code I wrote:

script type=text/javascript
//_gaq.push(['_setAccount', 'UA-X-X']);
_gaq.push(['_trackPageview']);
_gaq.push(['_addTrans',
 {{order.id}},
 {{Store}},
 {{order.total|truncate_decimal}},
 {{order.tax|truncate_decimal}},
 {{order.shipping_sub_total|truncate_decimal}},
 {{order.ship_city}},
 {{order.ship_state}},
 {{order.ship_country}}
]);

{% for item in order.orderitem_set.all %}
_gaq.push(['_addItem',
 {{order.id}},
 {{item.product.sku}},
 {{item}},
 {{item.category}},
 {{item.unit_price|truncate_decimal}},
 {{item.quantity}}
]);
{% endfor %}

_gaq.push(['_trackTrans']);

/script

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: New google analytics code

2010-08-23 Thread Alessandro Ronchi
The new code doesn't work with checkout tracking. Did anyone managed
to get new analytics code work with the async code?
Does I need a change in the checkout templates too?

Thanks in advance,

2010/8/4 Alessandro Ronchi alessandro.ron...@soasi.com:


 2010/8/4 John-Scott Atlakson john.scott.atlak...@gmail.com

 Satchmo 'tip' uses the latest async code snippet from Google.

 However, Google seems to change their recommendation of where to place
 this snippet without necessarily announcing it.

 Currently they recommend placing the snippet just before the closing
 /head tag [1].

 From a cursory search of the current tip of Satchmo, this snippet is
 inserted into satchmo_store/shop/templates/shop/base.html just before the
 closing /body tag [2]. I'm nearly 100% confident that this was the
 recommended location previously. But as mentioned, Google seems to randomly
 change this recommendation without explanation. They have their own reasons,
 based on incredible volumes of data, so I'm not inclined to argue with them.

 However, to the OP's point, using the async snippet should/will reduce
 page load times without affecting your current tracking, so you should
 upgrade your snippet. I do not use Satchmo as an all-in-one solution, it's
 always integrated with a proper Django project, so I do not rely on the
 built in templates very much. As such, I cannot speak to any issues you
 might have upgrading your particular installation.

 Cheers,


 I'm sure that async was to put on header also some months ago, when it was
 still a beta feature and not the main js code for stats.
 Surely ga.js has to be included just before body end.

 I think Satchmo integration of google analytics is not standard, because it
 track orders data. If you tell me that it's simply a matter of change the
 code included as this code:
 http://bitbucket.org/chris1610/satchmo/changeset/e94bae47e14f
 and the checkout process does the rest of tracking without problems, it
 needs only to be splitten in two parts, one for urchin in the bottom (with
 an if to check if urchin is used) and one before head closing, for async
 mode.


 --
 Alessandro Ronchi
 http://www.soasi.com

 Hobby  Giochi
 http://hobbygiochi.com
 http://www.facebook.com/hobbygiochi




-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: Roadmap for 1.0

2010-08-19 Thread Alessandro Ronchi
2009/11/2 Bruce Kroeze bkro...@gmail.com


 - Start using django-localeurl for SEO and any number of other great
 reasons.


did anyone managed to use django-localeurl with satchmo?
is it possible without changing something in satchmo code?


-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Catch product save

2010-08-18 Thread Alessandro Ronchi
I need to track if some product fields changes and are saved, like
description, title or price (but not items_in_stock) and execute in those
cases a function.

How can I do that?

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: New google analytics code

2010-08-04 Thread Alessandro Ronchi
2010/8/4 John-Scott Atlakson john.scott.atlak...@gmail.com


 Satchmo 'tip' uses the latest async code snippet from Google.

 However, Google seems to change their recommendation of where to place this
 snippet without necessarily announcing it.

 Currently they recommend placing the snippet just before the closing
 /head tag [1].

 From a cursory search of the current tip of Satchmo, this snippet is
 inserted into satchmo_store/shop/templates/shop/base.html just before the
 closing /body tag [2]. I'm nearly 100% confident that this was the
 recommended location previously. But as mentioned, Google seems to randomly
 change this recommendation without explanation. They have their own reasons,
 based on incredible volumes of data, so I'm not inclined to argue with them.

 However, to the OP's point, using the async snippet should/will reduce page
 load times without affecting your current tracking, so you should upgrade
 your snippet. I do not use Satchmo as an all-in-one solution, it's always
 integrated with a proper Django project, so I do not rely on the built in
 templates very much. As such, I cannot speak to any issues you might have
 upgrading your particular installation.

 Cheers,


I'm sure that async was to put on header also some months ago, when it was
still a beta feature and not the main js code for stats.
Surely ga.js has to be included just before body end.

I think Satchmo integration of google analytics is not standard, because it
track orders data. If you tell me that it's simply a matter of change the
code included as this code:
http://bitbucket.org/chris1610/satchmo/changeset/e94bae47e14f
and the checkout process does the rest of tracking without problems, it
needs only to be splitten in two parts, one for urchin in the bottom (with
an if to check if urchin is used) and one before head closing, for async
mode.


-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: limit payment methods by order amount

2010-07-29 Thread Alessandro Ronchi
2010/7/28 lzantal lzan...@gmail.com

 Hi,

 On Jul 27, 12:50 pm, Sergej Felde sfe...@googlemail.com wrote:
  Hello,
 
  you can extend livesettings for you payment and ask values in your
  checkout-template.
 
 That sounds much simpler. i have not delved into livesettings much.
 Do you have an example of that how you would do it?



An example would be great. I need not to show or disable the payment for
that amount. It sounds to me I need to change the checkout process, not only
the single payment.
Any hints?

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: Admin in demo store

2010-07-29 Thread Alessandro Ronchi
2010/7/28 lzantal lzan...@gmail.com

 Hi,

 Did not know that there is a demo site online:)
 You can add that to the admin very easily
 Just add this in any of your app/admin.py ::
 
 admin.site.unregister(Product)
 # add/update new attributes to ProductOptions
 ProductOptions.inlines.append(ThemeProductInline)
 ProductOptions.list_display = ('name', 'sku', 'unit_price',
 'items_in_stock', 'get_subtypes')
 ProductOptions.list_display_links = ('name', 'sku')
 # register Product again with adminsite
 admin.site.register(Product, ProductOptions)



Thank you very much!
I think that it should be added to satchmo trunk, It's not intrusive and
it's a very nice feature that comes free.

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Admin in demo store

2010-07-28 Thread Alessandro Ronchi
Is it possible to view the admin of
http://demo.satchmoproject.com/
?

Does the admin now cointains any list-editable field for products and
orders? It's a great and nearly time unexpensive feature...

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



limit payment methods by order amount

2010-07-27 Thread Alessandro Ronchi
I need to exclude COD when order is more than an amount (for example 1000€).
Is it possible? How?

What's the best place to include such a code?

Thanks in advance.

-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Satchmo Bank Transfer Payment module

2010-06-24 Thread Alessandro Ronchi
I just published my satchmo Bank Transfer Payment module:
http://github.com/aronchi/satchmo-bank-transfer

Feel free to include it in satchmo source, as well as satchmo paypal
express module if you want.


-- 
Alessandro Ronchi
http://www.soasi.com

Hobby  Giochi
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



more best_sellers pages

2010-05-19 Thread Alessandro Ronchi
Is it possible to have more than one page of best sellers products?


-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

Hobby  Giochi, l'e-commerce del divertimento
http://hobbygiochi.com
http://www.facebook.com/hobbygiochi

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Different shipping costs for some post codes

2010-04-03 Thread Alessandro Ronchi
I need to get a different shipping cost for some administrative areas
of Italy. Is it possible? I'm using 0.8.1 and a zone based shipping
module.


-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

Hobby  Giochi, l'e-commerce del divertimento
http://hobbygiochi.com
http://www.facebook.com/pages/Forli/Hobby-Giochi/185311523755

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Order shipping addressee

2010-03-24 Thread Alessandro Ronchi
I have a problem with order shipping addressee.
I'm using 0.8.1 version (I'm waiting 1.x to translate my code).

With my paypal express checkout module I get shipping and billing
informations, but I save only billing.
I can't find where I can save correctly the shipping contact informations

This is my code:
http://github.com/aronchi/satchmo-express-checkout/blob/master/payment/modules/paypal_express/views.py

It seems to me the error is on

pp_express_pay_ship_info_verify

that returns the contact with bill informations

first_name = response_dict[FIRSTNAME][0]
last_name = response_dict[LASTNAME][0]


instead of

addressee = response_dict[SHIPTONAME][0]

But I see I can return only a contact. How and where I can write the
order.ship_addressee ??

Thanks in advance, best regards.




--
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



To sell also out of stock products

2010-03-10 Thread Alessandro Ronchi
I want to sell also out of stock products, telling the users that it
will require some more time to deliver.
Is it possible?
How?

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: Translate templates and apps outside satchmo

2010-03-04 Thread Alessandro Ronchi
I solved with LOCALE_PATHS.

The strange thing is that it doesn't translate payment methods on /checkout/

The translation string is on a file loaded by LOCALE_PATHS.

What can I check?

2010/3/5 Alessandro Ronchi alessandro.ron...@soasi.com:
 I made a repository of common custom apps and templates outside
 satchmo (objviously) and my stores. The objective is to have a single
 directory to mantain for common needs.



-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: Translate templates and apps outside satchmo

2010-03-04 Thread Alessandro Ronchi
2010/3/5 Alessandro Ronchi alessandro.ron...@soasi.com:
 I solved with LOCALE_PATHS.

 The strange thing is that it doesn't translate payment methods on /checkout/

 The translation string is on a file loaded by LOCALE_PATHS.

 What can I check?

Found the solution as a satchmo patch.

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: StaticGenerator

2010-02-13 Thread Alessandro Ronchi
2010/2/6 BlackKnight sijojamesj...@gmail.com

 I have used it. Product Pages,Category Pages.

 Checkout was

 But had to use jquery to get some dynamic contents to be shown. Also
 some views to serve those jquery requests.

 Also added a feautur in admin to delete cached and regenerate cache.

 Setting it up with nginx reverse proxy to apache was a pain.

 Let nginx handle static_generator files , static(media files) and
 admin (media). Also ssl



Can you write a little howto?

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Paypal express checkout for Satchmo

2010-02-10 Thread Alessandro Ronchi
We've released our module for paypal express checkout:
http://github.com/aronchi/satchmo-express-checkout

It's for 0.8.1 version, but it should be simple to port it for 0.9 and 1.

Maybe we can integrate it on the latest trunk.
We've used it for a year, so it should be quite stable.

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: StaticGenerator

2010-02-04 Thread Alessandro Ronchi
On Thu, Feb 4, 2010 at 3:33 PM, Bob Waycott bobwayc...@gmail.com wrote:

 Nope, but I'd be interested to see what you discover if you try it out.


I'm worried about the pages that cannot be cached:
- POST and GET requests
- pages after a product is added to a cart

exclude the checkout process is simple, because it can cache only some
regexp url, but I cannot understand how to make non standard requests skip
the static file.

Another problem is that files needs to be deleted by hand on page
modification.

On wordpress wp-super-cache is simply great, a such thing on django (and
satchmo) should be greater.

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: new satchmo store

2010-01-12 Thread Alessandro Ronchi
On Fri, Jan 8, 2010 at 8:32 PM, Julie Shum julie.r.s...@gmail.com wrote:
 Hi,

 I just wanted to announce my new Satchmo store:

 http://www.shopjoielle.com.

 The community here has been a great help in getting this store up and
 running.  Everyone has been very helpful and the responses are quick!
 I've also been able to solve many issues by reading through the
 archives. Thanks everyone!

What did you use for the flash zoom on products images?

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento
-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




ImproperlyConfigured: bad settings.LANGUAGE_CODE

2010-01-03 Thread Alessandro Ronchi
With satchmo 0.8.1 I get this error:
http://dpaste.com/140489/

only the night and it seems only from search engines.

Do you know what can cause that?
Maybe the night I run out of memory because of too many request?

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




Re: RML visual editor

2009-12-30 Thread Alessandro Ronchi
On Tue, Dec 29, 2009 at 10:40 PM, Chris Moffitt ch...@moffitts.net wrote:


  That sounds pretty interesting. I'm sure folks would like to see what
 you've come up with.


Done:
http://www.soasi.com/2009/12/make-rml-templates-from-openoffice-org-odt-files/



-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




Re: RML visual editor

2009-12-29 Thread Alessandro Ronchi
On Mon, Dec 28, 2009 at 3:15 PM, Chris Moffitt ch...@moffitts.net wrote:

 I think this would be a great idea for the sprint :)

 I'd love to see a more pluggable backend so that we could move away from
 RML to something a little simpler to use and maintain.


I've found a way to translate an openoffice.org odt to rml, and with some
adjustments it's a ready template to use.

If you need an hint, I can write something on the procedure.

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




RML visual editor

2009-12-28 Thread Alessandro Ronchi
Is there any way to make a simple rml file in a visual way, instead of
putting elements from templates with manual mm spacing?

Thanks in advance, best regards.

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




Re: RML visual editor

2009-12-28 Thread Alessandro Ronchi
On Mon, Dec 28, 2009 at 1:40 PM, Yu Fu Hou manofphysi...@gmail.com wrote:

 I think the rml files are terrible.


The packing slip and invoices are made of it, does anyone managed to change
them in an easy way?

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




Packing slip url doesn't work

2009-12-10 Thread Alessandro Ronchi
I cannot get packing slip and invoice printing.
When I try the url, I get:

App u'print', model u'packingslip', not found.

What's the problem?
-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




A new satchmo store

2009-12-01 Thread Alessandro Ronchi
We proudly announce our new satchmo store:
http://hobbygiochi.com

Please add it to the gallery on the website, if it's possibile.


-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby  Giochi, l'e-commerce del divertimento

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




blocktrans doesn't work on email confirmation

2009-11-24 Thread Alessandro Ronchi
In my order_complete i have some blocktrans tags, but they are not
translated. Is it normal?
trans tags correctly translates.

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.




Re: Price addendum with COD

2009-11-23 Thread Alessandro Ronchi
On Tue, Sep 15, 2009 at 7:39 AM, Alessandro Ronchi
alessandro.ron...@soasi.com wrote:
 2009/9/15 Bruce Kroeze bkro...@gmail.com:

 There is not any way to do this currently.  Please open a ticket and
 I'll do my best to get it done for you.

 http://bitbucket.org/chris1610/satchmo/issue/899/extra-fee-to-customers-who-select-cod

 Thank you.

Any good news?
I really need that, maybe with some advice I can add this feature from myself.
What's the best approach to add order amount with some payment methods?



-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




Re: New products, most selled template tags

2009-11-23 Thread Alessandro Ronchi
On Sat, Nov 21, 2009 at 7:25 PM, Iain Mac Donald
google.to...@picturenow.co.uk wrote:
 On Sat, 21 Nov 2009 18:45:44 +0100
 Alessandro Ronchi alessandro.ron...@soasi.com wrote:

 I want to show a list of new products, a list of more selled and a
 list of the recents comments in every page.

 The Large project has examples of Recently Added, Best
 Sellers and Product Ratings. Maybe that is what you need?

I have already a page for that, but I want them to be available in a
custom tag to show them on every page instead of a dedicated one.



-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




New products, most selled template tags

2009-11-21 Thread Alessandro Ronchi
I want to show a list of new products, a list of more selled and a
list of the recents comments in every page.

Is there any template tag I can use, or a code snippet you can share to help me?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




AttributeError: 'module' object has no attribute 'tieredweight'

2009-11-18 Thread Alessandro Ronchi
When trying to check a new 0.9 installation I get this error:

http://dpaste.com/121919/

What's the possible cause?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




Re: AttributeError: 'module' object has no attribute 'tieredweight'

2009-11-18 Thread Alessandro Ronchi
If I comment both
#'shipping.modules.tieredweight',
#'satchmo_ext.satchmo_toolbar',


I can go further but I get this error:
http://dpaste.com/121945/

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




Re: AttributeError: 'module' object has no attribute 'tieredweight'

2009-11-18 Thread Alessandro Ronchi
On Wed, Nov 18, 2009 at 4:09 PM, Chris Moffitt ch...@moffitts.net wrote:

 What version of Django are you using?


 I solved this two problems (I think I had some import problems).

Now I'm stuck with:
http://dpaste.com/121971/

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




Re: AttributeError: 'module' object has no attribute 'tieredweight'

2009-11-18 Thread Alessandro Ronchi
On Wed, Nov 18, 2009 at 4:42 PM, Alessandro Ronchi 
alessandro.ron...@soasi.com wrote:



 On Wed, Nov 18, 2009 at 4:09 PM, Chris Moffitt ch...@moffitts.net wrote:

 What version of Django are you using?


  I solved this two problems (I think I had some import problems).

 Now I'm stuck with:
 http://dpaste.com/121971/


I'm using the latest django version: 1.1.1.

satchmo_check says I have no conf problem.


SettingNotSet('%s config group does not exist' % group)

the last line is, in source code:

SettingNotSet: unprintable instance object

how can I know what's the setting I have to do without the name?


-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




Re: SettingNotSet at / on server, but works in shell

2009-11-18 Thread Alessandro Ronchi


On 18 Nov, 15:26, davis dv...@yahoo.com wrote:
 I'm not quite sure what that change is supposed to be, but I did try
 changing if loading.app_cache_ready(): to if True:, and that
 didn't work.


I have the same problem. Tried to change that line but didn't worked.

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




Re: SettingNotSet at / on server, but works in shell

2009-11-18 Thread Alessandro Ronchi
On Wed, Nov 18, 2009 at 7:04 PM, Alessandro Ronchi 
alessandro.ron...@soasi.com wrote:



 On 18 Nov, 15:26, davis dv...@yahoo.com wrote:
  I'm not quite sure what that change is supposed to be, but I did try
  changing if loading.app_cache_ready(): to if True:, and that
  didn't work.
 

 I have the same problem. Tried to change that line but didn't worked.


I'm actually using memcached, but other cache doesn't change (and memcached
works for other satchmo 0.8 instances in the same machine)

I've tried also mod_wsgi, but It doesn't change. I get an internal server
error and in logs I get the same result.
I  would like to use mod_wsgi, but I can't make it shows the traceback on
debug instead standard apache 500 error...


-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




Re: SettingNotSet at / on server, but works in shell

2009-11-18 Thread Alessandro Ronchi
If I put a comment on those lines from settings:
#satchmo_ext.recentlist.context_processors.recent_products
#satchmo_ext.recentlist.middleware.RecentProductMiddleware,
#'satchmo_ext.recentlist',

or I make the Gloria's change on
satchmo/apps/product/urls

it works for me.

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--

You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=.




Import osCommerce data

2009-11-16 Thread Alessandro Ronchi

Is there anyone who made a script to import product data to satchmo
from an osCommerce installation?

What's the best and fastest way, for you?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Satchmo atom feeds

2009-10-30 Thread Alessandro Ronchi
I need to make satchmo feeds smaller, with products ordered by data and
showing only the latest products (50?100?).

Is is possible?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com
http://www.linkedin.com/in/ronchialessandro

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: CREDITCHOICES

2009-10-09 Thread Alessandro Ronchi

On Thu, Oct 8, 2009 at 6:28 PM, lzantal lzan...@gmail.com wrote:

 Hi,

 When you say Custom modules, What this module does?
 Did you set the payment settings in store settings?

Yes, but None has creditchoices settings. Is it mandatory?



-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Explicit prices for single users

2009-10-09 Thread Alessandro Ronchi

On Fri, Oct 9, 2009 at 3:27 AM, Bob Waycott bobwayc...@gmail.com wrote:
 Man. Just did a huge integration for another client on this same topic. Have
 been mulling over porting the functionality to Satchmo the last few days.
 Basically, built a custom system that's tacked on to a catalog that accepts
 nearly 100,000 custom price levels  tiers, all delineated by unique product
 skus  customer accounts. As a user browses the store catalog, they see
 either the standard price, their tiered price, or their account-specific
 price override.
 Not to boast, but it's pretty badass in my opinion.
 Maybe I should get hacking on a Satchmo friendlier version.

It would be great. Please share it :)

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: CREDITCHOICES

2009-10-07 Thread Alessandro Ronchi
In my custom modules I have this problem:

lun, 31 ago 2009 18:16:40 configuration DEBUGSettingNotSet: PAYMENT_COD.
CREDITCHOICES
lun, 31 ago 2009 18:16:40 configuration DEBUGSettingNotSet:
PAYMENT_PAYPAL_EXPRESS.CREDITCHOICES
lun, 31 ago 2009 18:16:40 configuration DEBUGSettingNotSet:
PAYMENT_BANK_TRANSFER.CREDITCHOICES


Do you know what does it means?



-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Explicit prices for single users

2009-10-06 Thread Alessandro Ronchi

It's possible to make explicit prices for products to a single user,
instead of a group?
http://www.satchmoproject.com/docs/svn/pricing.html

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Product to reorder signal or email.

2009-09-25 Thread Alessandro Ronchi
I need to know with a warning email if a product is at 0 or 1 quantity. Is
it possible to attach an email warning to a out_of_stock signal?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Product to reorder signal or email.

2009-09-25 Thread Alessandro Ronchi
On Fri, Sep 25, 2009 at 3:57 PM, Chris Moffitt ch...@moffitts.net wrote:

 That example fires off an email when someone registers on your site.
 Modifying this to listen to the out_of_stock signal is trivial.


Is there a list of satchmo signals somewhere?


-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Product to reorder signal or email.

2009-09-25 Thread Alessandro Ronchi
On Fri, Sep 25, 2009 at 5:22 PM, Bob Waycott bobwayc...@gmail.com wrote:

 Well, you can always go reading thru the source code for the product app.
 There should be a signals.py in there I believe that defines them. You can
 ack/grep thru the source code looking for all mention of out_of_stock and
 find where .send() is called.
 Then you could submit a ticket  a patch to have it included in the doc.


Thank you!

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: add to cart button is disabled

2009-09-25 Thread Alessandro Ronchi

On Sat, Sep 26, 2009 at 1:40 AM, Bruce Kroeze bkro...@gmail.com wrote:

 On Fri, Sep 25, 2009 at 2:05 PM, Bob Waycott bobwayc...@gmail.com wrote:
  Do your products actually have inventory?

 Yes, this would normally be the reason why it is disabled.  Easy way
 to check, turn on the flag to sell without inventory in your store
 config.

It writes:
Sorry, we don't have any of that combination available.

So it seems it's out of stock :)


--
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Price addendum with COD

2009-09-22 Thread Alessandro Ronchi

is my ticket correct? I hope it's not an hard request...

On Tue, Sep 15, 2009 at 8:39 AM, Alessandro Ronchi
alessandro.ron...@soasi.com wrote:
 2009/9/15 Bruce Kroeze bkro...@gmail.com:

 There is not any way to do this currently.  Please open a ticket and
 I'll do my best to get it done for you.

 http://bitbucket.org/chris1610/satchmo/issue/899/extra-fee-to-customers-who-select-cod

 Thank you.


 --
 Alessandro Ronchi

 SOASI
 Sviluppo Software e Sistemi Open Source
 http://www.soasi.com




-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Thoughts from Djangocon and request for your input

2009-09-18 Thread Alessandro Ronchi

On Fri, Sep 18, 2009 at 10:58 PM, Chris Moffitt ch...@moffitts.net wrote:
 I can definitely appreciate the need to improve the docs. The question I
 have is, where should we spend the effort? Can someone give some ideas on
 which areas would be most useful for users that have Satchmo running but now
 need more docs.

Maybe some more customization examples.

If you teach people how easy is to make new modules and how to
contribute them, more contributes will come I think :)

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Order notes by email

2009-09-16 Thread Alessandro Ronchi

Is anyone using order notes?

2009/9/15 Alessandro Ronchi alessandro.ron...@soasi.com:
 In my email order_placed_notice.txt I have


 {% if order.notes %}
 {% trans Notes %}
 ---
 {{ order.notes }}
 {% endif %}

 but notes are not sent by email. The note I checked is inserted before
 order confirmation.
 Where is the problem?

 I'm using satchmo 0.8.1 trunk




-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Price addendum with COD

2009-09-15 Thread Alessandro Ronchi

2009/9/15 Bruce Kroeze bkro...@gmail.com:

 There is not any way to do this currently.  Please open a ticket and
 I'll do my best to get it done for you.

http://bitbucket.org/chris1610/satchmo/issue/899/extra-fee-to-customers-who-select-cod

Thank you.


-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Order notes by email

2009-09-15 Thread Alessandro Ronchi

In my email order_placed_notice.txt I have


{% if order.notes %}
{% trans Notes %}
---
{{ order.notes }}
{% endif %}

but notes are not sent by email. The note I checked is inserted before
order confirmation.
Where is the problem?

I'm using satchmo 0.8.1 trunk


-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Price addendum with COD

2009-09-14 Thread Alessandro Ronchi

I need to add some euros for COD payments. Is it possible?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Price addendum with COD

2009-09-14 Thread Alessandro Ronchi

2009/9/14 Jim Robert jim.mixt...@gmail.com:
 I think he wants to charge an extra fee to customers who select COD
 (probably because there is more risk for the company with COD)

Yes, it's true. It's not because of the risk. Our postage system ask
6€ extra fee for COD payments, and we need to charge them to the
customer.

I'm already using the COD standard module, but it doesn't have this
feature, as far as I know.



-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: mandatory Phone number

2009-09-14 Thread Alessandro Ronchi

2009/9/14 Simon si...@luijk.co.uk:
 Yes, You can change that in livesettings in the admin.

It's hardcoded with other billing informations?
what's chained with id_SHOP__BILLING_DATA_OPTIONAL ?



-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



ask newsletter subscription after order

2009-09-03 Thread Alessandro Ronchi
I want to put a newsletter subscription check on order confirm. So one
customer can subscribe when submitting an order.
Is it possible?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Payment options available only on some countries

2009-09-03 Thread Alessandro Ronchi
I need to exclude COD payments for foreign countries.
Is it possible? How can I do that? Any ideas?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Custom Payment Module location

2009-09-02 Thread Alessandro Ronchi
2009/9/1 lifewithryan lifewithr...@gmail.com


 If I want to write my own payment module, can I add it as an app in my
 project root or does it need to live in payment/modules within the
 Satchmo tree?



You can leave it in your project root.

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



CREDITCHOICES

2009-08-31 Thread Alessandro Ronchi
In my custom modules I have this problem:

lun, 31 ago 2009 18:16:40 configuration DEBUGSettingNotSet:
PAYMENT_COD.CREDITCHOICES
lun, 31 ago 2009 18:16:40 configuration DEBUGSettingNotSet:
PAYMENT_PAYPAL_EXPRESS.CREDITCHOICES
lun, 31 ago 2009 18:16:40 configuration DEBUGSettingNotSet:
PAYMENT_BANK_TRANSFER.CREDITCHOICES


Do you know what does it means?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



request.session and memcached

2009-08-29 Thread Alessandro Ronchi
In our paypal_express custom payment we use:

if 'paypal_express_token' in request.session:
paypal_express_token = request.session['paypal_express_token']

We had a problem with 2 users making payment at the same time. It seems the
paypal_express_token was the same (it's strange because it's a timestamped
value)

Is it possible that memcached make confusion from 2 sessions?
-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



satchmo.log always resets

2009-08-29 Thread Alessandro Ronchi
Is it normal that satchmo.log gets truncated every time I reset apache? Is
it possible to append data instead of reset it?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: PayPal Module

2009-08-27 Thread Alessandro Ronchi

2009/8/26 Ryan Headley lifewithr...@gmail.com:
 Alessandro,

 Do you have that as a custom module within satchmo?
 are you planning to release it back into the satchmo community?

Yes, it's a custom module and yes, we're planning to release it  after
some more testing.




-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: PayPal Module

2009-08-26 Thread Alessandro Ronchi

2009/8/25 lifewithryan lifewithr...@gmail.com:

 It would appear that the PayPal module is literally just using the
 PayPal account to pay for a given product.  Is there a PayPal module
 available to Satchmo that uses the PayPal Credit Card authorization
 services??

We've made a paypal express checkout module that gives the user the
possibility to pay with credit card without subscribing to paypal.
you can try here:
www.detectorpoint.com



-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



trouble with django 1.0.3

2009-08-24 Thread Alessandro Ronchi

I get this error with django 1.0.3:

http://dpaste.com/84568/

Do you know what's the problem


-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: trouble with django 1.0.3

2009-08-24 Thread Alessandro Ronchi

2009/8/24 Chris Moffitt ch...@moffitts.net:
 Which version of Satchmo are you using? If you're using satchmo tip, you'll
 need to use Django 1.1

I'm using the 0.8.1


-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Contribute a patch or fill a bug with the new system

2009-06-30 Thread Alessandro Ronchi

We have discovered a problem and we want to contribute a small but
important patch to Satchmo. Is it possible? How can we do that?

-- 
Alessandro Ronchi

SOASI
Sviluppo Software e Sistemi Open Source
http://www.soasi.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Admin: Perms for /settings?

2009-06-15 Thread Alessandro Ronchi
2009/4/6 Chris Moffitt ch...@moffitts.net


 The settings view is supposed to require that the user be a staff member
 to  see it. So, it should be secure but if it is not working for some
 reason, please let us know.


I think it shoud be better to limit setting access to administrators only,
and insert a specific permission for every other staff user.
In our installation we need to give access to a staff user to handle orders,
but we don't want him to change settings, and now it's impossible to
achieve.

-- 
Alessandro Ronchi
Skype: aronchi

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Two different sites on the same server

2009-04-28 Thread Alessandro Ronchi

I need to put two different sites with satchmo, with different
databases, in the same machine.
I have two virtual hosts and I have problems with memcached.

It seems they conflicts with easy other, and I get a lot of 404 errors.
Is it possible? How can I solve it?

If I disable one site the other works.

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



AttributeError: 'ModPythonRequest' object has no attribute 'session'

2009-04-04 Thread Alessandro Ronchi

If I open this url
http://www.detectorpoint.com/product/view/recent
instead of
http://www.detectorpoint.com/product/view/recent/

I get this error. Is there a solution or a way to redirect the first
url to the second?



Mod_python error: PythonHandler django.core.handlers.modpython

Traceback (most recent call last):

  File /usr/lib/python2.4/site-packages/mod_python/apache.py, line
299, in HandlerDispatch
result = object(req)

  File 
/var/www/vhosts/detectorpoint.com/django/django_src/django/core/handlers/modpython.py,
line 228, in handler
return ModPythonHandler()(req)

  File 
/var/www/vhosts/detectorpoint.com/django/django_src/django/core/handlers/modpython.py,
line 205, in __call__
response = middleware_method(request, response)

  File 
/var/www/vhosts/detectorpoint.com/django/satchmo_src/satchmo/recentlist/middleware.py,
line 26, in process_response
recent = request.session.get('RECENTLIST', [])

AttributeError: 'ModPythonRequest' object has no attribute 'session'



-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Feed does not validate

2009-03-25 Thread Alessandro Ronchi
http://validator.w3.org/feed/check.cgi?url=www.detectorpoint.com%2Ffeed%2Fatom

Do you know why?

Does your feed validate?

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: feed category doesn't work if slug contains -

2009-03-24 Thread Alessandro Ronchi
On Tue, Mar 24, 2009 at 2:53 AM, Chris Moffitt ch...@moffitts.net wrote:

 Sorry about that. I've just been busy and haven't had the time to look at
 tickets as much as I'd like. Can you point out the simple ones and I'll be
 happy to take a look.


this one is very important:
http://www.satchmoproject.com/trac/ticket/691

http://www.satchmoproject.com/trac/ticket/641
http://www.satchmoproject.com/trac/ticket/677
http://www.satchmoproject.com/trac/ticket/654
http://www.satchmoproject.com/trac/ticket/650

This one is not so simple but I think it's very important
http://www.satchmoproject.com/trac/ticket/683

If you will accept some more patches, people will submit them more.
Thanks in advance!

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: feed category doesn't work if slug contains -

2009-03-18 Thread Alessandro Ronchi
On Wed, Mar 18, 2009 at 2:40 AM, Chris Moffitt ch...@moffitts.net wrote:

 If you wouldn't mind, could you put in a ticket so we don't lose track of
 it.


Done.

I submitted some simple patches in this months with tickets but they never
get into the trunk...

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Change url of product and category pages

2009-03-14 Thread Alessandro Ronchi
On Sat, Mar 14, 2009 at 9:35 PM, Bruce Kroeze bkro...@gmail.com wrote:

 Please take a look at satchmo_utils.urlhelper.replace_urlpattern.  That
 will do what you want.


great!
Thank you!


-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Question about brand display

2009-03-09 Thread Alessandro Ronchi

On Sun, Mar 8, 2009 at 10:30 PM, Laszlo Antal lzan...@gmail.com wrote:
 Hi,
 I added a brand with the large test store.
 It did not get displayed anywhere.
 Is it something as simple as editing the template or am I missing
 something?

You can get the brand image from product and display it on product pages.


-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



reusing satchmo lookup_translation

2009-03-02 Thread Alessandro Ronchi

I want to add a model in my satchmo store to make product prices sets
(between 100 and 1000€, between 1000 to 2000, ecc.)

I need to make my model name and description translated, and I've
tried to reuse satchmo lookup_translation, but my template the
{{object.translated_name}} and {{object.translated_description}} are
empty.

This is my model, what's wrong?
http://dpaste.com/4633/

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



also_purchased

2009-03-02 Thread Alessandro Ronchi

Is also_purchased field working or it needs some hacks to calculate
the items purchased together?

It seems empty also if there's an order with 2 items (and the first is
the one I'm looking at)

How can I put it in my product page?

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Product offer

2009-02-28 Thread Alessandro Ronchi

On Wed, Dec 24, 2008 at 11:47 AM, Alessandro Ronchi
alessandro.ron...@soasi.com wrote:
 2008/12/24 Alessandro Ronchi alessandro.ron...@soasi.com:

 I thought it can be a problem of database definition.
 I've checked and price table has emtpy column expires, but it seems
 it's not null.

 The database is correct, the fields are null.
 Is the code that it's wrong, for me.

 qty_discounts = product.price_set.exclude(expires__isnull=False,
 expires__lt=datetime.date.today()).filter(quantity__lte=qty)

 filters out prices that have expires NOT NULL AND have expires before
 today, which gets all correct prices but doesn't  order them.

 to do what we want I think it should be ordered like that:

 val = qty_discounts.order_by('-quantity').order_by('expires')[0].dynamic_price

 instead of current

 val = qty_discounts.order_by('-quantity')[0].dynamic_price

 don't you think?

With that simple mod
val = qty_discounts.order_by('-quantity', 'expires')[0].dynamic_price

I can get this result:
http://www.detectorpoint.com/product/italia-1940-45-seconda-guerra-mondiale/

The correct barred price (without expiration) and the current price
(with expiration) shown.

Without that ordering it shows the same price.

If you want I can share the template tag I use to show the old barred
price, but please correct this bug into the two trunks because now it
doesn't show the correct price if you set two.

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Paypal error

2009-02-28 Thread Alessandro Ronchi

I've got this error for my custom paypal express checkout module:
2009-02-28 14:48:45,767 satchmo.utils: DEBUGNo url found for
PAYPAL_EXPRESS_PAYPAL_EXPRESS_satchmo_checkout-step2
2009-02-28 14:48:45,768 satchmo.utils: DEBUGNo url found for
PAYPAL_EXPRESS_PAYPAL_EXPRESS_satchmo_checkout-cancel

do you know what's the problem?

Thanks in advance, best regards.

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Is satchmo search case sensitive?

2009-02-19 Thread Alessandro Ronchi

On Thu, Feb 19, 2009 at 3:12 PM, Robson Dantas biu.dan...@gmail.com wrote:
 Hi Alessandro.

 I´m not a Satchmo expert, but I´ve changed my database collation to CI (case
 insensitive) and the search works with no problem. Which database are u
 using ? Can u check your collation and send here ?

I'm using postgresql.
It's strange because I've checked the search listeners and it uses
icontains, which should be case unsensitive.


-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Is satchmo search case sensitive?

2009-02-19 Thread Alessandro Ronchi

On Thu, Feb 19, 2009 at 4:34 PM, Robson Dantas biu.dan...@gmail.com wrote:
 show lc_collate

C

 and
 select * from blob order by barf;


ERROR:  relation blob does not exist

** Errore **

ERROR: relation blob does not exist
Stato SQL: 42P01


-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Use trunk or 0.8.1

2009-01-28 Thread Alessandro Ronchi

2009/1/28 Erik Allik eal...@gmail.com:

 Is it currently safe to use Satchmo trunk + Django trunk for non-
 mission-critical production?

I suggest to use the actual trunk only for test, or wait some days
before starting a new project.

Usually satchmo and django trunk are stable enough, but satchmo is
having a lot of revolutions on trunk now.



-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Making my own custom payment module

2009-01-26 Thread Alessandro Ronchi

2009/1/26 Bernard bernard.ch...@gmail.com:

 thanks Bruce, I'll tell him that.


It's not a Satchmo limit, you could write your own processor if you want.

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Making my own custom payment module

2009-01-26 Thread Alessandro Ronchi

2009/1/26 Bernard bernard.ch...@gmail.com:

 Yea I know. But I just want to do the right thing and not necessarily
 do as a client wants.


Yes, it's true and a good thought.


-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: API to retrieve list of alternate images ?

2009-01-16 Thread Alessandro Ronchi
2009/1/16 Chaitanya Sharma gopi.dai...@gmail.com:
 Hi,

 Does an API Exist that can return me the list of all the alternate/multiple
 images that have been uploaded for one particular category or one particular
 product.

 I've been reading going through satchmo/apps/product/models.py and all I
 could find is

 def _get_mainImage(self):
 ...
 main_image = property(_get_mainImage)


 An alternate mechanism to get this data would also be really helpful.

for pic in product.productimage_set.all()
does not work for you?

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: template changes not showing

2009-01-10 Thread Alessandro Ronchi
2009/1/9 Shankar Dhanasekaran newage.blog...@gmail.com:

 hi all,
 i want to make a few changes in the default template in satchmo. I tried 
 copying the template to my project directory and made some changes but these 
 are not reflected in the site. I even tried changing in the original template 
 file downloaded from svn server in vain. I deleted mercilessly most of the 
 code in template files but still i am seeing the same old theme and info as i 
 downloaded from svn server. what is happening here? anyone any idea?

Change the order of templatate dirs in settings.py or
local_settings.py or add the custom directory to it. I think it's
loading the default template.
You can try to move the original files out of their location: if it
returns a templatedoesnotexists you aren't loading your custom
template dir, if it returns your changes you have an erroneus order of
template dirs.



-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Britney-Spear shows her cute boobs

2009-01-09 Thread Alessandro Ronchi
2009/1/9 natasha rahman rahman.natash...@gmail.com:

  Britney-Spear shows her cute boobs
 http://supercutephoto.page.tl/Britney-Spears.htm

Please remove this spammer.
-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Categories list

2009-01-08 Thread Alessandro Ronchi
An example should be in base.html of templates.





-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: error in brand app

2009-01-06 Thread Alessandro Ronchi
2009/1/6 Shankar Dhanasekaran newage.blog...@gmail.com:
 I encountered this error while working with brand app
 http://dpaste.com/106076/

I had a similar error when opening a brand translation without picture.



-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Product offer

2009-01-06 Thread Alessandro Ronchi
2009/1/6 troels.roen...@gmail.com troels.roen...@gmail.com:

 Hey,

 Maybe this peice of code can help you: http://dpaste.com/106126/

 I am still working on it, but I have had it up running. It goes though
 the list of prices and select the best one. Then it returns the number
 of items you need to buy and the total price for this number along
 with the old number.

 Hope it will be of any use :)

Thank you. The solution for my problem is simpler, I've uploaded a
single line patch to satchmo trac today.
Now prices are not ordered in any way, so we can decide the ordering
and put it on price selection. Maybe we can also decide to put a
setting to let administrator decide the ordering of multiple prices in
admin.


-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Product offer

2009-01-05 Thread Alessandro Ronchi
Did you read this message? Do you think it's correct?

 Is the code that it's wrong, for me.

 qty_discounts = product.price_set.exclude(expires__isnull=False,
 expires__lt=datetime.date.today()).filter(quantity__lte=qty)

 filters out prices that have expires NOT NULL AND have expires before
 today, which gets all correct prices but doesn't  order them.

 to do what we want I think it should be ordered like that:

 val = qty_discounts.order_by('-quantity').order_by('expires')[0].dynamic_price

 instead of current

 val = qty_discounts.order_by('-quantity')[0].dynamic_price

 don't you think?




-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Payment modules

2009-01-05 Thread Alessandro Ronchi
2009/1/5 troels.roen...@gmail.com troels.roen...@gmail.com:

 Hmmm... seems that I was to quick to claim that it worked! I am still
 having problems. I am actually not sure wether it is a problem with
 satchmo, django or mysql. Never the less I would like to hear what
 version of everything you use for production mode?

 - Django version
 - Mysql / postgresql / oracle + version
 - Other useful information?

 It needs to be compatiable with Satchmo 0.8.1

It's not a django + satchmo problem.
I have django 1.0.2 + satchmo 0.8.1 (trunk), postgresql.

I think you must investigate your module and the use you do of default
satchmo views.



-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: Payment modules

2009-01-04 Thread Alessandro Ronchi
2009/1/4 troels.roen...@gmail.com troels.roen...@gmail.com:

 Ahh... yeah. I have completely forgot about dpaste. Thanks!

 So,

I'm not sure, but
PAYMENT_KEY' is dummy by default.
Did you changed it on www.yourstore.com/settings configuration after
module installation?

-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



Re: images just not showing in apache demo shop

2008-12-30 Thread Alessandro Ronchi
2008/12/30 geezer hughwaynemuirh...@gmail.com:

 it seems that this is wrong:  img src=/static//home/admin/silverping/
 static/images/productimage-picture-default_t85.jpg

 what is causing the two // after static?


The img src should be:
/static/product/productimage-picture-default_t85.jpg

So, check in www.yourdomain.com/settings the product image folder and
make it relative (like /product/)


-- 
Alessandro Ronchi
Skype: aronchi
http://www.alessandroronchi.net

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-users@googlegroups.com
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en
-~--~~~~--~~--~--~---



  1   2   >