[mezzanine-users] database migration in mezzanine shop based project?

2014-04-21 Thread lu zou
I have the database locally in SQLlite ,but I need to deploy my project on the server which using postgresql , when I migrate data into PostgreSQL,I use the command python manage.py syncdb ,then the database is overwritten with all the default pages content without using the pages which I have

Re: [mezzanine-users] Amazon EC2 and Thumbnails

2014-04-21 Thread Brad Bode
I am using Elastic Beanstalk. That's probably the difference. On an EC2 instance you have control over how the code is deployed, but on EB they deploy a clean instance from source every time. I am not sure why, but I assume this has to do with the load balancing aspect of EB. Load Balancing

[mezzanine-users] Re: Marking Django Application Pages as Active in the Navigation

2014-04-21 Thread Eduardo Rivas
The blog app defines it's own url patterns. For example, the list view (showing all blog posts) is mapped to /blog by default. The trick is in creating a page in the admin with the exact same slug. You have to do this to get Mezzanine to insert the page variable into your context. In the end,

Re: [mezzanine-users] Re: form file field upload error

2014-04-21 Thread Alexander Kominek
Thanks, Stephen! On Fri, Mar 28, 2014 at 8:28 PM, Stephen McDonald stephen...@gmail.comwrote: This is finally fixed in https://github.com/stephenmcd/mezzanine/commit/9527662dc3c7d7dfaa6397e01be9ebc999f2646f On Friday, 1 February 2013 14:17:11 UTC+11, Josh Cartmell wrote: I'm getting the

[mezzanine-users] Filebrowser depend on Flash Player ?

2014-04-21 Thread Ariel Vázquez Riverón
Filebrowser depend on Flash Player ? -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+unsubscr...@googlegroups.com. For more options, visit

Re: [mezzanine-users] Production django server : NoReverseMatch: Reverse for 'login' with arguments '()' and keyword argum

2014-04-21 Thread Josh Cartmell
Is mezzanine.accounts in your INSTALLED_APPS in your project's settings.py? On Sat, Apr 19, 2014 at 4:24 AM, 董健 ddongjian0...@gmail.com wrote: i got NoReverseMatch when deloy cartridge to the webfaction. i can not not figure out what happened. the problem annoyed me for two days. any help

Re: [mezzanine-users] Filebrowser depend on Flash Player ?

2014-04-21 Thread Ken Bolton
Flash is a dependency on the client for the filebrowser. Matthew Summers mentioned this oft-discussed issue a few days ago and made some progress: https://groups.google.com/d/msg/mezzanine-users/vt4bSWCLk-8/VLRb6sxo8bMJ. ken On Mon, Apr 21, 2014 at 1:04 PM, Ariel Vázquez Riverón

Re: [mezzanine-users] Re: Mezzanine 3.1 and Cartridge 0.9.3 released

2014-04-21 Thread Ziwei Zhou
Thanks for the fix, Stephen. One last thing, it seems the tinymce_setup script is not using static from statifiles library in the admin page. https://lh3.googleusercontent.com/-oVvdsFMv9ak/U1W-wswrQHI/Hc0/77AfsI-rOIk/s1600/Screen+Shot+2014-04-22+at+8.56.02+AM.png On Saturday, April

[mezzanine-users] Thumbnail UnicodeEncodeError

2014-04-21 Thread Skyler Dawson
Hi all, Probably a configuration issue on my part, but I'm getting to my wits end. Site crashes in the thumbnail template tag on any gallery related portion: UnicodeEncodeError at / 'ascii' codec can't encode character u'\u0301' in position 83: ordinal not in range(128) -

Re: [mezzanine-users] Filebrowser depend on Flash Player ?

2014-04-21 Thread Scott Williams
I have experience doing multiple uploads via jQuery and ajax POSTs. You could then add not being page refreshes to your list of bonuses. Any interest along those lines? -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from

Re: [mezzanine-users] Uploadify swf versus fileuploader.js

2014-04-21 Thread Scott Williams
Pardon my doubling of this comment but it seems more appropriate here: I have experience doing multiple uploads via jQuery and ajax POSTs. You could then add not being page refreshes to your list of bonuses. Any interest along those lines? -- You received this message because you are

Re: [mezzanine-users] Re: Mezzanine 3.1 and Cartridge 0.9.3 released

2014-04-21 Thread Stephen McDonald
Gonna suggest you've misconfigured something somehow. All of the 404s you referenced are defined with relative paths (eg no leading slash or host). According to the Django docs, media files defined on form widgets (as is the case with tiny_mce_setup.js and keywords_field.js) will automatically be

[mezzanine-users] Re: Thumbnail UnicodeEncodeError

2014-04-21 Thread Skyler Dawson
And the error has been found. I had at one point changed my settings to figure out paths using unipath: PROJECT_ROOT = Path(__file__).ancestor(2) MEDIA_ROOT = PROJECT_ROOT.child(media) So in the template tag it was joining a unipath path object to unicode strings, and the path objects decide

Re: [mezzanine-users] Re: Thumbnail UnicodeEncodeError

2014-04-21 Thread Stephen McDonald
On Tue, Apr 22, 2014 at 3:17 PM, Skyler Dawson foxwoods...@gmail.comwrote: And the error has been found. I had at one point changed my settings to figure out paths using unipath: PROJECT_ROOT = Path(__file__).ancestor(2) MEDIA_ROOT = PROJECT_ROOT.child(media) So in the template tag it was