First time here? Check out the FAQ!

Zhiz0id's profile - activity

2023-09-02 22:17:34 -0500 received badge Notable Question (source)
2023-09-02 22:17:34 -0500 received badge Popular Question (source)
2012-08-06 12:49:13 -0500 received badge Taxonomist
2012-06-23 17:36:40 -0500 received badge Famous Question (source)
2011-09-03 02:19:57 -0500 received badge Scholar ( source )
2011-09-03 02:19:48 -0500 answered a question wmd editor failed when askbot is working from an iframe

The simplest fix is by use pagedown

It is modification of the wmd with fixed IFrame problem.

2011-06-02 19:00:10 -0500 received badge Nice Answer ( source )
2011-06-02 15:07:50 -0500 received badge Supporter ( source )
2011-05-31 19:49:39 -0500 commented question wmd editor failed when askbot is working from an iframe
haha, I see. btw my social app is just flash frontend for google translate. 2+ years online with 5.4m users and 100-200k unique users per day :) But I am trying to create a place for translators and users, where they can talk to each other.
2011-05-31 19:42:08 -0500 commented question wmd editor failed when askbot is working from an iframe
btw, do you know chinese?
2011-05-31 19:30:42 -0500 commented question wmd editor failed when askbot is working from an iframe
Thanks! Very interesting! Main problem for me is cheap scale. I am not sure, but looks like bottleneck is sql db backend.(but I understand that this problem isn't main for your project :) )
2011-05-31 19:18:20 -0500 commented question wmd editor failed when askbot is working from an iframe
Is there any differences in projects ? I mean major differences ?
2011-05-31 18:58:28 -0500 commented question wmd editor failed when askbot is working from an iframe
"then slit off" - why?
2011-05-31 18:43:46 -0500 commented question wmd editor failed when askbot is working from an iframe
btw have you seen this project hashcode.ru ? I am not sure, but it looks like askbot.
2011-05-31 18:36:41 -0500 commented question wmd editor failed when askbot is working from an iframe
At this moment it is just a plain install + auto authorization(when running from social network vkontakte.ru) and some minor changes.You can see iframe part there http://four.you-ra.info . After redesign I will test it under heavy load (100k+ unique users per day). nginx+tornado+askbot+?(maybe cassandra)
2011-05-31 18:07:58 -0500 commented question wmd editor failed when askbot is working from an iframe
Ok, thanks! Думаю у меня будет много вопросов и заодно подтяну english. :)
2011-05-31 18:05:41 -0500 received badge Student (source)
2011-05-31 17:58:26 -0500 asked a question wmd editor failed when askbot is working from an iframe

I am trying to use Askbot as part of social app which is working from an iframe.

Wmd just don't working. I was trying to replace "top" on "this" in wmd.js but without luck.

p.s. Вопросы на русском приветствуются?

2011-05-29 23:59:49 -0500 received badge Necromancer ( source )
2011-05-29 23:53:04 -0500 received badge Teacher ( source )
2011-05-29 22:06:59 -0500 answered a question Why is my forum turning unicode characters into question marks?Why is my forum turning unicode characters into question marks?

As you can read http://askbot.org/doc/create-database.html

create database askbot DEFAULT CHARACTER SET UTF8 COLLATE utf8_general_ci; grant all privileges on dbname.* to dbuser@localhost identified by 'dbpassword';

Most interesting part of this query is utf8_general_ci.

2011-05-28 20:17:55 -0500 answered a question can I run askbot on tornado instead of django

You can find simple tutorial for askbot/django + tornado there: Deploying Django Projects on Tornado

Also you need to patch tornado/wsgi.py in some places.

It is works for me.