Home | Products | Consulting | Forums | Support | Order | 1-800-752-0455
  Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued Products: Article Manager 1 Add-ons:
Discuss this Article Add-On - 3 new forums supported!

 

First page Previous page 1 2 3 Next page Last page  View All


canvey
User

Sep 29, 2002, 5:25 PM

Post #51 of 75 (8649 views)
Shortcut
     Re: [sklwer] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Hi,

Try using http://64.70.189.14/forums/index.php as the URL. But you might also have a local problem as http://64.70.189.14/forums errors out, when normally it would redirect to the directory address.


Dave
Staff / Moderator


Sep 29, 2002, 5:47 PM

Post #52 of 75 (8647 views)
Shortcut
     Re: [sklwer] Discuss this Article Add-On - 3 new forums supported! [In reply to]  


Quote
I made modification to my templet and whenever I link to [ Discuss this story ] I am getting a 404 error ( page canot be found)



Your "discuss this story" link goes to http://64.70.189.14/exec/goforum.cgi?id=204

It looks like the script isn't installed there. It looks like it's installed here:

http://64.70.189.14/cgi-bin/artman/exec/goforum.cgi?id=204

You'll want to change your links to point to the right place. Now, the new URL returns an error still. So it means the script is there, but there's still some problems to work out (one less than before though).

Dave Edis - Senior Developer
interactivetools.com


MalaK_3araby
User

Sep 29, 2002, 5:56 PM

Post #53 of 75 (8645 views)
Shortcut
     Re: [sklwer] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

check the path you are using in the [Discuss this story] to link to goforum.cgi

BTW, good to see you using the Currently Online addon. Smile

G-Luck.

--------------
Sure you can spell it, but do you get it?


sklwer
Novice

Sep 29, 2002, 7:00 PM

Post #54 of 75 (8643 views)
Shortcut
     Re: [canvey] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

I did that and now I am getting Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@awate.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error logMadMad

My forum is working fine i dont get it I am lostPirate


sklwer
Novice

Sep 29, 2002, 7:03 PM

Post #55 of 75 (8642 views)
Shortcut
     Re: [Dave] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Yep and I dont know what the problem is now I am getting Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@awate.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.



My Vbulletin is working fine but i cant seem to make it link to Article managerPiratePiratePiratePiratePiratePiratePirate


Dave
Staff / Moderator


Sep 30, 2002, 11:31 AM

Post #56 of 75 (8628 views)
Shortcut
     Re: [sklwer] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

What happens when you upload the script as is, without any modifications, and set the permissions? When you try and access it does it give you an error? If that gives you an error it's likely a problem not related to the script, check the permissions and the first line of the script (that looks like this: "#!/usr/bin/perl", make sure that points to right place for perl on your server). I could also be that you don't have the FindBin module on your server, you can try commenting that line out and setting your $Bin folder manually.

If when you upload the original script (without any modifications) and it does work, it likely means you broke something will setting everything up. It's actually really easy to do that with perl, it's very picky if you forget a " or a ;. Try changing one setting at a time and uploading to try and see what's breaking it.

Hope that helps.

PS: We also have a new installation service on the order page if you don't want to hassle with it yourself. Although, you'll likely figure it out if you spend a little more time on it.

Dave Edis - Senior Developer
interactivetools.com


ozinm
User

Oct 8, 2002, 2:23 AM

Post #57 of 75 (8568 views)
Shortcut
     Request: Support for discusware? [In reply to]  

Oooh this looks good.
One problem tho - we've been using DiscusWare's discussion board for years (since '96).
I'm sure a lot of people still use this board.
Would it be possible to get this add-on working with their product?

have a look at http://www.discusware.com for more details.


trackpads
User

Dec 26, 2002, 6:48 PM

Post #58 of 75 (8479 views)
Shortcut
     Re: [Dave] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Hi!



I am really trying to get this to work but am having problems, when I follow these directions-


Quote



Quote
would it be possible to have the script post the new thread in different forums according to category?



It would, but you'd have to add some perl code. You would want to add something like the following a couple of lines after "# remove HTML for record data if requested" but before "# create new thread".

# specify forum cat based on article cat
if ($rec{'cat'} == 3) { $g{'forum_num'} = 12; }
if ($rec{'cat'} == 4) { $g{'forum_num'} = 22; }

Note: You'll need to check what your article manager category numbers are (referenced here with $rec{'cat'}).



But when I use the code in the current goforum.cgi it still defaults to the forum number here-


Quote
$g{'forum_num'} = 1; # forum number to create thread in
$g{'forum_board'} = 'TGBGENDESC'; # board name, ubbthreads and UBB only
$g{'forum_cat'} = '2'; # category, ubbthreads only



Any ideas for a good work around?


Dave
Staff / Moderator


Dec 31, 2002, 2:06 AM

Post #59 of 75 (8468 views)
Shortcut
     Re: [armyocs] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

>But when I use the code in the current goforum.cgi it still defaults to the forum number here...

It must not be matching any of the category numbers specified. If you specify a forum_num for EVERY artman category you could use an if/elsif statement and have it error at the end if no categories were matched to help you track down problems. Like this:

# specify forum cat based on article cat
if ($rec{'cat'} == 3) { $g{'forum_num'} = 12; }
elsif ($rec{'cat'} == 4) { $g{'forum_num'} = 22; }
elsif ($rec{'cat'} == 5) { $g{'forum_num'} = 22; }
elsif ($rec{'cat'} == 6) { $g{'forum_num'} = 22; }
else { die("Error: No forum_num specified for artman category '$rec{'cat'}'\n"); }

Let me know if that helps any! : )

