You cannot post messages because only members can post, and you are not currently a member.
Description:
A group for ErlyWeb developers to discuss questions, problems, features, and ideas.
|
|
|
Pesquisa de consumo de taxi
|
| |
Se tiver problemas para visualizar este formulário, você poderá preenchê-lo on-line: [link] Pesquisa de consumo de taxi Caro, Estou realizando uma pesquisa para determinar o comportamento de consumo de taxi pelas pessoas e então determinar qual o foco do projeto... more »
|
|
Is Erlyweb dead?
|
| |
Last commit to repository: October 19, 2008
Last message on mailing list: October 2, 2009
I therefore dare to ask: Can Erlyweb be considered dead?
Stefan
|
|
twoorl not working
|
| |
I have got the home page showed up, but when I filled up the first record and click on submit, erlang crash. I am using OTP 13B01. Erlyweb 7.1 and yaws 1.84 on freebsd 7.2 and 8.0 Thanks!
|
|
function relations/0 already defined
|
| |
Hi guys,
Does anyone have any idea why I get the following error when trying to
use the relations function:
function relations/0 already defined
I have the following in one of my module files:
-module(tag).
relations() -> [{many_to_one, [hotlink, video, gear, music,
picture]}].
when I try to compile the application, I get the error above: function... more »
|
|
How to represent parent-childern relationship with erlydb?
|
| |
Hi all,
I am trying to make a forum application that every forum can have
their
child-forums. But I found it hard to represent these with erlydb.
First I tried to use a self-referencing many-to-many relation:
new (A) ->
Post_data = yaws_api:parse_post(A),
{value, {parent_forum_id, Parent_forum_id_str}, Other_fields} =... more »
|
|
Auth in embedded mode not working with 1.82
|
| |
Hello,
I've just upgraded to 1.82, and Basic authentication not work in
embedded mode,
Yaws config is:
set_conf([LogDir,DocRoot]) ->
GC = yaws_config:make_default_gconf (false,umts),
GC2 = GC#gconf{
trace = false,
ebin_dir = [code:lib_dir(yaws)++ "/ebin"],
include_dir = [code:lib_dir(yaws)++ "/include"],... more »
|
|
smerl and cover
|
| |
Hi.
When a module has been modified by smerl, it can no longer be used
with cover ([link]). Is there any
solution for this problem? Is this a limit of Erlang or smerl?
Regards,
Ngoc.
|
|
Yaws 1.8..1 and Erlyweb appmods not working as adveertised
|
| |
An by multiple users while going through the tutorial that is on
Yariv's (the erlyweb
creator) website. My yaws.conf looks like this:
<server localhost>
port = 8080
listen = 0.0.0.0
docroot = "C:\erlang\lib\Yaws-1.81/www"
"C:/erlang/lib/Yaws-1.81/appli cations/music/www"... more »
|
|
How to represent a 2-to-many relationship in ErlyDB ?
|
| |
I have a very simple DB representing a chess game/player scenario:
Player table: {id, name, score, etc}
Game table: {id, white_id, black_id}
As you can see a Game is strictly a 2-to-many relationship so the
easiest way to handle this is having 2 foreign keys (white and black
players) exist in the Game table. I am aware my foreign key should be... more »
|
|
|