Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
140 views

Analytics counter using sofa and couchApp

Couch has a REST interface. This means that data-updates are exclusive to PUT calls. I'm inspecting ways to implement a humble analyics counters, and came accross the features of couchdb, sofa and ...
2
votes
2answers
304 views

A good OpenID implementation in Erlang?

I'm looking for a good (Or at least working) implementation of OpenID in erlang. I've looked at several different solutions, but non of them are working 100%.
2
votes
1answer
74 views

Adding International support in Erlang Web 1.4

I'm trying to add international support for a website based on the Erlang Web 1.4. I would like to have a couple of links on every page (the notorious Country flags) that allow the user to set his ...
2
votes
2answers
1k views

TinyMCE textarea problem

I have an automatically generated text-area (by the Erlang Web framework) that looks like the following: <span class="form_input"> <textarea id="question_text" class="tinymce" ...
2
votes
3answers
204 views

Erlang Web and Inets BindAddress

After installing Erlang Web 1.3 and starting it in interactive mode, I get the following error in the logs: Failed to start service: "config/inets.conf" due to: "httpd_conf: 0.0.0.0 is an ...
1
vote
1answer
82 views

How do i get values from this URL? and execute an erlang module with the values to reply the client with result?

http://www.myserver.com/exile?Key1=Value1&Key2=Value2 When i get a request in this format to my server, how do i handle this request? What i need to do: Need to get all the values and run a ...
1
vote
2answers
140 views

is membase a good persistence layer for a erlang gamer server?

I aim to create a browser game where players can set up buildings. Each building will have several modules (engines, offices,production lines, ...). Each module will have enentually one or more ...
1
vote
0answers
72 views

erlang gen_tcp:connect/3 not working with rpc:call/4, anyone knows why?

Could not solve this by myself launched a new node A with ssh command started a new node B gen_tcp:connect/3 works on B, but rpc:call(B,gen_tcp,connect,Params) not works. Both nodes are running on ...
1
vote
1answer
487 views

error “init terminating in do_boot” in chicago boss

I just tried "make" in Chicago Boss(Erlang web framework) dir and failed with error {"init terminating in do_boot",{undef,[{make,all,[]},{init,start_it,1},{init,start_em,1}]}} What is wrong? What ...
1
vote
2answers
148 views

Erlang: Output Problem

In my erlang web application, there is a list, which contains integers to be printed on the web page. But when the script executes, it prints this, instead of actual list, Please look at this Image ...
0
votes
1answer
27 views

Webmachine: How can I retrieve multiple values from URL via wrq:get_qs_value?

I get this: T = wrq:get_qs_value("name",ReqData) But suppose I want to retrieve "fname", "lname", "gnder", "age", etc. from a form submission. Do I need to repeat variations on the line above for ...
0
votes
1answer
104 views

How to maintain stateful in yaws

I have some process (spawned) with state. How to maintain simple stateful service in yaws? How to implement communication to process in "appmods" erl source file? update: let's we have simple ...