First time here? Check out the FAQ!

nicafyl's profile - activity

2013-04-20 04:39:23 -0500 received badge Notable Question (source)
2013-03-27 16:06:15 -0500 received badge Famous Question (source)
2012-09-25 06:11:36 -0500 received badge Famous Question (source)
2012-09-17 11:15:11 -0500 received badge Nice Question (source)
2012-07-24 09:06:01 -0500 received badge Famous Question (source)
2012-03-08 06:46:02 -0500 received badge Popular Question (source)
2011-10-07 07:46:28 -0500 commented answer Could "start mode" be added as a feature?

The values you picked look realistic. Having not run any real sites yet, that's about all I can say at this point. Hopefully I will have more input once I get a couple of real sites up. Thanks for the change.

2011-10-04 08:47:37 -0500 received badge Nice Answer ( source )
2011-10-03 11:01:59 -0500 received badge Nice Question (source)
2011-10-03 07:51:10 -0500 asked a question Could "start mode" be added as a feature?

OSQA offers a start mode where the Karma requirements are set very low for a new site. This makes it a lot easier to get a site started.

While you can do this manually in the settings, it would seem that adding a switch to do this would make it a lot less work.

2011-10-02 14:03:16 -0500 received badge Self-Learner ( source )
2011-10-02 14:03:16 -0500 received badge Teacher ( source )
2011-10-01 20:07:22 -0500 received badge Scholar ( source )
2011-10-01 20:06:45 -0500 received badge Editor ( source )
2011-10-01 20:05:22 -0500 answered a question Are there any tricks for Askbot w/FCGI?

Finally, I have an answer. Bottom line is that fcgi was broken on a2hosting.com. They have fixed it on at least their server a2s65. If it does now work for you I suggest putting up the standard Python test script there (you can find it in http://docs.python.org/howto/webservers.html) with a .htaccess file like this:

SetHandler fcgid-script

Options +ExecCGI

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ scriptname.fcgi/$1 [QSA,L]

where "scriptname" is the name you used for the test script. If it does not work, bitch at them that their web server is improperly configured.

2011-09-30 17:01:21 -0500 commented answer Are there any tricks for Askbot w/FCGI?

While I don't have a final answer, the intermediate one is that fcgi does not work there. I set up a test program and it fails. Did the same on a local system and it works. So, I am still waiting for them to fix fcgi.

2011-09-26 07:50:23 -0500 commented answer Are there any tricks for Askbot w/FCGI?

It appears it is not an Askbot issue but something with fcgi. I just put a dummy fcgi script out there and have the same problem. My .htaccess file is as they suggest but isn't happy. I will post the solution once I figure it out. Thanks.

2011-09-26 06:56:46 -0500 commented answer Are there any tricks for Askbot w/FCGI?

/askbot.fcgi/ with or without anything (such as questions) following it. But, just asking that question pointed me at where I should be looking. I have been staring at the fcgi script and it is clearly not the problem. That should help.

2011-09-25 19:38:08 -0500 asked a question Are there any tricks for Askbot w/FCGI?

I am trying to get Askbot running on a2hosting with FCGI. (I picked them because they have Postgres available.) Running the FCGI script directly with the Python interpreter seems to work (one warning "/home/qanetcom/Python/lib/python2.7/site-packages/coffin/common.py:59: UserWarning: Cannot translate loader: askbot.skins.loaders.loadtemplatesource warnings.warn('Cannot translate loader: %s' % loader" but returns a status 302) but a 404 when trying to invoke it from a browser. Nothing in the log. Note that I am using my own copy of Python (2.7.2).

Maybe the "big trick" is how to track down the problem with no log entries, error messages, ...

2011-08-31 05:14:10 -0500 received badge Favorite Question (source)
2011-08-28 05:01:59 -0500 received badge Nice Question (source)
2011-08-17 22:07:24 -0500 received badge Nice Question (source)
2011-08-17 15:09:00 -0500 commented answer Will Askbot and Merengue play nice together?
This will be learning on both ends for me as I have set up Merengue but not done anything with it yet but, sure, I will try it out and let you know of any progress.
2011-08-17 15:07:34 -0500 received badge Supporter ( source )
2011-08-17 06:40:13 -0500 asked a question Any alternatives to PayPal for donations?

pledgie.com only offers PayPal as an option for donations. I know quite a few people (including myself) whose plastic is not accepted by PayPal. Any alternatives (such as Google Checkout)?

2011-08-17 04:38:48 -0500 asked a question Will Askbot and Merengue play nice together?

I set up OSQA to play with and think there is real potential with this type of system. But, what I want is an integrated solution. That is, something that will contain blogs, forums, news and a QandA presence.

I am currently using Drupal for the other stuff. If I am going to write code I would pick Django as the starting point. Beyond that, it seems that Merengue would offer a lot of the basics I need. I am wondering if anyone has tried to run Askbot with Merengue?

Note that while I have a site I want to move it is from Drupal so how I get Askbot to work with other Django apps is totally open. I could, for example, use the Askbot authentication system for the whole game if that seems appropriate.

2011-05-20 18:54:49 -0500 received badge Student (source)
2011-05-20 18:52:50 -0500 asked a question Integrating askbot with other Django applications

I run a web site that I feel would benefit from askbot. The site itself (Drupal based) needs a serious upgrade and I am thinking it might be better to custom build a site using Django, some forum software, askbot and some other (possibly custom) stuff.

Is the idea that askbot will be easy to integrate into such an environment?