Dave Edis - Senior Developer
interactivetools.com


Teambldr
User

Jan 23, 2003, 10:09 AM

Post #60 of 75 (8372 views)
Shortcut
     Re: [Dave] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Dave,

Just a heads up on the Discuss add on when using the Community plugin for GForum.

This will change the method and location of the actual login for the automatic login needed for posting an article for discussion (1st time auto post) and for the secondary viewer it should not effect the pre-posted link but it will effect the viewer if they would like to reply to the post of course.

The main issue will be the initial post by the automated user.

Hope this helps!



Brian
Brian


mickknutson
User

Jan 26, 2003, 11:26 PM

Post #61 of 75 (8358 views)
Shortcut
     Re: [Teambldr] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

I have 2 requested additions to the goforum script:

1. I do not like the plain error message if the article is older than x days..... I would like to see a simple pop up window (html) that tells the postings are no longer allowed, then the main window is automatically redirected back to where they were already at (the article I mean).

2. I would also like to add the article URL at the bottom of the discussion forum posting so people reading the forum, who have not seen the article yet, can get to the article from the posting.

__________________________________________________
Thank You...
Mick Knutson

BLiNC Magazine________ http://blincmagazine.com
BASE-Jumping Network__ http://basejumping.net [org,info,biz,ws,us]
FREE Email____________ http://basejumper.net

__________________________________________________



agoldstraw
User

Feb 5, 2003, 3:15 AM

Post #62 of 75 (8333 views)
Shortcut
     Re: [MalaK_3araby] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Dave,

We're having problems implementing this - is UBB6x supported yet? With debug mode turned on, we get: Server response to new thread request


HTTP/1.1 404 Not Found Date: Wed, 05 Feb 2003 11:17:16 GMT Server: Apache/1.3.26 (Unix) PHP/4.1.1 Connection: close Content-Type: text/html; charset=iso-8859-1 Not Found

The requested URL /cgi-bin/ubbcgi/postings.cgi was not found on this server.


Apache/1.3.26 Server at linux.westmidlands.com Port 80

Content-type: text/html Error logging in to forum. No 200 response code!

-----------------------------------------------------

Looking in our ubbcgi directory, postings.cgi doesn't seem to exist in UBB6.

Thanks,
--
Aidan Goldstraw
Head of Internet Development
Express & Star
Wolverhampton, England
http://www.expressandstar.com


td7acad
New User

Feb 17, 2003, 10:08 AM

Post #63 of 75 (8284 views)
Shortcut
     Re: [Dave] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Have you ever considered doing this for DCForum http://www.dcscripts.com

Thanks,

Tommy


Benjamin
Staff


Feb 17, 2003, 5:21 PM

Post #64 of 75 (8270 views)
Shortcut
     Re: [mickknutson] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Hi micknutson and aGoldStraw,

Thanks for your posts. Concerning custom jobs, we do offer custom programming services, so if you want we could always do this for you. You could contact out Theo, our head of custom programming directly if you wish. And, as an added benefit, any modifications which are made to the goforum will be made available to everyone - so people will be very happy with you! :-)

- GoForum doesn't currently support UBB6X forum, but within the program code there are many examples for how we coded support for the other forums. So if you have a Perl programmer you normally work with you can always have him code the support for fud forum...

Again, we do have custom programming services if you so desire.

Ben
interactivetools.com


Zus
User

May 14, 2003, 5:39 AM

Post #65 of 75 (8129 views)
Shortcut
     Re: [Benjamin] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Any change that Invision Board is compatible yet? It comes with our web hosting (one click to setup) which is why I am asking. Would be super easy for us if it was compatible with AM.


Luke
Staff / Moderator


May 14, 2003, 1:21 PM

Post #66 of 75 (8121 views)
Shortcut
     Re: [Zus] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

Hi Zus,

Thanks for your post! :)

