|
|
| BigC |
|
Guest User |
Justin,
Is there a wat to disable the bump option in Blah? Everytime some adds something to your post it gets bump back to the top of the board.
I would like it to stay where it is by date of post. |
|
Logged |
|
|
|
|
Justin |
|
|
Posts: 15,255
Gender:  Male
Posts Per Day: 3.84
Reputation: 93.31%
Reputation Score: +307 / -22
Time Online: 39 days 5 hours 48 minutes
Location: Tallassee, AL
Age: 26
|
lol ... there is ways to get rid of it ... but it requires a little modifying.  |
| My Websites: Revolution Reality (My Blog)  | Portfolio"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV |
|
|
|
|
|
| BigC |
| November 5, 2003, 11:31am |
|
Guest User |
Is it something easy? Can you point me in the right direction? Or can I ask you to do it for me? |
|
Logged |
|
|
|
|
Justin |
|
|
Posts: 15,255
Gender:  Male
Posts Per Day: 3.84
Reputation: 93.31%
Reputation Score: +307 / -22
Time Online: 39 days 5 hours 48 minutes
Location: Tallassee, AL
Age: 26
|
It's in Post.pl under a Reply sub probably. It's the thing that opens the board index and writes to it.  |
| My Websites: Revolution Reality (My Blog)  | Portfolio"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV |
|
|
|
|
|
| BigC |
|
Guest User |
In here???
sub ReplyThread { $msid = $URL{'m'};
if($uallow && $FORM{'ulfile'} ne '') { CoreLoad('Attach'); &Upload; }
fopen(FILE,"+>>$messages/$msid.txt"); print FILE "$tuser|$message|$ENV{'REMOTE_ADDR'}|$temail|$mtime|$smiley|||$atturl\n"; fclose(FILE);
fopen(FILE,"$messages/$msid.mail"); @curlist = <FILE>; fclose(FILE); chomp @curlist; if($username ne 'Guest') { if($FORM{'xout'}) { $FORM{'notify'} = $notify; } fopen(FILE,">$messages/$msid.mail"); foreach(@curlist) { if(($_ eq $username && $FORM{'notify'}) || $_ ne $username) { print FILE "$_\n"; } if($_ eq $username && $FORM{'notify'}) { $activated = 1; } } if($FORM{'notify'} && !$activated) { print FILE "$username\n"; } fclose(FILE); } |
|
Logged |
|
|
|
|
Justin |
|
|
Posts: 15,255
Gender:  Male
Posts Per Day: 3.84
Reputation: 93.31%
Reputation Score: +307 / -22
Time Online: 39 days 5 hours 48 minutes
Location: Tallassee, AL
Age: 26
|
Hrmmm ... more too it than I though.  - Justin |
| My Websites: Revolution Reality (My Blog)  | Portfolio"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV |
|
|
|
|
|
| BigC |
|
Guest User |
So what more needs to be done? I don't know what I am doing at all when it comes to this. I tried looking it up on the net but I could not find what I need to do. |
|
Logged |
|
|
|
|
| BigC |
| November 6, 2003, 12:49pm |
|
Guest User |
Justin,
I looked all though the post and attach.pl files and i can't find what needs to be changed. Can you help me with this please? |
|
Logged |
|
|
|
|
| BigC |
|
Guest User |
Jus, I can't get this to work to save my life. Help please man help  |
|
Logged |
|
|
|
|
dandan |
| November 10, 2003, 2:44am |
|
|
Posts: 27
Posts Per Day: 0.01
|
|
|
|
|
|
| BigC |
| November 12, 2003, 3:11pm |
|
Guest User |
Justin,
How much would you charge to get this done? |
|
Logged |
|
|
|
|
Justin |
| November 12, 2003, 4:12pm |
|
|
Posts: 15,255
Gender:  Male
Posts Per Day: 3.84
Reputation: 93.31%
Reputation Score: +307 / -22
Time Online: 39 days 5 hours 48 minutes
Location: Tallassee, AL
Age: 26
|
Nothing. In Post.pl Look for:
|
Code
fopen(FILE,"+<$boards/$URL{'b'}.msg",1) || &error("$posttxt[58]: $URL{'b'}.msg",1); @fdump = <FILE>; foreach(@fdump) { if($_ =~ m/\A$msid\|/) { $receive = $_; last; } } truncate(FILE,0); seek(FILE,0,0); chomp $receive; ($miduse,$subject,$tempposted,$trdate,$replies,$poll,$type,$micon) = split(/\|/,$receive);
$start = $replies+1;
print FILE "$msid|$subject|$tempposted|$trdate|$start|$poll|$type|$micon|$mtime|$tuser\n";
foreach(@fdump) { if($_ =~ m/\A$msid\|/) { next; } print FILE $_; } fclose(FILE); |
|
Replace With:
|
Code
fopen(FILE,"+<$boards/$URL{'b'}.msg",1) || &error("$posttxt[58]: $URL{'b'}.msg",1); @fdump = <FILE>; foreach(@fdump) { if($_ =~ m/\A$msid\|/) { $receive = $_; last; } } truncate(FILE,0); seek(FILE,0,0); chomp $receive; ($miduse,$subject,$tempposted,$trdate,$replies,$poll,$type,$micon) = split(/\|/,$receive);
$start = $replies+1;
foreach(@fdump) { if($_ =~ m/\A$msid\|/) { print FILE "$msid|$subject|$tempposted|$trdate|$start|$poll|$type|$micon|$mtime|$tuser\n"; } else { print FILE $_; } } fclose(FILE); |
|
I HOPE that works. :) - Justin |
| My Websites: Revolution Reality (My Blog)  | Portfolio"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV |
|
|
|
|
|
| BigC |
| November 12, 2003, 8:19pm |
|
Guest User |
|
Logged |
|
|
|
|
| BigC |
| November 14, 2003, 10:12am |
|
Guest User |
Justin,
Is there any more adjustments that you can think of for this? |
|
Logged |
|
|
|
|
Justin |
| November 14, 2003, 4:09pm |
|
|
Posts: 15,255
Gender:  Male
Posts Per Day: 3.84
Reputation: 93.31%
Reputation Score: +307 / -22
Time Online: 39 days 5 hours 48 minutes
Location: Tallassee, AL
Age: 26
|
I thought of one, and tried it ... but it was more trouble than anything. I've been doing other projects lately and been leaving E-Blah alone more.  Like I just told someone else, I don't have any further plans as to maintaining E-Blah for Perl any longer. The version currently out is probably one of the last ones to be released. I've moved on to try PHP and, now, a little MySQL (which I'm kinda enjoying doing, personaly  ). I've been doing a lot of stuff lately (gaming is one of them,  ) ... so that's where my times going. lol - Justin |
| My Websites: Revolution Reality (My Blog)  | Portfolio"But you, O Lord, are a compassionate and gracious God, slow to anger, abounding in love and faithfulness." — Psalm 86:15 NIV |
|
|
|
|
|
|