First time here? Check out the FAQ!

Vu Quang Chien's profile - activity

2016-06-15 05:53:49 -0500 received badge Notable Question (source)
2016-01-31 05:44:39 -0500 received badge Popular Question (source)
2015-03-29 12:45:22 -0500 received badge Notable Question (source)
2014-10-09 04:29:33 -0500 received badge Famous Question (source)
2014-09-03 21:04:58 -0500 received badge Famous Question (source)
2014-07-15 08:14:27 -0500 received badge Popular Question (source)
2014-04-22 01:52:44 -0500 asked a question Authentication issue when deploy to subdirectory (/qa) and enable private mode ?

Recently I've moved my Askbot instance to a subdirectory of Apache (myhost.com/qa). After performing some editing in askbot's setting.py file, the site looks good.

However, when I enable private forum mode ( Admin > Access control settings > Allow only registered user to access the forum = True ). I couldn't access the website.

For every page I tried to access, it redirects me to 404 not found page. It seems to me that the login page /qa/account/signin/?next=/qa/ is somehow protected by unauthorized users. My guest is when develop the subdirectory mode, somehow the login page is not taken into account.

Could you please help? Thanks. My Askbot version is 0.7.48

2013-11-30 23:33:14 -0500 asked a question How to exclude certain url (RSS feed) from authentication?

Hello, I have a private Askbot forum. There's a demand to use RSS feed, but since the site is private, it requires username password in order to access the RSS url, which is http://mysite.com/feeds/rss/?

I also tried to use the following scheme http://username:password@mysite.com/feeds/rss/? but it seems that the code doesn't support.

So my thought is to exclude the RSS urls entirely from authentication ( I understand the risk but it's OK). What's is the correct way to do this?

Many thanks,

2013-09-26 16:47:05 -0500 received badge Famous Question (source)
2013-09-14 13:34:45 -0500 received badge Good Question (source)
2013-09-14 04:20:08 -0500 received badge Nice Question (source)
2013-09-09 23:37:03 -0500 asked a question The best workflow to develop Askbot

I've been using askbot for a while and feel extremely happy with it. However, it comes to a point where I need some customization, for example:

  • Change existing Askbot Javascript code
  • Add new custom javascript file to the site
  • Change some UI-wise feature (add small description to the homepage)
  • Add new functionality: add invite to answer feature
  • Integrate search with Lucene to search inside comment, uploaded files, etc.

So, my thought is to fork Askbot and develop on a independent source branch myself. I can pull changes from the original source if you have any update later.

In the documentation, you mentioned about setting up a development environment:

python setup.py develop #the develop option will not install askbot into the python site packages directory

but is this the correct way if I want to deploy the source code to production server? (You're using pip install askbot to deploy it to production, which is great, but how can I create the package from the source code in git). Is there any kind of developer guide for kick-starting my askbot development (I'm very new to Python/Django development)?

2013-08-19 21:57:31 -0500 asked a question Does askbot allow to upload file that is not image?

When I try to upload files to the website, It forces me to choose one of the image format (jpq, png, etc.) So the question is, is there some hidden configuration somewhere that loosen the restriction? I want to allow freely upload to the site

2013-08-09 02:19:57 -0500 answered a question test attachment upload function
2013-08-09 02:19:14 -0500 commented answer Can I upload files with askbot?

@Evgeny: I can only upload files that has predefined image extensions: (.pgn, .jpg, etc.). Can I change the file extension somewhere in the admin module?

2013-08-08 01:24:09 -0500 received badge Famous Question (source)
2013-06-30 02:17:08 -0500 received badge Supporter ( source )
2013-06-30 02:17:06 -0500 received badge Scholar ( source )
2013-06-26 10:58:35 -0500 received badge Nice Question (source)
2013-06-25 20:54:55 -0500 received badge Student (source)
2013-06-25 10:55:55 -0500 received badge Editor (source)
2013-06-25 06:27:19 -0500 asked a question Does Askbot has feature to require user to login in order to view a question?

Stated in the title. I want to restrict anonymous users from viewing the question, or the whole website. Is it possible?