Page Index Toggle Pages: 1 ... 3 4 [5] 6 7  Send TopicPrint
Very Hot Topic (More than 25 Replies) Mods that I found to work! (Read 63150 times)
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Mods that I found to work!
Reply #60 - Mar 10th, 2005 at 8:12pm
Print Post  
I think the attachment url should be http://www.raes-fsg.org.uk/yabbatach
  

The Administrator.
Back to top
WWW  
IP Logged
 
Malcolm Blackwood
Guest


Re: Mods that I found to work!
Reply #61 - Mar 11th, 2005 at 1:28pm
Print Post  
Well, you are absolutely correct! Thank you so much. There is one final problem though, in that all uploads are stored with settings of 600, not automatically changed to 666 as it states in the readme file for this mod. If I log in with FTP to the site and chmod the files to 666 manually they can be viewed fine, but if I just leave them as uploaded they are there but can't be accessed. Is something wrong with the automatic conversion settings maybe?

Thanks again for your patience and knowledge. I think I am almost there now.
  
Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Mods that I found to work!
Reply #62 - Mar 11th, 2005 at 5:51pm
Print Post  
That penends on your server configuration. For example if you have shell access you can use the "umask" command to change the mode of newly created files. You could also try to chmod newly oploaded files in the YaBB script. Maybe the mod author can help you with that.
  

The Administrator.
Back to top
WWW  
IP Logged
 
Malcolm Blackwood
Guest


Re: Mods that I found to work!
Reply #63 - Mar 11th, 2005 at 10:47pm
Print Post  
Thanks again. I will see what I can sort out. You have helped me a great deal though, and I really appreciate it.
  
Back to top
 
IP Logged
 
ghurty
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 11
Joined: Feb 28th, 2005
getting yams 502 to work
Reply #64 - Mar 13th, 2005 at 11:32pm
Print Post  
Can someone tell me what i have to modify so that i can get YAMS 502 to work in 1.4? thank you
  
Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Mods that I found to work!
Reply #65 - Mar 14th, 2005 at 6:08pm
Print Post  
Try to use the mod editor to modify the few failed steps, it's not difficult.
  

The Administrator.
Back to top
WWW  
IP Logged
 
Elkaholic
Guest


Re: Mods that I found to work!
Reply #66 - Mar 17th, 2005 at 10:52am
Print Post  
I have installed many mods, but I have somehow duplicated some code and am trying to find it. When I reply to a message, under the reply box "Topic Summary" is doubled. Every post shows 2 times.
Can sombody point me to the file and place to fix this?
  
Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Mods that I found to work!
Reply #67 - Mar 17th, 2005 at 12:10pm
Print Post  
The file is question would be Display.pl but I can't tell anything specific. Look for lines that occure twice.
  

The Administrator.
Back to top
WWW  
IP Logged
 
Elkaholic
Guest


Re: Mods that I found to work!
Reply #68 - Mar 17th, 2005 at 9:41pm
Print Post  
I acually found it in the Post.pl File. It must have either been a bug or a mod replaced a line that was working correctly. Here was the problem

Code
Select All
# Show only the 10 newest messages in the thread's summary
		for (my $i = $#messages; $i >= $#messages - 9; $i--) { [b]This line would cause it to go beond a messages number if it was below say 2 so starting at 2 1 0 -1 -2  and display the messages twice. [/b]
			$messages[$i] ? $line = $messages[$i] : next;

			($trash, $tempname, $trash, $tempdate, $trash, $trash, $trash, $trash, $message, $ns) = split(/\|/,$line);
			$tempdate = &timeformat($tempdate);
			foreach (@censored) {
				($tmpa,$tmpb) = @{$_};
				$message =~ s~\Q$tmpa\E~$tmpb~gi;
			}
			my @words = split(/\s/,$message);
			&wrap;
			$displayname = $tempname;
			if($enable_ubbc) { if(!$yyYaBBCloaded) { require "$sourcedir/YaBBC.pl"; } &DoUBBC; }
			&wrap2;
			$yymain .= qq~

<tr><td align=left class="catbg">
<font size="1">$txt{'279'}: $tempname</font></td>
<td class="catbg" align=right>
<font size="1">$txt{'280'}: $tempdate</font></td>
</tr>
<tr><td class="windowbg2" colspan=2 bgcolor="$color{'windowbg2'}">
<font size="1">$message</font>
</td></tr>~;
		}
		$yymain .= "</table></td></tr></table>\n";
	}
	else { $yymain .= "<!--no summary-->"; }
}
 



