php forum
php mysql forum
php mysql smarty
 
Page 1 of 2 1 2 >
Topic Options
#149418 - 02/17/02 04:34 PM [6.1x] Ubb code button animated
wwb95 Offline
Member

Registered: 11/14/01
Posts: 154
This is a UBB code button interface with a load of button to use
To setup the program you have to choice
1- auto-setup
I. Edit the first line of advancedubbcode.cgi and replace it with the first line found in cp.cgi. FTP it to your cgi path and run it from your browser such as http://yoursite/cgi-bin/advancedubbcode.cgi and it will install its self and you can un install it by running the same program again
II. Ftp all the image to your ubb{non cgi} path


2- manual setup
I. read advancedubbcode.text and replace the code
II. Ftp all the image to your ubb{non cgi} path


The code will look like this


.
.
.
.
.
A sample of the result code


Test the code in this site

.
.
.
.
.
.

Download 6.1 thanks TheGenie

.
.

Top
#149419 - 02/17/02 04:59 PM Re: [6.1x] Ubb code button animated
Greg Hard Offline
Member

Registered: 02/21/00
Posts: 5533
Loc: My Room
..ok... any comments charles..?

Top
#149420 - 02/17/02 06:13 PM Re: [6.1x] Ubb code button animated
WhiteBlade Offline
Member

Registered: 05/26/01
Posts: 178
Loc: Quebec, Canada
If you install for exemple the hide hack it kind of hard to introduce it in there. And like the other say make your board easyly hackable
_________________________
My MSN : whiteblade6@hotmail.com

I currently have [img]http://lkubb.web-performance.net/cgi-bin/ud.pl?u=WhiteBlade;s=1[/img] and I returned
[img]http://lkubb.web-performance.net/cgi-bin/ud.pl?s=2;u=WhiteBlade[/img] results !

Top
#149421 - 02/17/02 06:15 PM Re: [6.1x] Ubb code button animated
eXtremeTim Offline
Member

