[mezzanine-users] can anyone suggest me some host which is Australia based and also mezzaninedjango friendly?

2014-03-03 Thread lu zou
As above ,can anyone suggest me some host which is Australia based and also mezzaninedjango friendly? :) -- 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

Re: [mezzanine-users] first steps with fabric deployment

2014-03-03 Thread ourycl
Did you try to run python manage.py runserver directly in your virtual env directory? And is there an error? I the port is in use you can try to stop the server by running supervisorctl stop all. ++ On Friday, February 28, 2014 1:08:44 AM UTC+1, Federico Bruni wrote: 2014-02-26 13:18

Re: [mezzanine-users] first steps with fabric deployment

2014-03-03 Thread Federico Bruni
no error found 2014-03-03 13:22 GMT+01:00 our...@gmail.com: Did you try to run python manage.py runserver directly in your virtual env directory? And is there an error? I the port is in use you can try to stop the server by running supervisorctl stop all. ++ On Friday, February 28, 2014

Re: [mezzanine-users] step by step mezzanine deployment

2014-03-03 Thread Ken Bolton
Fabric does not sync the content of the databases. Fabric does sync the database schemas! On Mon, Mar 3, 2014 at 8:03 AM, Federico Bruni fedel...@gmail.com wrote: 2014-03-03 13:01 GMT+01:00 Federico Bruni fedel...@gmail.com: Now I should find out why my real project is failing. Maybe I

Re: [mezzanine-users] step by step mezzanine deployment

2014-03-03 Thread Federico Bruni
Ah! Here's what I was missing! Now I'm trying to manually sync the databases: pg_dump -C -h localhost -U localuser dbname | psql -h remotehost -U remoteuser dbname But I have problem with the port 5432. I already tried to add ip_private to listen_addresses in postgresql.conf, as suggested here:

Re: [mezzanine-users] can anyone suggest me some host which is Australia based and also mezzaninedjango friendly?

2014-03-03 Thread Danny
On 3/03/2014 10:13 PM, lu zou wrote: As above ,can anyone suggest me some host which is Australia based and also mezzaninedjango friendly? :) Not sure about Django friendliness, or even how good these hosting providers are, but these are places I found in Australia which had reasonably

[mezzanine-users] Installing Mezzanine on Vagrant

2014-03-03 Thread Tabs
Hi Mezzanine community, I am new to the Framework and I am trying to Setup a simple site using it. I am following the instructions posted here () and Setting up everything using Vagrant as virtualization Environment. Everything was going fine until I tried to install Mezzanine. When

[mezzanine-users] Re: Restricting shop to active users only

2014-03-03 Thread Eduardo Rivas
I investigated a little and apparently the login decorator is for views, not url patterns. I ended up using this little middlewarehttps://gist.github.com/jerivas/9335869that lets me conveniently define a list of url patterns for which login is required. Related question: is it possible to

Re: [mezzanine-users] Re: Restricting shop to active users only

2014-03-03 Thread Josh Cartmell
Hey Ed, you can also do something like http://stackoverflow.com/a/5771286/593283, I'm not sure if that would be a workable solution for you. If you wanted to hide products across the board you could connect to the product pre save signal and uncheck the box programatically. On Mon, Mar 3, 2014

[mezzanine-users] Re: Restricting shop to active users only

2014-03-03 Thread Eduardo Rivas
Excellent! I think that's what Steve meant from the beginning. Regarding the sitemap, I was overriding Mezzanine's sitemap and returning a Product-free list, but signals seem like the right way to go here. Thanks a lot. -- You received this message because you are subscribed to the Google

Re: [mezzanine-users] jquery resize error

2014-03-03 Thread Stephen McDonald
I don't recall the intention around this library's introduction - I'd be more than happy to remove it if someone can work out why it's there and that it's safe to remove. On Tue, Mar 4, 2014 at 11:16 AM, Ross Laird r...@rosslaird.com wrote: I have finally got round to testing this out, and the

[mezzanine-users] Re: Installing Mezzanine on Vagrant

2014-03-03 Thread Tom Brander
Looks like you are missing the C compiler and perhaps the associated dev tools library... On Monday, March 3, 2014 2:40:17 PM UTC-6, Tabs wrote: Hi Mezzanine community, I am new to the Framework and I am trying to Setup a simple site using it. I am following the instructions posted here

Re: [mezzanine-users] Re: Installing Mezzanine on Vagrant

2014-03-03 Thread Stephen McDonald
Mezzanine's fabric recipe was entirely developed using vagrant - it's actually a perfect match. On Tue, Mar 4, 2014 at 2:29 PM, Tom Brander tombran...@gmail.com wrote: Ken, he is just trying to install on a vagrant instance, presumably to give him a Linux VM on Windows?? Fabric doe not apply

Re: [mezzanine-users] fab all runs, but cannot access mezzanine admin page

2014-03-03 Thread Jesse Carrigan
I tried forwarding a port from my host machine and got the same result. With localhost:8080 forwarded to 80 on the guest machine, I get the message from ngnix. Forwarding localhost:8080 to 8000, I get no response. -- You received this message because you are subscribed to the Google Groups

Re: [mezzanine-users] fab all runs, but cannot access mezzanine admin page

2014-03-03 Thread Stephen McDonald
You shouldn't need to do any of that. Here's my vagrantfile: Vagrant.configure(2) do |config| config.vm.box = precise64 config.vm.network :private_network, ip: 10.10.10.10 end Forget the ports. Your vagrant vm is synonymous with a production server - you're deploying to it, and the various