[mezzanine-users] Re: Use of RichText model

2015-02-14 Thread Ryan Sadwick
info = RichTextField((Content), blank=True, null=True) On Friday, February 13, 2015 at 5:17:52 PM UTC-5, Melvin Ramos wrote: Hello, At Stephen McDonald's request, I post here in the Mailing List. I'm new to Django and therefore to Mezzanine. I'm creating a model and I want to have a

[mezzanine-users] Re: Customer Account Login/Signup - None existent?

2015-02-14 Thread Ryan Sadwick
Within your settings.py, make sure mezzanine.accounts is enabled. On Saturday, February 14, 2015 at 7:26:25 PM UTC-5, Darin Hensley wrote: Does Customer Account Login/Sign up not exist? I enabled it in the admin settings for user must login to check out. But there is no tab for sign up and

[mezzanine-users] Re: Mezzanine SSL support

2014-08-01 Thread Ryan Sadwick
I'm running Mezzanine and Cartridge under SSL over at jnkbows.com. Make sure you've correctly generated the certificate and key through your SSL provider. In your settings.py, make sure you enable SSL Redirect Middleware: mezzanine.core.middleware.SSLRedirectMiddleware Also, check your ssl

[mezzanine-users] Re: Custom ManyToManyField extending BlogPost in the admin interface

2014-08-01 Thread Ryan Sadwick
Make sure you run a south schemamigration on the blog app itself: Something like: manage.py schemamigration blog --auto On Tuesday, July 29, 2014 10:14:18 AM UTC-4, Beau Severson wrote: I was also wondering the answer to this. I'm trying to add a new M2M field to the BlogPost model and I

[mezzanine-users] Re: Images loading sideways on mobile

2014-07-11 Thread Ryan Sadwick
Sounds like a css issue, hard to give you a solution without seeing your site. On Thursday, July 10, 2014 9:48:34 AM UTC-4, Amber Grimaldi wrote: I just came across this problem where on a particular blog post all the images are being rendered 90 degrees to the right on when viewing the site

[mezzanine-users] Re: Which payment processors work with Cartridge ?

2014-07-10 Thread Ryan Sadwick
I'm using Stripe for payments with a few production sites. Haven't had any problems and their api and payment admin is solid. On Friday, July 4, 2014 10:40:06 AM UTC-4, Ibn Saeed wrote: Hello Which payments processors work with cartridge ? Can we use 2Checkout or Payment payments or even

[mezzanine-users] Re: Fabric file and related resources for deploying Mezzanine to Webfaction

2014-06-19 Thread Ryan Sadwick
Great job and thanks for stepping up some getting this going! On Tuesday, June 10, 2014 1:27:07 AM UTC-4, Eduardo Rivas wrote: Hello everyone! Since I started with Mezzanine/Django I've been deploying my sites to Webfaction http://www.webfaction.com?affiliate=jerivas (that's a referral

[mezzanine-users] Re: Multiple 404s on blog page while admin logged in

2014-06-04 Thread Ryan Sadwick
It looks like tinyMCE javascript files. These files are in the wrong location, here is an example of where they exist normally: /grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js I'd start with checking your static_url/media_url and go from there. If you're still not

[mezzanine-users] Re: Amazon s3 storage backed, upload image to blog from admin HTTP 500 on demo site.

2014-05-27 Thread Ryan Sadwick
My site is SSL and I haven't had any problems with s3. It was rough initially but I just continued to work through the problems and found a sweet spot. I find that it is important to understand how S3/Boto work instead of pasting someone's settings. Here is what I used. I stripped out my

[mezzanine-users] Re: tinymce JS files on Amazone S3 CDN requires AWS_QUERYSTRING_AUTH = False?

2014-05-27 Thread Ryan Sadwick
Try these settings, there isn't much documentation on these. My site runs on SSL and all the TinyMCE editors work. I'm running Mezzanine 3.14 + Cartridge. *STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage'* *AWS_QUERYSTRING_AUTH = False* *AWS_S3_SECURE_URLS = True*

Re: [mezzanine-users] Cartridge: wishlist text customization

2014-05-27 Thread Ryan Sadwick
, May 18, 2014 at 11:24 PM, Ryan Sadwick rsad...@gmail.comjavascript: wrote: This seems simple but I want to take the right path, I just need a nudge in the right direction. When you add an item to the wishlist, a text alert returns Item added to wishlist. I'd like to custom that text

[mezzanine-users] Re: Problem moving or adding pages from the admin

2014-01-24 Thread Ryan Sadwick
Any javascript errors showing up in your browser's console? On Friday, January 24, 2014 11:22:59 PM UTC-5, Jake Schmitz wrote: For some reason I can only create pages from the quick add on the main admin page. When I try to add a page from within the actual list of all my pages, nothing

Re: [mezzanine-users] mezzanine-cartridge pic upload problem :cannot upload product image using admin account

2014-01-22 Thread Ryan Sadwick
I've only run into this on OSX while in a dev environment. See if this works: Using brew: http://brew.sh/ - brew install jpeg - brew install libjpeg - sudo pip install Pillow On Wednesday, January 22, 2014 2:56:36 AM UTC-5, lu zou wrote: could you go