Registered: 10/13/01
Posts: 544
very bad hack
Do not undo the ( in html error that is very bad makes your board hackable easily.
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=extremetim&s=1[/img]

Top
#149422 - 02/17/02 06:16 PM Re: [6.1x] Ubb code button animated
RandyM Offline
Spotlight Winner

Registered: 06/28/01
Posts: 2642
Loc: Southern California | Guitar o...
I went to his test board and got mostly errors. I've learned not to use his hacks.
_________________________
3 time Spotlight winner.
Believe The Lie

Top
#149423 - 02/17/02 07:22 PM Re: [6.1x] Ubb code button animated
wwb95 Offline
Member

Registered: 11/14/01
Posts: 154
Greg Hard
I do not think that any body could say this has any problem

WhiteBlade
What is the hide hack ??????????

eXtremeTim
What are you talking about man

XPerT
I had to do something in my bord go now and tell me what problem did you find

For all
I thought this is a beta hack board so treat me as a developer

Top
#149424 - 02/17/02 08:29 PM Re: [6.1x] Ubb code button animated
Charles Capps Offline
Admin Emeritus
Resident Code Hacker

Registered: 01/09/00
Posts: 5438
Loc: Lynnwood, WA
This hack intentionally disables UBB security measures. This hack uses known bad methods to access UBB data files (i.e. ignores all the work that went into the 6.1 release to prevent the issues that this hack can produce.)

Do not install it.

Do not use it.

Hack author:

You're using raw I/O routines in your addon file. This *WILL* cause issues. Do not use raw I/O. Read this topic please: http://www.ubbdev.com/ubbcgi/ultimatebb.cgi?ubb=get_topic;f=29;t=000123

The UBB Code routines and the Instant UBB Code JS has changed signifigantly. You will want to work off of the current release, 6.2, when remaking this hack.

Did you not read the comment block heading sub check_html? Those routines and checks are there for a reason. Your code causes the primary check (no parens inside an HTML tag) to be essentially ineffective. Either drop the code that requires placing parens inside HTML or enhance the check so it makes exclusive, careful exceptions to the rule.

Oh, and don't ask users to change their own Wordlets, nor to alter data inside the Wordlet file. Instead, use the vars_wordlets_mod modification. smile
_________________________
UBB.classic: Love it or hate it, it was mine.

Top
#149425 - 02/18/02 06:32 AM Re: [6.1x] Ubb code button animated
wwb95 Offline
Member

Registered: 11/14/01
Posts: 154
Charles Capps

Code:
[/code]This is a very important check statement it will check if there is any Parenthesis inside the html code and rise an error if there is one. Disabling this statement will cause a security risk. 

What I have done is the following:
[code]
What will this do is to save all instant in the html code that have a Parenthesis inside it in an array called s1. then it will check all the result array for what inside the Parenthesis. The "if" statement only accept the kind of code I use in the ubb code I present. Any other code it still will case an error and will not accept the post.
The other check statement is to chick if there is more then one open present inside the html code to add more security to ubb board
</font><blockquote><font size="1" face="Verdana, Helvetica, sans-serif">quote:</font><hr /><font size="2" face="Verdana, Helvetica, sans-serif">
Oh, and don't ask users to change their own Wordlets, nor to alter data inside the
Wordlet file. Instead, use the vars_wordlets_mod modification.
</font><hr /></blockquote><font size="2" face="Verdana, Helvetica, sans-serif">If I am using a new hack that dose not has any thing to do with a ubb code I will follow this. But since you want the admin to alter the wordlet in the same place that they usually find it i had to do this.

Thanks CC for your comment
.
.
.
.
.
sory i had to change the code

Top
#149426 - 02/18/02 08:39 AM Re: [6.1x] Ubb code button animated
eXtremeTim Offline
Member

Registered: 10/13/01
Posts: 544
Well i withdraw my earlier comments. I also apologise. I might check some of this stuff out latter on today now. smile
_________________________
United Devices Points: [img]http://www.ubbdev.com/ud/?u=extremetim&s=1[/img]

Top
#149427 - 02/18/02 08:49 AM Re: [6.1x] Ubb code button animated
scats Offline
scattermidget

Registered: 11/10/00
Posts: 616
Loc: Texas via France| Bonjour, y'a...
[sorry. made a statement that was unbecoming. smile ]

Top
#149428 - 02/18/02 09:11 AM Re: [6.1x] Ubb code button animated
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
I actually agree with scats. It's a good thing that you released a hack you made, but you don't have to reply and protect your hack, and after you released your hack you have to either accept criticism or not visit this thread.
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#149429 - 02/18/02 09:41 AM Re: [6.1x] Ubb code button animated
wwb95 Offline
Member

Registered: 11/14/01
Posts: 154
eXtremeTim
Thanks man. I rely respect you for this comment

Scats
Thank you very much for what you have written before editing your post.

LK
Thanks LK for your replay

Top
#149430 - 02/18/02 12:44 PM Re: [6.1x] Ubb code button animated
Charles Capps Offline
Admin Emeritus
Resident Code Hacker

Registered: 01/09/00
Posts: 5438
Loc: Lynnwood, WA
Last night I did NOT properly read the modified paren detect code. It looks OK - I withdraw my warning. (The warning about the I/O routines stands - you REALLY should correct those, even if the file is used only once.)

This misreading does not deserve the verbal whipping you handed out.

I don't care about your qualifications, sir. Insulting the very developer responsible for the product you're using and the code you're modifying is never a good idea.
_________________________
UBB.classic: Love it or hate it, it was mine.

Top
#149431 - 02/18/02 03:46 PM Re: [6.1x] Ubb code button animated
wwb95 Offline
Member

Registered: 11/14/01
Posts: 154
Charles Capps
I had to say what I have said to show every body that this hack is safe to be used.

I am glad that you have seen this hack and slightly approve it
For I/O comment if I have chance to change it I will.

Now I have to say I am sorry {and I am glad to say it} for what was written before I edit my post. I will be more than thankful if you edit your first post that has the warning

Top
#149432 - 02/18/02 04:45 PM Re: [6.1x] Ubb code button animated
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
Lots of [edited by: 's in this thread smile

It looks good wwb95, thanks for sharing. Please try to understand we only want the best for those newbies who will install anything - and they love anything that adds ubbcodes laugh If possible, please work on the I/O smile
_________________________
- Allen wavey
- What Drives You?

Top
#149433 - 02/18/02 06:04 PM Re: [6.1x] Ubb code button animated
Bookie Offline
Member / Blamoholic

Registered: 01/23/01
Posts: 1296
Loc: Alberta, Canada
Looks like quite a few good features on there, but is there a way to disable some of them?

Top
#149434 - 02/18/02 06:37 PM Re: [6.1x] Ubb code button animated
wwb95 Offline
Member

Registered: 11/14/01
Posts: 154
Charles Capps
I think now I have done the I/O thing you can check it
If you are using a proxy the old one wil come to you tray this
http://66.113.218.51/ubbcode2.zip

AllenAyres
Will it is a very good point and also you are doing a good job. I think I have done the I/O thing. Since it is my first time to use it I will appreciate it if you look at the code
Thank you for the replay

Top
#149435 - 02/18/02 06:44 PM Re: [6.1x] Ubb code button animated
wwb95 Offline
Member

Registered: 11/14/01
Posts: 154
Bookie

I thought of having an advance and a stander version of the code but I did not know what to chose. If you kindly suggest what you think is a code to delete from the code in order to make the stander version
Thank for the replay

Top
#149436 - 02/20/02 03:05 PM Re: [6.1x] Ubb code button animated
wwb95 Offline
Member

Registered: 11/14/01
Posts: 154
(pleas delete this)

Top
#149437 - 03/18/02 12:18 PM Re: [6.1x] Ubb code button animated
UBBFreak Offline
Junior Member

Registered: 02/27/02
Posts: 3
Loc: Somewhere in Space
Sorry for this stupid question, but can I download now the "Download 6.1 thanks TheGenie"??? Is everything now safe and clear?
Or should I download this one: "http://66.113.218.51/ubbcode2.zip
" (YES, I know! I'm a BIG newbie frown )
I read your posts but I'm not sure if it's safe now....
Again I apologize for my stupid question...
Thank you all! smile

Top
Page 1 of 2 1 2 >


Who's Online
1 registered (Pilgrim), 32 Guests and 6 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
ubb.social
by Placebo
Today at 04:25 AM
Displaying a gif for a paying member
by Iann128
01/06/09 07:04 AM
Restore The "New Topic Is Highlighted" Feature
by hikelite
01/02/09 07:41 PM
Web Hosting
by Pilgrim
01/02/09 04:13 PM
Finishing touches on a UBB migration
by AllenAyres
01/02/09 03:04 PM
Sidebar options?
by Pilgrim
12/26/08 03:40 PM
Legacy Style
by sirdude
12/24/08 07:18 PM
New Mods
Displaying a gif for a paying member
by Iann128
12/29/08 11:44 AM
Legacy Style
by Micky
12/21/08 01:36 PM
ubb.social
by
08/03/06 10:38 AM
Newest Members
bluedthunder, blaqskreen, RAICHU, sebak, BaronDriver
13371 Registered Users
Top Posters
AllenAyres 25461
JoshPet 11330
Rick 8372
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438

 

 

 
fusionbb message board php hacks