I then added this, now give me a break, It's been a very long time since I have written code, just got back into it after a couple years break. If there is a cleaner way let me know.

Code
Select All
# Show only the 10 newest messages in the thread's summary
		for (my $i = $#messages; $i >= $#messages - 9; $i--) {
		if ($i >= 0){
		END;

		$messages[$i] ? $line = $messages[$i] : next;

			($trash, $tempname, $trash, $tempdate, $trash, $trash, $trash, $trash, $message, $ns) = split(/\|/,$line);
			$tempdate = &timeformat($tempdate);
			foreach (@censored) {
				($tmpa,$tmpb) = @{$_};
				$message =~ s~\Q$tmpa\E~$tmpb~gi;
			}
			my @words = split(/\s/,$message);
			&wrap;
			$displayname = $tempname;
			if($enable_ubbc) { if(!$yyYaBBCloaded) { require "$sourcedir/YaBBC.pl"; } &DoUBBC; }
			&wrap2;
			$yymain .= qq~

<tr><td align=left class="catbg">
<font size="1">$txt{'279'}: $tempname</font></td>
<td class="catbg" align=right>
<font size="1">$txt{'280'}: $tempdate</font></td>
</tr>
<tr><td class="windowbg2" colspan=2 bgcolor="$color{'windowbg2'}">
<font size="1">$message</font>
</td></tr>~;

}

}
		$yymain .= "</table></td></tr></table>\n";




	}
	else { $yymain .= "<!--no summary-->"; }
}

 

  
Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Mods that I found to work!
Reply #69 - Mar 18th, 2005 at 12:04am
Print Post  
Elkaholic wrote on Mar 17th, 2005 at 9:41pm:
I acually found it in the Post.pl File.
You got me on that one Smiley

Quote:
I then added this, now give me a break, It's been a very long time since I have written code, just got back into it after a couple years break. If there is a cleaner way let me know.
As long as it works there is nothing wrong with it. Wink
  

The Administrator.
Back to top
WWW  
IP Logged
 
sparkle
Guest


Re: Mods that I found to work!
Reply #70 - Apr 1st, 2005 at 6:00pm
Print Post  
Hello! I noticed several people got the add_smilies3_SP13  mod to function on SP1.4.  I was wondering how anyone who got this mod to work went about changing it?  I would be grateful for any help Smiley Thanks in advance!
  
Back to top
 
IP Logged
 
rasputin
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 11
Joined: Apr 23rd, 2004
Re: Mods that I found to work!
Reply #71 - Apr 3rd, 2005 at 8:39am
Print Post  
I have a question regarding the installation of latest topics 2.mod in SP 1.4.

I have a 'clean' install of YaBB sp 1.4; no mods included yet. The board is working:
http://www.ndscommunity.com/cgi-bin/yabb/YaBB.pl

I have added Latest Topics 2 to this board; uploaded the Sublist.pl and added the RecentSelf.pl from the ' Base' directory. All files are uploaded in ASCII; CMOD-ed to 644.

After that I added <!--#include virtual="../cgi-bin/yabb/YaBB.pl?action=recenttopics" -->
and
<!--#exec cgi="../cgi-bin/yabb/YaBB.pl?action=recenttopics" --> and
to the index.shtml file which can be found at:
www.ndscommunity.com

