Home arrow Forum discussbot v1.3 problem.
  Welcome, Guest. Please login or register.
Did you miss your activation email?
January 09, 2009, 06:21:21 AM
Home New Posts Search Calendar


Login with username, password and session length
+  Joomla Forum
|-+  Joomla Addon Discussion
| |-+  Joomla Mambots
| | |-+  discussbot v1.3 problem.
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: 1 [2] Go Down Print
Author Topic: discussbot v1.3 problem.  (Read 6954 times)
-Wolverine
Developer
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: discussbot v1.3 problem.
« Reply #15 on: March 23, 2006, 06:06:12 PM »

Its your code Monty so thank you!   Grin
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
Montty
Joomla Newbie
*

Karma: +2/-1
Offline Offline

Posts: 22



View Profile WWW
Re: discussbot v1.3 problem.
« Reply #16 on: March 23, 2006, 06:27:01 PM »

LOL did'nt read your previous post - Huum too much php lately me think Grin

Logged

FinLy - Arifin
QA / Testers
Joomla Newbie
*****

Karma: +3/-0
Offline Offline

Posts: 29


FinLy


View Profile WWW
Re: discussbot v1.3 problem.
« Reply #17 on: April 02, 2006, 01:56:09 PM »

I just installed discuss bot 1.3.1
and give me this error

http://www.mysite.com/javascript:send_form(14)

Page not Found

What is this meaned?
Logged

-Wolverine
Developer
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: discussbot v1.3 problem.
« Reply #18 on: April 02, 2006, 02:48:37 PM »

AFAIK it`s Joomla 1.0.8 problem.
There was same problem on my site operafan.net
I solve this problem upgrading Joomla to 1.0.8_03
http://joomlaforum.ru/index.php/topic,1293.0.html

But another problem appears - now link to existing discussion looks like
http://operafan.net/component/option,com_smf/Itemid,50/http://operafan.net/topic,501.new#new
But the link is working.
that should get it fixed for you
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
FinLy - Arifin
QA / Testers
Joomla Newbie
*****

Karma: +3/-0
Offline Offline

Posts: 29


FinLy


View Profile WWW
Re: discussbot v1.3 problem.
« Reply #19 on: April 02, 2006, 03:10:28 PM »

hmm...
is that a patch for joomla 1.0.8?
How can I install the patch?
Must I overwrite all the files? Too dangerous
Is there any save way for it?
Logged

CBScoop
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 3


View Profile WWW
Re: discussbot v1.3 problem.
« Reply #20 on: April 24, 2006, 06:58:02 PM »

I'm not sure this is the same thing y'all are talking about above, but this is the error I'm getting:

"The requested URL /javascript:send_form(222) was not found on this server."

Any suggestions?  I did upgrade to the 1.3.1 that was posted further up in this thread.
Logged
-Wolverine
Developer
Joomla Guru
*****

Karma: +376/-34
Offline Offline

Posts: 3393


Lead Developer


View Profile WWW
Re: discussbot v1.3 problem.
« Reply #21 on: April 24, 2006, 09:41:34 PM »

I believe it is the same Chad.  Have you applied that patch for J! 1.0.8?
Logged

Need help?  Check Here First!
Get the JSMF User Guide
SEARCH this forum.
CBScoop
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 3


View Profile WWW
Re: discussbot v1.3 problem.
« Reply #22 on: April 24, 2006, 11:29:05 PM »

Yeah, I applied the patches that were suggested in the Joomla forum.  No luck.  I'll keep trying from time to time and maybe I'll get lucky.  I'm just not smart enough to get it to work.   Wink
Logged
ChaosEnergy
Joomla Newbie
*

Karma: +1/-0
Offline Offline

Posts: 14


View Profile
Re: discussbot v1.3 problem.
« Reply #23 on: May 03, 2006, 08:56:24 PM »

Applied patches mentioned above

Now, first comment (javascript:send_form(82)) is possible!!!!

But after first comment, everyone else gets awrong link:

http://chaosempire.info/web/topic=12341.new
instead of http://chaosempire.info/web/component/option,com_smf/Itemid,61/topic,12341.msg176675/,#new

Logged
astrolabos
Joomla Newbie
*

Karma: +0/-0
Offline Offline

Posts: 2


View Profile
Re: discussbot v1.3 problem.
« Reply #24 on: May 06, 2006, 07:45:59 PM »

Quote
Applied patches mentioned above

Now, first comment (javascript:send_form(82)) is possible!!!!

But after first comment, everyone else gets awrong link:

http://chaosempire.info/web/topic=12341.new
instead of http://chaosempire.info/web/component/option,com_smf/Itemid,61/topic,12341.msg176675/,#new
I get the same error. If someone replies, then a new reply from the joomla frontpage is not possible. Is there anything to be done about it?  Undecided

EDIT: I think that in here
Code:
     // There must already be a topic, so let's make a link to reply
     else {
          $query = "SELECT numReplies"
          . "\n FROM {$smf_tprefix}topics"
          . "\n WHERE ID_TOPIC = '".$resultid."';"
          ;
          $database->setQuery($query);
          $replies = $database->loadResult();
          $replies++;
          if ($begin_end) {
               $smf_location = "0";
          } else {
               $smf_location = "new";
          }
         
          $showlink = '<a class="link_pos" href="'.($mosConfig_sef ? "" : $mosConfig_live_site."/").sefRelToAbs((str_replace($mosConfig_live_site."/","",$mosurl)) . 'topic=' . $resultid . '.' . $smf_location) . '"><img border="0" src="'.$discuss_image.'"> ('.$replies.') '.$link_text.'</a>';

the
{
               $smf_location = "new";
          }
must be something else? Huh
« Last Edit: May 06, 2006, 08:18:14 PM by astrolabos » Logged
Jelte
Guest
Re: discussbot v1.3 problem.
« Reply #25 on: May 10, 2006, 05:29:57 PM »

Interested in this too...

Using the 1.3.1 bot also give an javascript error on my site.

Is the problem with "'s" and "&" in the board also fixed in this release? (if you use the bot {mos_smf_discuss:sample's & sapmle's} for example).
Logged
Jelte
Guest
Re: discussbot v1.3 problem.
« Reply #26 on: May 17, 2006, 09:54:55 AM »

Any updates on a new version of the mambot?
Logged
Pages: 1 [2] Go Up Print 
« previous next »
Jump to:  



Login with username, password and session length

Powered by MySQL Powered by PHP Joomla Forum | Powered by SMF 1.1 RC1.
© 2001-2005, Lewis Media. All Rights Reserved.
Joomla Bridge by JoomlaHacks.com
Valid XHTML 1.0! Valid CSS!

Joomla Hacks is a Joomla Components, Joomla Modules, Joomla Templates, & Joomla Mambots resource portal. None of the text or images in this public website may be copied without the expressed written consent of the authors. Copyright 2005 by JoomlaHacks.com. Powered by Joomla. All rights reserved.
Terms of Use
Joomla Hacks



Joomla Hacks
German Lang French Lang Italian Lang Spanish Lang Japanese Lang Chinese Lang
Search Contact About Advertise Blogs Topsites Submit News Register Login