Currently GoForum does not support Invision Board. GoForum supports the following Bulletin Boards:
  • vbulletin
  • ubbthreads
  • gossamer forum
  • ikonboard
  • discus

    As Ben noted in his previous post, we do offer custom programming, so if you were interested in having us modify goforum to support Invision Board we could always look into this for you. You could contact Theo our Project Manager.

    Additionally, if you have a Perl programmer on board (or know of one) you can always have him/her modify the code to support Invision Board. The GoForum code is made entirely available, and there are many examples within the code that a programmer could use to develop support for other forums.

    In any case, I'll add Invision Board to our list of feature requets for GoForum. If you have any other questions please feel free to let me know! Wink


  • Luke Holzken
    Product Development


    Theo
    Project Manager / Moderator


    May 14, 2003, 4:18 PM

    Post #67 of 75 (8111 views)
    Shortcut
         Re: [Luke] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    For those looking to add new forum support to goforum, we offer this at a $75 flat fee.

    This usually takes us more time than we would ordinarily bill at that amount, but we offer a discounted rate since it provides support for any Article Manager users with that forum system.


    Theo Wiersma
    Project Manager


    Zus
    User

    May 15, 2003, 9:28 AM

    Post #68 of 75 (8108 views)
    Shortcut
         Re: [Theo] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    Thanks Luke and Theo.

    If I might ask though, what forum does IT use? I like the simplicity of it and since you folks use it with AM, it might be best to purchase it since AM works so well with it already and it has been integrated with AM for some time (bugs worked out).


    Donna
    Staff / Moderator


    May 15, 2003, 10:52 AM

    Post #69 of 75 (8104 views)
    Shortcut
         Re: [Zus] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    Hi Zus,

    We use Gossamer Threads (http://www.gossamer-threads.com/) for our forums, and yes, this is supported with the goforums add-on. :)

    Donna


    Hire me!
    Save time by getting our experts to help with your project. Template changes, advanced features, full integration, whatever you need. Whether you need one hour or fifty, get it done fast with Priority Consulting.


    (This post was edited by Donna on Jun 24, 2003, 1:12 PM)


    noza
    User

    Jun 24, 2003, 12:32 AM

    Post #70 of 75 (8047 views)
    Shortcut
         Re: [agoldstraw] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    Aidan, did you ever get "GoForum" (discuss) to work with UBB6. ??

    Pat


    agoldstraw
    User

    Jun 24, 2003, 12:38 AM

    Post #71 of 75 (8046 views)
    Shortcut
         Re: [noza] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    No, we've been waiting for word from IT that it was now supported.
    --
    Aidan Goldstraw
    Head of Internet Development
    Express & Star
    Wolverhampton, England
    http://www.expressandstar.com


    noza
    User

    Jun 24, 2003, 6:05 PM

    Post #72 of 75 (8032 views)
    Shortcut
         Re: [agoldstraw] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    gofrum 1.9 is out now... doesn't look like IT will add UBB6+Pirate

    You know, I was looking at the script, I'm not a perl expert but it doesn't look to hard to config... if we can get the calls and info from UBB.


    markb2003
    User

    Jun 25, 2003, 3:22 AM

    Post #73 of 75 (8030 views)
    Shortcut
         Re: [Dave] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    Are we allowed to request/suggest a forum software program to intecorporate this add-on?

    I've been testing Invision Power Board (IPB) v1.2, which is an Open Source message forum program. This is their latest stable release.

    Thank you!

    Mark


    noza
    User

    Jun 25, 2003, 11:30 AM

    Post #74 of 75 (8025 views)
    Shortcut
         Re: [markb2003] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    look for the GoFroum 1.09 topic, you can do it there.


    Dave
    Staff / Moderator


    Jun 28, 2003, 10:04 AM

    Post #75 of 75 (8011 views)
    Shortcut
         Re: [noza] Discuss this Article Add-On - 3 new forums supported! [In reply to]  

    This is an old old thread, so I'm going to lock it. If anyone wants to talk about goforum.cgi (the "Discuss this Article Add-on") just post a new thread.

    Dave Edis - Senior Developer
    interactivetools.com

    First page Previous page 1 2 3 Next page Last page  View All
     
     


    Search for (options)
    Products
    CMS Builder
    Article Manager
    Realty Manager
    Listings Manager
    Order Now
    Services
    Priority Consulting
    Support
    Online Documentation
    Support Forums
    Support Homepage
    Company Info
    12 reasons to choose us!
    Meet the team
    Monthly newsletter
    Contact Us
    Toll Free: 1-800-752-0455
    Phone: (604) 689-3347
    Sales | Support
    Conditions of Use | Privacy Policy | Copyright © interactivetools.com 2008
    #201 - 2730 Commercial Drive, Vancouver BC Canada V5N 5P4