|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
Easy has released 1.07e a looooong time ago, and I kept updating it for my version instead of using his newer versions. Then 6.1 had UBBAccel, and I got mine to work with it, while e@sy's structure makes it more difficult. Download: Text File or MultiHack File Demo: http://www.lkubb.dns2go.com Requirements: UBB(.classic)™ 6.2 or 6.3, Mod Wordlets . Good luck! 
|
|
|
|
Joined: Jul 2001
Posts: 1,111
Member
|
Member
Joined: Jul 2001
Posts: 1,111 |
|
|
|
|
Joined: Jan 2002
Posts: 63
Member
|
Member
Joined: Jan 2002
Posts: 63 |
i don't use the ubb accel function will this affect this mod at all or do i just ignore the ultimatebb.php part of the mod.
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
You don't have to ignore any part - it works with and without UBBAccel just fine.
|
|
|
|
Joined: Jan 2002
Posts: 63
Member
|
Member
Joined: Jan 2002
Posts: 63 |
another hack being added (Deatheater) April 25, 2002 01:58 AM {FontFace}" color="#FFFFFF" size="1"> (0 {count_on_click_lowercase}) just installed it and this is what came out  not the exact effect i would want heh. im assuming this is the offending part that i meesed up most likely. [code][/code]oh and i did not put in the ultimateebb.php part should i even though this function is not enabled on my board.
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
I wouldn't mind a URL 
|
|
|
|
Joined: Jun 2001
Posts: 56
Member
|
Member
Joined: Jun 2001
Posts: 56 |
Thanks LK... All of your hacks thus far work perfectly, including this one.. Thank god for the MultiHack program that makes for effortless and errorless installations of these modifications..22 hacks installed on my board thus far with no problems at all..No conflicts either..Great job.. 
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
Needs a little tweaking for 6.3 
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
Idda know, in running the mhx there were several files that needed some work. I'll look again 
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
Basically, it looks like cc did some work in cp_prune and topic_maintentance and new_topic. There's one for search looking for the file in the variables dir. 
|
|
|
|
Joined: Sep 2001
Posts: 93
Member
|
Member
Joined: Sep 2001
Posts: 93 |
e@sy had released version 3.01 I think, is this hack compatible to it ? I mean can I just hack the php file or do I have to rehack all ?
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
Nope, it's only compatible with his 1.0x version.
|
|
|
|
Joined: Apr 2001
Posts: 235
Member
|
Member
Joined: Apr 2001
Posts: 235 |
All is well. Thanks to LK for the great hack. The only problem I encountered is that the hit counter doesn't show in the private forums. All counts are zeros. I logged in the server to check. I do see the *.hit with numbers greater than zero. I think either ubb_forum.cgi or ubb_forum_summary.cgi is not directed to the correct private path where the files *.cgi are.
Please help.
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
http://none gives me an error, URL? 
|
|
|
|
Joined: Apr 2001
Posts: 235
Member
|
Member
Joined: Apr 2001
Posts: 235 |
|
|
|
|
Joined: Apr 2001
Posts: 6
Junior Member
|
Junior Member
Joined: Apr 2001
Posts: 6 |
Nice Job one Problem though this doesn't seem to work on any of my private forums!
|
|
|
|
Joined: Apr 2001
Posts: 235
Member
|
Member
Joined: Apr 2001
Posts: 235 |
### In ubb_lib.cgi, FIND
if ($this_forum[6] eq 'private') {
### REPLACE that with
if ($this_forum[6] =~ m/private/) {
|
|
|
|
Joined: Sep 2002
Posts: 35
Member
|
Member
Joined: Sep 2002
Posts: 35 |
does this hit counter only count members views?? it seems that guests are not counted
|
|
|
|
Joined: Aug 2000
Posts: 874
Moderator / Developer
|
Moderator / Developer
Joined: Aug 2000
Posts: 874 |
Small bug if used on a board with no other modifications to the ubb_get_topic.cgi routines. in ubb_get_topic.cgi code:
######### #find : # #########
# is the page available?
################### #BELOW that ADD:: # ###################
$userlastaddr = &OpenFileAsString("$vars_config{NonCGIPath}/$exact_path/$_[1].wer");
if ($userlastaddr ne $ENV{'REMOTE_ADDR'}) { $hit = &OpenFileAsString("$vars_config{NonCGIPath}/$exact_path/$_[1].hit"); $hit=$hit+1; &WriteFileAsString("$vars_config{NonCGIPath}/$exact_path/$_[1].hit", $hit); &ClearSingleForumPageCache($exact_path, $in{f}); } else { unlink("$vars_config{NonCGIPath}/$exact_path/$_[1].wer"); }
Should be moved up to, say, after this: code: [qb] # does topic exist? unless (-e "$vars_config{NonCGIPath}/$exact_path/$_[1].cgi") { &StandardHTML("$vars_wordlets_err{topic_doesnt_exist}"); } [/qb] Where it is now, if the page is still being served from cache normally (and no php accell) it's not counting all the hits.
|
|
|
|
Joined: Sep 2002
Posts: 35
Member
|
Member
Joined: Sep 2002
Posts: 35 |
Thank you soooo much, you are a GENIOUS (sp??) obviously i am not!!
|
|
|
|
Joined: Jun 2001
Posts: 120
Member
|
Member
Joined: Jun 2001
Posts: 120 |
I'm using this hack on my 6.2.1.1 and it seems to work alright, except for this issue: (first of all, yeh I know both my UBB and this hack are old, I'll upgrade one of these days when I get a good free 50 hours  ) Anyway, in my private forums that use this hack, after awhile (the specific time seems random) the recent visitors display will disappear, and will not reappear until I clear the forum page cache. This just started when I added this hack, so there must be a direct relation. Any ideas? TIA!
|
|
|
|
Joined: Jun 2001
Posts: 120
Member
|
Member
Joined: Jun 2001
Posts: 120 |
|
|
|
|
Joined: May 2001
Posts: 20
Junior Member
|
Junior Member
Joined: May 2001
Posts: 20 |
Hi, I am looking for the HIT Hack for version 6.1.0.3 ubb cgi classiv
Is this one also working with that?
|
|
|
Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.
Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
|
|
Posts: 1,157
Joined: July 2001
|
|
Forums63
Topics37,575
Posts293,931
Members13,823
|
Most Online6,139 Sep 21st, 2024
|
|
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
|
|
|
|