Re: Working Django forums code for integration?

2012-06-23 Thread brycenesbitt
I've had the same problem. > > AskBot : not a real forum, and a lot of dependencies. PyBBM: install instructions incomplete, no community to speak of, buggy. I had problems with csrf, and could not get any help. Cnprog: dead PyBB: dead DjangoBB: website reads "Documentation will be soon..." --

Re: Send message to SMS Gateway

2012-06-23 Thread Cal Leeming [Simplicity Media Ltd]
Just fyi, if you were working directly with an upstream provider (such as T-Mobile or O2), you would most likely need to be processing literally millions of messages a month.. you'd probably also need to meet minimum commit terms (such as throughput and contract duration). I suspect anything

Re: Send message to SMS Gateway

2012-06-23 Thread Setiaman Lee
Hi Cal, Nevio and Anh Thanks for your reply. The reason I want to use SMPP is because I will send high volume of SMS per month. So cost will be a factor here. The faster and reliable protocol is using SMPP (at least this is what I know). Probably I need to deal with Telco network or sms

Re: Any clue why Facebook iframe would be blank?

2012-06-23 Thread Kurtis Mullins
> > This is a common problem in all of the proxied setup: > > http://flask.pocoo.org/snippets/47/ > > The real fix is always reading POST datas when they are available (even if > you are not interested in them). Not reading them means your communication > socket with the webserver will be

Haystack with Solr- Schema Parsing Failed

2012-06-23 Thread coded kid
I'm trying to rebuild_index, but after building the schema ( manage.py build_solr_schema ) I copy and paste the output in the schema.xml file. After restarting the server and rebuild_index ( manage.py rebuild_index ) I'm getting the below error. I've been trying to get the problem, yet no success!

how to create the app_list variable

2012-06-23 Thread Naresh Dwivedi
Hello all, I am new to django python programming and need some help: how can i create the app_list variable as it is created in a function index on sites.py in django/contrib/admin/ and made it available at each admins template page, actually i want to create a menu in which the top menu

Re: Send message to SMS Gateway

2012-06-23 Thread Le Hoang Anh
Hi, You may have a look at http://www.rapidsms.org/ it supports various backends (kannel, smpp) -- anh On Sat, Jun 23, 2012 at 9:11 AM, Setiaman wrote: > Hi, > > I want to create a web app to send the message to SMS Gateway. > Try to google the suggested way is to use

Re: Send message to SMS Gateway

2012-06-23 Thread Nevio Vesic
Setiaman, You can try to use service provider such as www.telapi.com to help you with SMS messages. Getting done SMS on your own will cost you much more time and money than you actually need to spend. Regards, Nevio On Sat, Jun 23, 2012 at 11:31 AM, Cal Leeming [Simplicity Media Ltd] <

Re: Any clue why Facebook iframe would be blank?

2012-06-23 Thread Roberto De Ioris
> On Fri, Jun 22, 2012 at 3:59 AM, Gabriel - Iulian Dumbrava < > gabriel.dumbr...@gmail.com> wrote: > >> Hi, >> I think something similar happen to me when I set the width of the >> iframe >> to be too narrow. I'm not very sure, but maybe you cand check it out. >> >> Gabriel >> > > Hey Garbiel, >

Re: Race and Locking? was Re: Duplicate rows with same key in DB?

2012-06-23 Thread Cal Leeming [Simplicity Media Ltd]
Also - get_or_create doesn't always prevent a race condition if you have high traffic.. depending on your code+stack. I already did a post about this a while back: http://markmail.org/message/j3qr2y26i5uk7c3z On Sat, Jun 23, 2012 at 8:57 AM, Melvyn Sopacua wrote: > On

Re: Send message to SMS Gateway

2012-06-23 Thread Cal Leeming [Simplicity Media Ltd]
>From the way your email is worded, I think you are looking at doing this the wrong way. Look at using something like BulkSMS - or an SMS USB device. Don't start trying to figure out how SMPP and SS7 works, you'll only give yourself a head ache and it absolutely wouldn't be relevant to you. Cal

Re: Race and Locking? was Re: Duplicate rows with same key in DB?

2012-06-23 Thread Melvyn Sopacua
On 23-6-2012 9:52, Melvyn Sopacua wrote: > On 23-6-2012 0:02, ydjango wrote: >> >> Thank you, I also believe it is Race condition. I do not want to use >> get_or_create as I like to have control over DB writes and updates. I will >> try Unique_together and catch the integrity error exception as

Re: Race and Locking? was Re: Duplicate rows with same key in DB?

2012-06-23 Thread Melvyn Sopacua
On 23-6-2012 0:02, ydjango wrote: > > Thank you, I also believe it is Race condition. I do not want to use > get_or_create as I like to have control over DB writes and updates. I will > try Unique_together and catch the integrity error exception as Kurtis > suggested or check again before