Help me write a forum like this one

Hi,
This forum software (jive) seems to be excellent. I was trying to write one using jsp and beans and didn't get very far. Can anyone point me to any resources on the web that would serve as good examples ?
Thanks in advance.

I went to globalleafs.com and took a look at their only jsp entry - called netpals. Is that what you were referring to? Well, it wasn't quite what i wanted. So let me make clear again what i want - i want a sample of a discussion forum (like jive )
I asked jivesoftware if i could take a look at their source code but havent got any response so far.
can u help me please ?

Similar Messages

  • How to make a Discussion Forum like this one with Oracle Portal Applications

    Hallo,
    My colleagues and I are trying to make somthing similar for our planned intranet-platform and I wonder if there are some prefabricated modules which can be used (we are all enthused by the features of your Discussion Forums).
    Maybe you can provide us with papers ("construction plan") how to bring such functionality to our intranet (I searched the Oracle page, but did not find papers of this content).
    Thanks,
    Chistian

    Yes, this would be great. I have looked at some of the Partner Applications but the only module we want is this kind of a threaded message board. I would be very appreciative of this information as well.

  • What do I need to do to make a forum just like this one(from apple)

    What do I need to do to make a forum just like this one(from apple)

    Wendy, as a_a has explained, when power is removed, the data is gone.
    If you want to put this problem to rest, remove either of the battery connections; this will assure the data is gone forever!
    WyreNut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • How can I make a image like this one? (image in description)

    Hi guys I need to know how can I make a image like this one http://img31.imageshack.us/img31/2710/69823211.gif
    I need step by step instructions please. How can I animate it like that? Whats the font? Tell me everything please.

    To do a step by step instruction on here will take someone a very long time, as you havent really said at what level you are at.
    On Youtube there are a lot of animation tutorials for PS. But essentially in this case you are moving that white streak across a few frames at a time.
    The font might be found with the help of http://http://www.myfonts.com/WhatTheFont/

  • I would like an editor like this one.  Can I do this with dreamweaver?

    I want to build an editor in my site with a login editor that looks like this one.  I tried the adobeincontextediting and it won'e let me change the text size, color or insert a table.  If I can just make one like the one on this page somehow with a login I would be so happy.
    I built a site for my friend www.bigskyboxers.com and she wants to be able to edit it.  I put the adobeincontextediting in it but I can't get it to work.  Any suggestions?  Heidi 

    As far as editing tables goes... they need to be VERY strictly formatted.
    Please refer to this thread
            "Re: Editing a  Table using ICE"
    I have more information on formating tables also on this thread:
            "Re:  Cannot save the selected regions"
    Using your table, your code should look something like this:
    <table border="0" width="600" bgcolor="#FFFFCC" background="images/hearts.gif" style="height: 350px">
    <tbody ice:repeatinggroup="*">
      <tr ice:repeating="true">
        <td ice:editable="*" background="images/hearts.gif" >       <p align="center">       <img height="225" src="images/epicstack.jpg" /><br>
            OFA-Cardio Clear<br>
            Thyroid Normal</p>
          <p align="center"> <br>
          </p></td>
        <td ice:editable="*"><p align="center">       <img height="225" src="images/vindi2.jpg" /><br>
            OFA-Cardio Clear<br>
            SAS-Clear<br>
            Holter tested normal &quot;2 pvc's&quot;<br>
            Thyroid Normal<br>
        </td>
      </tr>
    </tbody>
    </table>
    I added <tbody> tag, highlghted in blue. Look over the notes on structuring tables as to why.
    That will solve your problem if you follow the guidelines I have there.
    Problems are highlighted in red. User cannot change background images that are nested. That should be done with CSS anyway.
    Also, note that I left out the table that this table is nested in... nesting tables will not allow you to do what you are trying to accomplish. You shold wrap the table in a "div" and alternatively make that <div> something like <div ice:editable "*">
    The other code on the page has repeating regions, etc, BUT NO EDITABLE REGIONS... it sould look something like this:
    <div ice:repeating="true" ice:editable="*">Content for new Repeating Region goes here</div>
    Read through the info on tables and it will help you alot. Generlly, I would say avoid them & alternatively use properly styles <div>'s instead. But if you MUST use tables, structure them as I have & they'll cooperate with you.
    Good Luck,
    -Tom

  • Scan line write-on effect like this...

    I am looking to create a scan-line "write on" effect like this.
    Patrick Sheffield originally posted the thread [here|http://discussions.apple.com/thread.jspa?messageID=634451&#634451].
    I downloaded the projects but they didn't do exactly what the movie did.
    This is the effect I am after:
    [Scan line Movie|http://www.pistolerapost.com/viewing/analysis1.mov]
    Thanks,,

    On the movie, the scanlines come down line by line, whereas in the project file, each line comes on randomly.
    Also, on the movie there's a very nice brief glow going from side to side as each line is laid down.
    When the scan lines go down they reveal an image. I guess you're using an image mask for that?
    I looked for the project file that corresponds to the movie, but I couldn't find it.
    There were two in the zip file: scanlinescreen , scanlinetext
    ^(ps: thanks for the "fun with" series - they've been helpful)^

  • CAn we write a query like this

    CAn we write a query like this?
    If not how can this be changed?
    select col1,col2,col3.col4
    from table 1
    where col1,col2 in(select col1,col2 from table2)

    Or it may be identical:
    SQL> CREATE TABLE t1 (c INT NOT NULL);
    Table created.
    SQL> CREATE TABLE t2 (c INT NOT NULL);
    Table created.
    SQL> INSERT ALL
      2  INTO t1 VALUES (rn)       
      3  INTO t2 VALUES (rn)
      4  SELECT rownum AS rn FROM user_tables WHERE rownum <= 15;
    30 rows created.
    SQL> BEGIN                                       
      2  DBMS_STATS.GATHER_TABLE_STATS(user,'T1');
      3  DBMS_STATS.GATHER_TABLE_STATS(user,'T2');
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM t1
      2  WHERE  EXISTS
      3         ( SELECT 1 FROM t2 WHERE c = t1.c )
      4 
    SQL> @xplan
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |    15 |    90 |     5 |
    |*  1 |  HASH JOIN SEMI      |             |    15 |    90 |     5 |
    |   2 |   TABLE ACCESS FULL  | T1          |    15 |    45 |     2 |
    |   3 |   TABLE ACCESS FULL  | T2          |    15 |    45 |     2 |
    Predicate Information (identified by operation id):
       1 - access("T2"."C"="T1"."C")
    SQL> SELECT * FROM t1
      2  WHERE  c IN
      3         ( SELECT c FROM t2 )
      4 
    SQL> @xplan
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |    15 |    90 |     5 |
    |*  1 |  HASH JOIN SEMI      |             |    15 |    90 |     5 |
    |   2 |   TABLE ACCESS FULL  | T1          |    15 |    45 |     2 |
    |   3 |   TABLE ACCESS FULL  | T2          |    15 |    45 |     2 |
    Predicate Information (identified by operation id):
       1 - access("T1"."C"="T2"."C")

  • How hard to make a website like this one ?

    Hi, I hope I don't stress people with my status, but I'm a
    complete newbie with desire to learn. I just figured out we have
    Dreamweaver at school in the Mac studio, adobe version if I recall
    correctly and I wanted to make a band website with it, but couldn't
    understand where to start.
    So first, since I don't want to hire anybody to do it for me,
    I would like to know how hard it would be to make a website like
    this one :
    http://franzferdinand.co.uk/
    In my logic, the first step would be to create a background
    image with the menu drawn in it then add buttons to them to
    navigate. I would then add the content boxes with scroll bars using
    the draw div function.
    My second question, how do I go about learning this software
    ? Are courses given somewhere ?
    Thanks, Francis.

    > So first, since I don't want to hire anybody to do it
    for me, I would like
    > to
    > know how hard it would be to make a website like this
    one :
    >
    http://franzferdinand.co.uk/
    If you know nothing of web design and development, it's going
    to be hard.
    Not that you can't do it. It's just going to take you a lot
    of time and
    effort to get up to speed on things.
    > In my logic, the first step would be to create a
    background image with the
    > menu drawn in it then add buttons to them to navigate. I
    would then add
    > the
    > content boxes with scroll bars using the draw div
    function.
    That isn't how that site was built nor the best way to to it.
    The site in
    question is fairly basic HTML and then styled with a lot of
    well put
    together CSS.
    > My second question, how do I go about learning this
    software ? Are courses
    > given somewhere ?
    Don't learn Dreamweaver. Instead, learn HTML, CSS,
    Javascript, etc. Getting
    a basic understanding of HTML and CSS will then allow you to
    figure out
    Dreamweaver fairly intuitively, plus you'll have a MUCH
    better framework of
    understanding to work from.
    And feel free to ask questions in here!
    -Darrel

  • I write the code like this ...i didn't get output properly

    Hi Experts,
    I write the code like this ...i didn't get output properly......the selected file name is not copied to v_fname........
    Points will be rewared...
    tables : kna1.
    parameters : P_FNAME  type rlgrap-filename.
    data : v_fname(200) type c . "lower case.
    data : begin of itab occurs 0,
           kunnr type kna1-kunnr ,
           end of itab .
    select kunnr from kna1 into table itab up to 50 rows .
    at selection-screen on value-request for P_FNAME  .
    CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
      EXPORTING
         PROGRAM_NAME        = SYST-REPID
         DYNPRO_NUMBER       = SYST-DYNNR
         FIELD_NAME          = v_fname
      STATIC              = ' '
      MASK                = '   '
        CHANGING
          FILE_NAME           = P_FNAME 
    EXCEPTIONS
      MASK_TOO_LONG       = 1
      OTHERS              = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    start-of-selection.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
      BIN_FILESIZE                    = 'v_fname'
          FILENAME                        =
         FILETYPE                        = 'ASC'
        TABLES
          DATA_TAB                        = ITAB
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

    You are exporting field v_fname, not importing it.  The field v_fname isn't for the file name anyway; field p_fname is for the file name. You also need to pass your file name to the function module GUI_DOWNLOAD for it to work.
    - April King

  • How do I make a loading screen like this one?

    Okay, so for my loading screen, I want a block to appear for every 10% loaded (so they'red be 10 blocks at the end).  I know how to make a loading bar, but I'm having trouble making this one.  Any help? Thanks.

    There are probably a number of ways to approach it.  One would be to have a movieclip with 10 frames where a new box is manually added in each frame.  You use the percent loaded information to tell that movieclip which frame to go to.

  • How do I create a movie like this one?

    I have OS X 10.6.1. I'd like to create a QuickTime movie like this http://www.happytapper.com/appsmovie.html and embed it into a webpage the same way. Here are a few questions I have about doing that:
    - Do I need Quicktime Pro? I only want to capture the iPhone simulator and the free version seems to be limited to full screen capture.
    - How do you get a completely black background like that?
    - How do you remove the mouse arrow out of the movie (all the clicking around)? The simulator will definitely show that.
    - Should I cross post this question to the developer forum?

    Make scatter brush out of a row of circles
    Apply to a curved path
    expand appearance
    apply color

  • ATTENTION JUSTIN KESTELY:  link to ORAFAQ forum when this one is down?

    Justin,
    How would you feel about a reciprocal agreement with the ORAFAQ forums that, when either is down, the error message includes a link to the other forum? The ORAFAQ forum administrator Frank Naude brought the subject up here:
    http://www.orafaq.com/forum/t/128205/0/unread/43710/#msg_361172
    Regards,
    Barbara
    P.S. I am a moderator on the ORAFAQ forums as well as an ACE on the OTN forums.

    burleson wrote:
    yes there are some rude (ish) people but nothing like ORAFAQI've never been on OIraFAQ, but I've seen plenty of self-appointed "experts" on OTN, peddling nonsense and treating others with disrespect.
    You don't see this on IBM or Microsoft forums, as they enforce their TOS and vet people's credentials.
    A forum is only as good as the moderators, IMHO. . . .have just changed my mind about OTN forums
    sadly we get threads like this
    http://forums.oracle.com/forums/thread.jspa?threadID=833016&tstart=0&start=60
    I cannot believe how childish some people are.
    it beggars belief
    I think it is time to find another forum
    2 down how many more to go?

  • I want my old updation how do I get it back I don't like this one

    I want my old updation how do I get it back I don't like this one

    I know that I really don't like the updated version it's really bad I wish that I didn't update my phone :(

  • HELP!  iPod not updating like this Apple product should!

    Here's the deal. My iPod's main "home" computer is elsewhere. I quit going there some months back. For the past month or so, I have been updating my iPod on my own computer by dragging files into the iPod icon in iTunes while the whole time it would show "DO NO DISCONNECT".
    I've been able to do that for quite awhile now. Last night I added the official SmackDown! vs RAW 2007 album onto my iPod then went to workout at the gym. I did NOT drop my iPod or do anything to it last night after it's last "update".
    Then last night I wanted to add/drag a song onto my iPod but it quit showing my iPod's icon on iTunes under DEVICES. I tried restarting my iPod many times an reconnecting it but no improvement. I then clicked the harddrive icon for the iPod under "My Computer" and told me it has not been formatted. I clicked format and it said something I will lose all data and I did NOT pay $200 just to get screwed over with errors like this to lose everything.
    I don't understand why my iPod won't play/update on my computer anymore all of the sudden.
    Another problem. Now when I connect the charger line (connected from my computer) into my iPod, it's not showing "Do Not Disconnect" anymore.
    I'd like to know what I could do without getting screwed over by losing loads of money on multimedia purchased on a product that (HOPEFULLY NOT) did nothing but eat away my money.
    Thanks

    ummm... okay thanks

  • Would like a good forum tool ( like this one )

    Any tips on where I can get a good discussion forum, for installation at my local site?
    Is the one we're on available for download/purchase?
    Many Thanks

    Hi,
    Jive is commercial, do you have any pointers to any FREE forum tools like Jive ?
    Please help.
    -- Martin Louis

Maybe you are looking for

  • Resume import

    I have an import operation that has been running for over 48 hours.   It is importing 400GB of photos/video.   I have a few questions.  One,  on import I selected the option to import folders as projects and the location of the files to be in Apertur

  • Remote Stored Procedure Call Dispatcher WEB WERVICE

    Hello all, Environment: Windows OS, Oracle 10g, mod_plsql I am looking for solutions to the following problem: A way to dispatch calls to stored procedures from client to server with a minimal impact on performance. We are looking at two possible sol

  • JDBC Receiver action Select

    Hello together I have some Problem with a JDBC Receiver Adapter. I want make a synchrony Process form a Web service to TeraData Database. The deployed driver are working and i can get Data with JDBC Sender Adapter. No I get the Error no action :   <?

  • Catalog browser error

    Hi, i have successfully installed the catalog browser and  i am able to login using the safari browser however when trying to open any report ( i am admin) i am getting the massage: there was an error trying to opening this document. this file cannot

  • Reading a directory

    Is it possible to list files in a directory using action script for flash lite? How do mobile phones read storage device like SD cards when inserted in the mobile phone? Will be much appreciated for any advise, thanks.