You can see the errors in the index.shtml file; in the error log of the website, I get the following errors:

[Sun Apr 03 04:24:53 2005] [error] [client 82.173.3.255] Invalid URI in request GET / HTTP/1.1
[Sun Apr 03 04:24:53 2005] [error] [client 82.173.3.255] unable to include '../cgi-bin/yabb/YaBB.pl?action=recenttopics' in parsed file /home/cust3/user1125987/html/index.shtml

[Sun Apr 03 04:24:53 2005] [error] [client 82.173.3.255] Invalid URI in request GET / HTTP/1.1
[Sun Apr 03 04:24:53 2005] [error] [client 82.173.3.255] invalid CGI ref '../cgi-bin/yabb/YaBB.pl?action=recenttopics' in /home/cust3/user1125987/html/index.shtml

Can anyone help me / what do I do wrong?
  
Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Mods that I found to work!
Reply #72 - Apr 3rd, 2005 at 12:23pm
Print Post  
The path is wrong, it's ./cgi-bin/ instead of ../cgi-bin
  

The Administrator.
Back to top
WWW  
IP Logged
 
rasputin
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 11
Joined: Apr 23rd, 2004
Re: Mods that I found to work!
Reply #73 - Apr 3rd, 2005 at 5:11pm
Print Post  
darn!

Thanx Michael, such an easy solution but indeed, it works now!

What remains is a last (final?) question:

I have the mod running (see http://www.ndscommunity.com) but the font size is rather small on when the topics appear on the index.shtml page.

How can I increase the font size of the topics published with the SSI call? (What is the code to be included in the index.shtml file or in some part of the board?)  

BTW, I also posted this question at the latest topics threat... didn't know the right place Grin

« Last Edit: Apr 3rd, 2005 at 7:35pm by rasputin »  
Back to top
 
IP Logged
 
rasputin
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 11
Joined: Apr 23rd, 2004
Installing Polls 3 at YaBB SP 1.4
Reply #74 - Apr 5th, 2005 at 8:37pm
Print Post  
Again, I have to bother someone with an installation problem.  Undecided

I've got YaBB 1.4 installed with 1 working mod: Latest Topics 2.

On installing Polls 3 on my board I get two errors; at step 20 and 25 (see below). What to do? Any help is welcome!  Smiley


=========
starting log...

script path: F:\NintendoDS\www.ndscommunity.com\Test forum LT & polls\cgi-bin\yabb\YaBB.pl
detected script: YaBB 1 Gold - SP 1.4
selected script: YaBB 1 Gold - SP 1.4
installed mods: 0


now installing: Poll Mod v3.0 for SP1.3 (Polls_3_SP13.mod)


Step 1 ... ok
Step 2 ... ok
Step 3 ... ok
Step 4 ... ok
Step 5 ... ok
Step 6 ... ok
Step 7 ... ok
Step 8 ... ok
Step 9 ... ok
Step 10 ... ok
Step 11 ... ok
Step 12 ... ok
Step 13 ... ok
Step 14 ... ok
Step 15 ... ok
Step 16 ... ok
Step 17 ... ok
Step 18 ... ok
Step 19 ... ok
Step 20 ... failed - ERR(1): Search string could not be found
Step 21 ... ok
Step 22 ... ok
Step 23 ... ok
Step 24 ... ok
Step 25 ... failed - ERR(1): Search string could not be found
Step 26 ... ok
Step 27 ... ok
Step 28 ... ok
Step 29 ... ok
Step 30 ... ok
Step 31 ... ok
Step 32 ... ok
Step 33 ... ok
Step 34 ... ok
Step 35 ... ok
Step 36 ... ok
Step 37 ... ok
Step 38 ... ok
Step 39 ... ok
Step 40 ... ok

> modifications failed! 2 errors occured. No files will be modified. Please see readme for help on the
error messages.

=========
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1 ... 3 4 [5] 6 7 
Send TopicPrint