|
Joined: Aug 2000
Posts: 874
Moderator / Developer
|
Moderator / Developer
Joined: Aug 2000
Posts: 874 |
quote: Originally posted by LK: Jordo, try to replace '-' with '_' in ubb_lib.cgi and ubb_lib_files.cgi, and then clear your cache.
TXT/MHK files also updated.
[ 12-18-2001 05:11 AM: Message edited by: LK ]
thanks for the fix LK. 
|
|
|
|
Joined: Jun 2000
Posts: 536
Member
|
Member
Joined: Jun 2000
Posts: 536 |
quote: Originally posted by LK: Works in my board + qasic's modlog hack
Well I had to take the hack out to get some things on my board to work, maybe it wasn't your hack which conflicted with it o.o.
//i wanna scream, show the world i have an inside. i wanna bleed, let the blood flow, that keeps me alive.
|
|
|
|
Joined: Jun 2001
Posts: 62
Member
|
Member
Joined: Jun 2001
Posts: 62 |
It didn't work... ultimateb.cgi aborted due to compilaton errors... andafter I uploaded eeverythin, it stil dun work =
|
|
|
|
Joined: Jun 2001
Posts: 23
Junior Member
|
Junior Member
Joined: Jun 2001
Posts: 23 |
lk i'm getting hacking attempt errors when this hack is installed somethink to do with members files being hack when i chose a different colour scheme than default it comes up with this error.
and the board dont load
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
Eel: rehack ubb_lib.cgi, ubb_lib_files.cgi, ubb_forum_summary.cgi, ultimatebb.cgi, did I forget any file? tazman: rehack ubb_lib_files.cgi.
|
|
|
|
Joined: Aug 2000
Posts: 874
Moderator / Developer
|
Moderator / Developer
Joined: Aug 2000
Posts: 874 |
the instructions for ubb_forum.cgi, ubb_forum_summary.cgi and ultimatebb.php need to be updated with the new "_" works a charm now 
|
|
|
|
Joined: Jun 2001
Posts: 62
Member
|
Member
Joined: Jun 2001
Posts: 62 |
LK.... I did as you said... and ahh... I cleared my cache, went to post, and.. ah.. "boom?" The entire thing went ****ing crazy. Errors appeared everywhere. I tried working on it for a half a hour, and then gave up. Now I'm rehacking the whole board clean.
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
|
|
|
|
Joined: Feb 2001
Posts: 125
Member
|
Member
Joined: Feb 2001
Posts: 125 |
Many times the color changes as I browsing through the pages of my forum. Did I do something wrong?
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
dreamer, try to rehack ubb_lib_files.cgi or ubb_lib.cgi.
|
|
|
|
Joined: Feb 2001
Posts: 125
Member
|
Member
Joined: Feb 2001
Posts: 125 |
Thanks LK for your immediate answer. I checked the files you told me but I didnt find anything wrong. The problem is that the color changes only when I browse to the topic pages where it has all the topics listed (ex ultimatebb.cgi?ubb=forum;f=1) and in all my forums.
Any ideas?
Merry Christmas to all of you
|
|
|
|
Joined: Feb 2001
Posts: 125
Member
|
Member
Joined: Feb 2001
Posts: 125 |
Anyone ? 
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
TXT/MHK files updated, now is uses [55] instead of [56]... Use http://www.multihack.com/lk/upgrade.txt - rename it to upgrade.cgi and upload if you wish to upgrade. [ 01-11-2002 10:52 AM: Message edited by: LK ]
|
|
|
|
Joined: Oct 2001
Posts: 55
Member
|
Member
Joined: Oct 2001
Posts: 55 |
Does My style work in php? I edit ultimatebb.php file, and before all I got was errors, but, I tryed it again today, and it didn't have any errors, but It didn't show what templete I had picked eather. Does it need a certin version? I have 4.06 php if you need to know that.. :-
[ 01-22-2002 06:45 PM: Message edited by: HybridPWF ]
">,.-~*´¨¯¨`*·~-.¸-(_Çã§Pe®_)-,.-~*´¨¯¨`*·~-.¸
|
|
|
|
Joined: Jun 2001
Posts: 62
Member
|
Member
Joined: Jun 2001
Posts: 62 |
Ahh.. I probably missed a step, but here goes..
Everything works, except when a user updates his profile with the new template selection, the template doesnt change. It just stays at the standard template. What didn't I do?
EDIT: WORKS!
In ubb_profile.cgi, I had the calendar hack installed with this code,
$user_profile[28] = $in{private_message_notify}; $in{bday} = "no" unless ($in{bday}); $in{bdaymonth} = sprintf("%0.2d", $in{bdaymonth}); $in{bdayday} = sprintf("%0.2d", $in{bdayday}); $user_profile[32] = "$in{bdayyear}$in{bdaymonth}$in{bdayday}|$in{bday}"; &WriteMemberProfile($in{u}, @user_profile);
Then I installed the hack like this
$user_profile[28] = $in{private_message_notify}; $in{bday} = "no" unless ($in{bday}); $in{bdaymonth} = sprintf("%0.2d", $in{bdaymonth}); $in{bdayday} = sprintf("%0.2d", $in{bdayday}); $user_profile[32] = "$in{bdayyear}$in{bdaymonth}$in{bdayday}|$in{bday}"; &WriteMemberProfile($in{u}, @user_profile); $user_profile[55] = $template;
Figured out it's this
$user_profile[28] = $in{private_message_notify}; $user_profile[55] = $template; $in{bday} = "no" unless ($in{bday}); $in{bdaymonth} = sprintf("%0.2d", $in{bdaymonth}); $in{bdayday} = sprintf("%0.2d", $in{bdayday}); $user_profile[32] = "$in{bdayyear}$in{bdaymonth}$in{bdayday}|$in{bday}"; &WriteMemberProfile($in{u}, @user_profile);
[ 01-27-2002 11:40 AM: Message edited by: Eel ]
|
|
|
|
Joined: Aug 2001
Posts: 94
Member
|
Member
Joined: Aug 2001
Posts: 94 |
how do i work it to work with the calendar MOD ???
i got:
my $maxmemfields = 36; #total fields permitted in member file after birthday modification
and you want me to put:
my $maxmemfields = 55; #total fields permitted in member file after template modification
what do i have to put guys ??? ???
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
|
|
|
|
Joined: Aug 2001
Posts: 94
Member
|
Member
Joined: Aug 2001
Posts: 94 |
|
|
|
|
Joined: May 2001
Posts: 197
Member
|
Member
Joined: May 2001
Posts: 197 |
I'm using 6.1.0 do you think this will work ????
|
|
|
|
Joined: Nov 2001
Posts: 13
Junior Member
|
Junior Member
Joined: Nov 2001
Posts: 13 |
Premature end of script headers: /cgi-bin/ultimatebb.cgi Ain't working... Why not, i've done everything as the hack says
|
|
|
|
Joined: Jun 2001
Posts: 120
Member
|
Member
Joined: Jun 2001
Posts: 120 |
What would I need to do to this hack in order to make the user's template selection only effect a certain forum.
For example, I want all but 1 of my forums to have the same template, and the user cannot change that. However, I want the user to be able to switch between 2 different templates for this 1 forum.
What would I have to do to be able to do this?
Thanks a lot!
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
Open ultimatebb.cgi. Find: [/code]Replace with:[code] It's untested, but.. you know.. it should work And it will also work if users use for example ?ubb=my_profile;f=X, but most users don't do it 
|
|
|
|
Joined: Jun 2001
Posts: 120
Member
|
Member
Joined: Jun 2001
Posts: 120 |
Alright, thanks man... I'll try it out.
Also, I think I saw a couple posts in this topic about using this hack on 6.05, but I don't think I saw an answer.
What needs to be done in order to get it to work with 6.05 (if it wouldn't normally)?
Thanks again!
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
The answer is simple: it's almost impossible.
|
|
|
|
Joined: Jun 2001
Posts: 120
Member
|
Member
Joined: Jun 2001
Posts: 120 |
quote: Originally posted by LK: The answer is simple: it's almost impossible.
Haha, that's easy enough to understand... I plan to upgrade my board to 6.2.x soon anyway. On that point, is the mod compatible with 6.2.x?
|
|
|
|
Joined: Apr 2002
Posts: 13
Junior Member
|
Junior Member
Joined: Apr 2002
Posts: 13 |
this is ROX like sweet it worked good..
|
|
|
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: 417
Joined: November 2001
|
|
Forums63
Topics37,575
Posts293,930
Members13,823
|
Most Online6,139 Sep 21st, 2024
|
|
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
|
|
|
|