Previous Thread
Next Thread
Print Thread
Rate Thread
Page 3 of 3 1 2 3
Joined: Apr 2001
Posts: 103
Member
Member
Offline
Joined: Apr 2001
Posts: 103
I've got a problem with QuickReply box,

I installed it but even that I open topic pages, I see that the box doesn't show up and for more the browser says that This page is done but with errors.
I checked and it seems it's because a javascript error, I looked into the code that I hacked, but everything was copy pasted correctly, but still I rehacked the old files and uploaded them, the same problem. I don't get it... So I uploaded back the old files, until I get an answer of what can be the problem.

P.S. I did the hack with quick reply with quote and without it. And I still had the problem. It's not of my browser, because another admin of the board told me he saw that error and quickreply box not displaying.


Don't worry about people stealing your ideas. If your ideas are any good, you'll have to ram them down people's throats.
Sponsored Links
Joined: Nov 2002
Posts: 30
Junior Member
Junior Member
Offline
Joined: Nov 2002
Posts: 30
hey guys,

this should be a simple question..

So far so good quick reply is working great, but maybe anybody here knows how to change the space between the bar and the box where you can type in your message? I think it is something in the public_topic_page.pl.. but dunno what smile

here is an image of what I mean!

[Linked Image]

as you can see the space here on UBBdev is much bigger smile

THNX in advance

Joined: Mar 2001
Posts: 65
Member
Member
Offline
Joined: Mar 2001
Posts: 65
@EftheM - well, one pixel difference is not that much, isnt it ;)your got 5, ubbdev has 6...

Joined: Feb 2000
Posts: 4,625
Member
Member
Offline
Joined: Feb 2000
Posts: 4,625
Which can be changed by modifying the code. wink
It's the long document.write code that you need to change. You need to decode the code, add a bunch of spaces, change the code then make it one line again.

Joined: Mar 2001
Posts: 65
Member
Member
Offline
Joined: Mar 2001
Posts: 65
@Saxeus - it really sounds like a mistake in hacking. Maybe a wrong line-feed or you did something above instead of below. Also another hack which was installed before could cause this.

Sponsored Links
Joined: Feb 2000
Posts: 4,625
Member
Member
Offline
Joined: Feb 2000
Posts: 4,625
Quote
quote:
Originally posted by Saxeus:
I've got a problem with QuickReply box,

I installed it but even that I open topic pages, I see that the box doesn't show up and for more the browser says that This page is done but with errors.
I checked and it seems it's because a javascript error, I looked into the code that I hacked, but everything was copy pasted correctly, but still I rehacked the old files and uploaded them, the same problem. I don't get it... So I uploaded back the old files, until I get an answer of what can be the problem.

P.S. I did the hack with quick reply with quote and without it. And I still had the problem. It's not of my browser, because another admin of the board told me he saw that error and quickreply box not displaying.
Make sure wordwraping is off and that everything was copied properly. I have this version running without issues.

Joined: Nov 2002
Posts: 30
Junior Member
Junior Member
Offline
Joined: Nov 2002
Posts: 30
Quote
quote:
Originally posted by Greg Hard:
You need to decode the code, add a bunch of spaces, change the code then make it one line again.
hehehe decode code? confused I'm not that good tipsy

I think you mean this line:

