OSQA: Difference between revisions
mNo edit summary |
|||
(9 intermediate revisions by 4 users not shown) | |||
Line 2: | Line 2: | ||
Followed the instructions here [http://wiki.osqa.net/display/docs/Installing+OSQA+on+DreamHost]. Seems to work, using the modified (truncated) <code>passenger_wsgi.py</code> file [http://wiki.osqa.net/display/docs/Installing+OSQA+on+DreamHost?focusedCommentId=3047706#comment-3047706]. | Followed the instructions here [http://wiki.osqa.net/display/docs/Installing+OSQA+on+DreamHost]. Seems to work, using the modified (truncated) <code>passenger_wsgi.py</code> file [http://wiki.osqa.net/display/docs/Installing+OSQA+on+DreamHost?focusedCommentId=3047706#comment-3047706]. | ||
Email settings: used <code>mail.stacky.net</code>, port 587 (see this thread [http://blog.dreamhosters.com/kbase/index.cgi?area=658]) with a user I created through Dreamhost web panel. Checked "Use TLS". This worked (I got a test email), but seems to not work now that I've successfully imported the FTS database. | Email settings: used <code>mail.stacky.net</code>, port 587 (see this thread [http://blog.dreamhosters.com/kbase/index.cgi?area=658]) with a user I created through Dreamhost web panel. Checked "Use TLS". This worked (I got a test email), but seems to not work now that I've successfully imported the FTS database. (fixed: I hadn't entered the full email address (osqa@osqa.stacky.net) in the "email user" field) | ||
==Importing== | ==Importing== | ||
went to http://osqa.stacky.net/admin/sximporter, downloaded and selected zipped dump from faketestsite, submitted to get error. Copy of the error log [http://stacky.net/posted/20110510django.osqa.log]. I think the problem is that there existed a question already. Tried again with new database; worked! | went to http://osqa.stacky.net/admin/sximporter, downloaded and selected zipped dump from faketestsite, submitted to get error. Copy of the error log [http://stacky.net/posted/20110510django.osqa.log]. I think the problem is that there existed a question already. Tried again with new database; worked! | ||
* revision histories aren't being imported | |||
==MathJax== | ==MathJax== | ||
Line 16: | Line 19: | ||
==Compatibility== | ==Compatibility== | ||
* Need http://osqa.stacky.net/questions/1234 to point to post 1234, even if it is an answer. | * Need <nowiki>http://osqa.stacky.net/questions/1234</nowiki> to point to post 1234, even if it is an answer. | ||
* Scott's openid doesn't work. | * Scott's openid doesn't work. | ||
* admins/mods should be able to add openids for users. | * admins/mods should be able to add openids for users. | ||
* email recovery option? | * email recovery option? | ||
== Bugs == | == Bugs == | ||
* close/reopen doesn't show up in revision history ... reloading seems (randomly) toggle closed/opened state! see [http://osqa.stacky.net/questions/165/wowzers] | * close/reopen doesn't show up in revision history ... reloading seems (randomly) toggle closed/opened state! see [http://osqa.stacky.net/questions/165/wowzers] ... seems to have stabilized now, so it's probably a caching issue. related: does closing have some effect on the score of the question? | ||
* don't get the most recent revision when you click edit [http://osqa.stacky.net/questions/143/im-a-cookie-user] | * don't get the most recent revision when you click edit [http://osqa.stacky.net/questions/143/im-a-cookie-user] | ||
* possibly related to previous: rollbacks don't get counted as revisions. | |||
* can't post as unregistered user | |||
== Enhancements == | |||
* User names are truncated very short on the user pages.<br> | |||
Fixed as follows. tracked problem to forum/skins/default/templates/users/info.html, where view_user.decorated_name is called to generate the user name. grepped around for "decorated_name" to find it's defined in forum/models/user.py (forum/models looks like a very handy directory). Looking at the definition, it uses TRUNCATE_LONG_USERNAMES and TRUNCATE_USERNAMES_LONGER_THAN, imported from forum.settings. grepped for "TRUNCATE" in forum/settings/ which leads to /forum/settings/user.py. Looking at that file, it's clear from the text that this appears in the admin menu. Under "User Settings" link in admin panel, unchecked "Truncate Long Usernames". --[[User:Geraschenko|Geraschenko]] 00:04, 12 May 2011 (PDT) |
Latest revision as of 16:40, 25 October 2011
Installation
Followed the instructions here [1]. Seems to work, using the modified (truncated) passenger_wsgi.py
file [2].
Email settings: used mail.stacky.net
, port 587 (see this thread [3]) with a user I created through Dreamhost web panel. Checked "Use TLS". This worked (I got a test email), but seems to not work now that I've successfully imported the FTS database. (fixed: I hadn't entered the full email address (osqa@osqa.stacky.net) in the "email user" field)
Importing
went to http://osqa.stacky.net/admin/sximporter, downloaded and selected zipped dump from faketestsite, submitted to get error. Copy of the error log [4]. I think the problem is that there existed a question already. Tried again with new database; worked!
- revision histories aren't being imported
MathJax
Added the line
<script type="text/javascript" src="http://stacky.net/MathJax/MathJax.js?config=MOconfig"></script>
just before </head>
in forum/skins/default/templates/base_content.html
. That seems to roughly do the trick.
MathML
Compatibility
- Need http://osqa.stacky.net/questions/1234 to point to post 1234, even if it is an answer.
- Scott's openid doesn't work.
- admins/mods should be able to add openids for users.
- email recovery option?
Bugs
- close/reopen doesn't show up in revision history ... reloading seems (randomly) toggle closed/opened state! see [5] ... seems to have stabilized now, so it's probably a caching issue. related: does closing have some effect on the score of the question?
- don't get the most recent revision when you click edit [6]
- possibly related to previous: rollbacks don't get counted as revisions.
- can't post as unregistered user
Enhancements
- User names are truncated very short on the user pages.
Fixed as follows. tracked problem to forum/skins/default/templates/users/info.html, where view_user.decorated_name is called to generate the user name. grepped around for "decorated_name" to find it's defined in forum/models/user.py (forum/models looks like a very handy directory). Looking at the definition, it uses TRUNCATE_LONG_USERNAMES and TRUNCATE_USERNAMES_LONGER_THAN, imported from forum.settings. grepped for "TRUNCATE" in forum/settings/ which leads to /forum/settings/user.py. Looking at that file, it's clear from the text that this appears in the admin menu. Under "User Settings" link in admin panel, unchecked "Truncate Long Usernames". --Geraschenko 00:04, 12 May 2011 (PDT)