Discussions
Activity
Sign In
How it works
Aleksandar Erkalović
Activity
Discussions
1
Comments
206
Problem when installing Booktype/booki database
You can try to set the password for the Postgres user and configure the access permissions on Postgres. Check the instructions here: https://github.com/sourcefabric/Booktype/blob/master/doc/deployment/postgresql.txt Instructions on Managing a Flo…
Comment by
Aleksandar Erkalović
May 2012
permalink
Installation under Centos 6.2 running?
Are you using built-in server to run it? If so, you should run: django-admin runserver : or for example: django-admin runserver 4.4.4.4:8080
Comment by
Aleksandar Erkalović
May 2012
permalink
Authors list
"The Contributors" is hard coded author at the moment. Problem is that all of the books on the Flossmanuals site (where it all started) were written by multiple authors and there was no interface to change specific author. Until now! :) I …
Comment by
Aleksandar Erkalović
April 2012
permalink
Booktype user/group administration
Hi Namith, we started as an open platform with only few restrictions. We had things like "you can only edit book if you have role X" and anybody could create an account. But we started to be used in more closed environments lately so we s…
Comment by
Aleksandar Erkalović
April 2012
permalink
Anyone have experience setting up Booktype on a Mac Server?
You will be happy to know that Booktype has been fully developed on OSX :) Can you tell me in details what the problem is, what version of OSX you have and etc ? When we are finished and you have it up and running we can write official OSX install d…
Comment by
Aleksandar Erkalović
April 2012
permalink
Can't create book
Is your installation somewhere on the internets so i can try it (you can send me email) to see what is going on? This part of interface (create book) is not connected with Redis. Are you running it with mod_wsgi in Apache or you use Apache as proxy …
Comment by
Aleksandar Erkalović
March 2012
permalink
Anyone have experience installing Booktype on WebFaction servers?
Thank you John :) I haven't done it personally but couple of people have installed it on different versions of CentOS. Works just fine. I don't have access to any CentOS machine at the moment but i have walked them through the process and …
Comment by
Aleksandar Erkalović
March 2012
permalink
Authors list
There is a macro for this. You just write ##AUTHORS## somewhere in chapter (output can be customized a bit). List of authors will not be visible in editor but is visible if you go to draft or published version of a chapter.
Comment by
Aleksandar Erkalović
March 2012
permalink
Code Contribs Welcome
Reply to @Tomi+Toivio: Got it Tomi and thank you! It will be included.
Comment by
Aleksandar Erkalović
March 2012
permalink
Getting started with Booktype development
Reply to @Robert+Quest: I pushed changes today to git repository that has nginx docs and where createbooki script knows how to create nginx config files. Use createbooki script to get nginx config file just so you can see how you will get: locatio…
Comment by
Aleksandar Erkalović
March 2012
permalink
After installing booktype I cannot view it.
Are you running it over apache/nginx or with builtin python web server? If you are using last method, you should bind the server to the public ip address... for instance: django-admin.py runserver 192.168.1.6:8000 If you don't specify it it …
Comment by
Aleksandar Erkalović
March 2012
permalink
Getting started with Booktype development
Reply to @Luke:
Comment by
Aleksandar Erkalović
March 2012
permalink
Getting started with Booktype development
Reply to @Luke: What installation? Are you talking about Booktype in general or installation of Booktype on nginx? Aco
Comment by
Aleksandar Erkalović
March 2012
permalink
Getting started with Booktype development
Reply to @Robert+Quest: At the moment i am doing instructions and install script for the nginx. So if you could wait one day for me to finish it, test it a bit and upload.... Aco
Comment by
Aleksandar Erkalović
March 2012
permalink
Install / URL Problems
Hi Ross, so i tried to run it on ngix as fastcgi and works fine for me. There are couple of things. First of all, you don't need to copy anything. Your Booktype source and Booktype project don't need to be at the same place or in the same…
Comment by
Aleksandar Erkalović
March 2012
permalink
Install / URL Problems
Hi Ross, at the moment i am doing nginx + gunicorn instructions and code for createbooki script, so you get nginx config also for that. You should just set BOOKI_URL really, configure nginx where to fetch the static files and restart fastcgi proces…
Comment by
Aleksandar Erkalović
March 2012
permalink
Booktype Installation for TurnKey Linux, Part 1
Reply to @rik+goldman: Setting the password without user interaction is not possible with default tools. The only way to do it is: $ django-admin createsuperuser --username=john --email=john@gmail.com --noinput Superuser account is created but tha…
Comment by
Aleksandar Erkalović
February 2012
permalink
Install booktype on ubuntu 11.10
Reply to @Fred: You can always manualy setup variables to see what will happen. Just copy whatever you have manualy in booki.env file. For instance: $ export DJANGO_SETTINGS_MODULE=mybooktype.settings ...etc... Now you variables should be set and …
Comment by
Aleksandar Erkalović
February 2012
permalink
Getting started with Booktype development
Reply to @Slim+Slam: I don't know what distribution of Linux or OS are you using but i would recommend you to google how to setup PostgreSQL, user accounts and access permissions for basic Django project. That would also include how to configur…
Comment by
Aleksandar Erkalović
February 2012
permalink
Install booktype on ubuntu 11.10
Reply to @Fred: Hi Fred... ok.. So, you have used createbooki to install Booktype project into /usr/www/mybooktype? Check your booki.env file. You must have: export DJANGO_SETTINGS_MODULE=mybooktype.settings and export PYTHONPATH=$PYTHONPATH:/us…
Comment by
Aleksandar Erkalović
February 2012
permalink
Getting started with Booktype development
Reply to @Slim+Slam: Hi... "dot" is just a shortcut for: "source ./booki.env". Go to the directory where you installed Booktype project and type "source booki.env". That should be it.
Comment by
Aleksandar Erkalović
February 2012
permalink
Getting started with Booktype development
Reply to @Jochen+Schäfer: I installed it with easy_install. After i did ". ./booki.env" where i created booktype project i managed to initialize database and start the server with django-admin runserver (loaded booki.env before that). Ever…
Comment by
Aleksandar Erkalović
February 2012
permalink
Install booktype on ubuntu 11.10
"Createbooki" script will create Booktype project for you. Among other things, it will also create file with all nedded environment variables (DJANGO_SETTINGS_MODULE, PATH, ...). File is called "booki.env" and you should load it …
Comment by
Aleksandar Erkalović
February 2012
permalink
Why TinyMCE over CKeditor? (And is it possible to choose my own)
You can't just like that switch editors. There are parts of JavaScript code in the Booktype editor that assume you are using TinyMCE. Specifically this is part where TinyMCE is initialized, when content is set and when content is fetched from t…
Comment by
Aleksandar Erkalović
February 2012
permalink
Getting started with Booktype development
Reply to @Jochen+Schäfer: Look at yout settings.py file that was created by createbooki script. Check for the TEMPLATE_LOADERS settings and uncomment the last line (loading template from egg). It should look something like this: TEMPLATE_LOADERS = …
Comment by
Aleksandar Erkalović
February 2012
permalink
Getting started with Booktype development
Reply to @markus+busche: Have you started it with 'django-admin runserver' command? If so, you you should do something like 'django-admin runserver :'. Example would be django-admin runserver www.binarni.net:80
Comment by
Aleksandar Erkalović
February 2012
permalink
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Stop following
About
Username
Aleksandar Erkalović
Joined
November 2011
Visits
0
Last Active
July 2016
Roles
Member
Posts
207
Friends
Followed by 4 people
My Badges
Total Points: 80
Top Posters
Albert FR
1978
Martin Konecny
1860
Andrey Podshivalov
1526
Voisses Tech
1423
John Chewter
899
Daniel James
844
Roger Wilco
784
hoerich
627
Paul Baranowski
389
Cliff Wang
339