document.write('
$TBB_js');

how do I ??

thnx dude
$vars_wordlets_mods{QuickReply}
$vars_wordlets_mods{QRMessage}

$is_html
$is_ubb

$vars_wordlets_mods{ShowSig}
$vars_wordlets_mods{QRSmilies}


$preview_button
Joined: Dec 2001
Posts: 26
Junior Member
Junior Member
Offline
Joined: Dec 2001
Posts: 26
hi and first off thanks for this hack... I love it.. Have a question though.... do you think it is possible to change the background in the text area of the quick reply to something other than white or even a picture? if so can someone help me with this please?

Thanks in advance

Joined: Oct 2002
Posts: 394
Enthusiast
Enthusiast
Offline
Joined: Oct 2002
Posts: 394
I installed everything twice, careful...I still get the same error:
Code
 CGIPath/ubb_lib_posting.cgi: syntax error at CGIPath/ubb_lib_posting.cgi line 788, near "$linkname)" 
Can anybody tell me what I shoud do?

Thanks in advance
Felix

Joined: Apr 2002
Posts: 57
Member
Member
Offline
Joined: Apr 2002
Posts: 57
Thank you for continuously updating these threads. I installed the hack, had an error and found my error!

You guys are awesome! I hope someday to learn enough in order to contrinute a decent hack!

Sponsored Links
Joined: Nov 2002
Posts: 2
Junior Member
Junior Member
Offline
Joined: Nov 2002
Posts: 2
I've successfully (after lots of cleanup :-)), gotten this running, but the preview button doesn't seem to work. Looking at the HTML code, the stuff is there, but the button does nothing.

Any ideas what I've managed to screw up?

Joined: Nov 2002
Posts: 2
Junior Member
Junior Member
Offline
Joined: Nov 2002
Posts: 2
In reply to the above, I found my problem. I had mis-applied some of the public_topic_page.pl changes. I started from my backup, and re-did it, and this started working now, as well as fixing some other breakage I had introduced.

Thanks.

Joined: Sep 2002
Posts: 15
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 15
Works great! My pharmers love it! 2x the pharming! smile

http://www.garagelan.com

Joined: Sep 2002
Posts: 35
Member
Member
Offline
Joined: Sep 2002
Posts: 35
would this hack work on 6.2 ?? i could not find a 6.2 link for this hack!

Joined: Sep 2001
Posts: 672
Member
Member
Offline
Joined: Sep 2001
Posts: 672
i cant get this hack to work. Everytime i try, I get a hack attempt error, or corrupt member file or whatever that error is called ??

Joined: Jan 2003
Posts: 3,456
Likes: 2
Master Hacker
Master Hacker
Offline
Joined: Jan 2003
Posts: 3,456
Likes: 2
the only reason you'd get that error is if you have more member fields than listed in ubb_lib_files.cgi.

FTP into your server, go to the members folder, download 00000001.cgi (number doesn't really matter)

Open it in a text editor, and see how many lines there are (should be minimum 40, most likely less than 70)

Take that number, add 3 for safe keeping (cause some fields can overflow to the next line).

If that is less than 62, do this...

Code
# Open ubb_lib_files

# Find 2 times:

my $maxmemfields = 39; #total fields permitted in member file

# Replace with 2 times:

my $maxmemfields = 62; #total fields permitted in member file w/quickreply
If it's more than 62, put that number in place for the 62 in the step I showed you

Joined: Sep 2001
Posts: 672
Member
Member
Offline
Joined: Sep 2001
Posts: 672
i got it to work, thanx! laugh

Joined: Sep 2001
Posts: 672
Member
Member
Offline
Joined: Sep 2001
Posts: 672
I have a problem now! Noone can register!


CGIPath/ubb_registration.cgi: syntax error at CGIPath/ubb_registration.cgi line 704, near "$quickreply;"


This is whats at that line!

$thismemarray[61] = $quickreply;

Joined: Sep 2001
Posts: 672
Member
Member
Offline
Joined: Sep 2001
Posts: 672
sorry my bad, i fixed it. I messed up the code from the beginning!

Joined: Sep 2002
Posts: 15
Junior Member
Junior Member
Offline
Joined: Sep 2002
Posts: 15
I have the older version of quickreply and only hate one thing about it, no graemlin panel. Is the graemlin panel included with this release ?

Joined: May 2001
Posts: 55
Member
Member
Offline
Joined: May 2001
Posts: 55
quickquote didnt work for me, what did i do wrong
version 4.0 ubb 6.3.1.1

Joined: Dec 2002
Posts: 7
Junior Member
Junior Member
Offline
Joined: Dec 2002
Posts: 7
I'm wondering how I would go about making the box not show up for certain members based on a field in their profile, provided the forum they're viewing requires registration. I'm guessing a simple if statement would do the trick...but where should it go and what all should it encompass?

Page 3 of 3 1 2 3

Link Copied to Clipboard
Donate Today!
Donate via PayPal

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.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
Gizmo
Gizmo
Portland, OR, USA
Posts: 5,833
Joined: January 2000
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services