php forum
php mysql forum
php mysql smarty
 
Page 4 of 10 < 1 2 3 4 5 6 ... 9 10 >
Topic Options
#203011 - 06/28/04 01:06 AM Re: [6.7] [beta] UBB.Uploader
Gizmo Administrator Online   shocked
Wizard

Registered: 01/10/00
Posts: 5123
Loc: Portland, OR, USA

   Re: [6.7] [beta] UBB.Uploader to Del.icio.us Add to del.icio.us
  Digg Re: [6.7] [beta] UBB.Uploader Digg it
wink
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#203012 - 07/06/04 03:18 AM Re: [6.7] [beta] UBB.Uploader
Paul@xbox365.com Offline
Member

Registered: 03/19/01
Posts: 67
Whats happened to the version without the referer check? Its not available for download anymore.

Top
#203013 - 07/06/04 03:20 AM Re: [6.7] [beta] UBB.Uploader
Paul@xbox365.com Offline
Member

Registered: 03/19/01
Posts: 67
Quote:
Originally posted by Ian Spence:

Looking at the code I believe Tim is right.

Tim, try removing
Code:
			next if($_ eq 'megamoderators' && !&FileExists("$vars_config{VariablesPath}/vars_megamods.cgi"));
and then make sure to fill in the new fields


Any more news on this?

I have the same problem and tried this soloution but it left a blank line where the megamoderators would have been, if i remove the megamoderators bit from the above qw line the problem returns.

Thanks

Top
#203014 - 07/15/04 05:36 PM Re: [6.7] [beta] UBB.Uploader
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Brett, some of my members were complaining about not being able to upload, and I checked and found the problem.

It's "Member", not "Senior Member" for the status
_________________________
Code monkey like Fritos

Top
#203015 - 07/16/04 04:46 AM Re: [6.7] [beta] UBB.Uploader
Brett Offline
Moderator

Registered: 05/04/01
Posts: 992
Loc: Twinsburg, Ohio
Zip updated with status fix.

Link to uploader w/o refer check fixed.

Top
#203016 - 07/18/04 01:26 PM Re: [6.7] [beta] UBB.Uploader
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Brett, in cp2_editprofile.pl, I think it'd be better if it went like this

Code:
				{
					name => $vars_wordlets_cp2{'upload-_-profile-reg'},
					value => 'reg',
					selected => ($profile[70] =~ m/reg/ &#0124;&#0124; $profile[70] eq "") ? 1 : 0,
				},
				{
					name => $vars_wordlets_cp2{'upload-_-profile-no'},
					value => 'no',
					selected => ($profile[70] !~ m/^(all|reg)$/ && ($profile[70]))? 1 : 0,
				},
that way it'll default to use user group, instead of not allowing the user to upload
_________________________
Code monkey like Fritos

Top
#203017 - 07/20/04 08:05 PM Re: [6.7] [beta] UBB.Uploader
GATOR420 Offline
Member

Registered: 01/31/03
Posts: 118
When I originally installed this hack (before the latest fixes) I had no problems uploading pictures until now after I've applied the fixes. Anyone else experience this problem?

All of the upload functions work except when you go to view the picture that was uploaded (by clicking the link in upload manager). The picture is displayed all garbled and completely unrecognizable. However, when I copy that same picture directly to that users upload directory replacing the uploaded files they display perfect clicking on the link in upload manager. Something happens to the file when it gets uploaded to the server. I did not have this problem before. Any ideas on what I could fix here? Help would be greatly appreciated. Thanks in advance...
_________________________
-GATOR

"Pain is temporary, Pride is forever"

Top
#203018 - 07/23/04 06:40 AM Re: [6.7] [beta] UBB.Uploader
GATOR420 Offline
Member

Registered: 01/31/03
Posts: 118
Brett? Ian? Anyone? If anyone can offer some suggestions on how to fix this problem, I would be most appreciative. This is a critical funtion of this hack that is not working. frown
_________________________
-GATOR

"Pain is temporary, Pride is forever"

Top
#203019 - 07/23/04 09:36 AM Re: [6.7] [beta] UBB.Uploader
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
delete
Code:
				vars_misc::upload_megamoderators
				vars_misc::upload_avatar_megamoderators
				vars_misc::upload_limit_megamoderators
				vars_misc::upload_filelimit_megamoderators
delete

Code:
		q!upload_megamoderators! => { type => "checkbox", private => 1, req => 0, },
		q!upload_avatar_megamoderators! => { type => "checkbox", private => 1, req => 0, },
		q!upload_limit_megamoderators! => { type => "text", private => 1, req => -1, },
		q!upload_filelimit_megamoderators! => { type => "text", private => 1, req => -1, },
change

Code:
		foreach(qw(administrators megamoderators moderators senior_members junior_members)) {
to

Code:
		foreach(qw(administrators moderators senior_members junior_members)) {
_________________________
Code monkey like Fritos

Top
#203020 - 07/23/04 09:09 PM Re: [6.7] [beta] UBB.Uploader
GATOR420 Offline
Member

Registered: 01/31/03
Posts: 118
Ian, I certainly appreciate your response...However I did all that but that didn't fix the picture corruption problem. When pictures are uploaded via the upload file form they come up like this:

http://www.reactek.com:911/images/bad.jpg

The original of course does not look like that.

Help? smile
_________________________
-GATOR

"Pain is temporary, Pride is forever"

Top
#203021 - 07/23/04 09:13 PM Re: [6.7] [beta] UBB.Uploader
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
I've got no clue on that kinda stuff, I was referring to paul's problem
_________________________
Code monkey like Fritos

Top
#203022 - 07/23/04 09:37 PM Re: [6.7] [beta] UBB.Uploader
GATOR420 Offline
Member

Registered: 01/31/03
Posts: 118
Oooh.. Then did I just mess something up? smile

I reverted back to old copy just in case...
_________________________
-GATOR

"Pain is temporary, Pride is forever"

Top
#203023 - 07/26/04 10:05 PM Re: [6.7] [beta] UBB.Uploader
GATOR420 Offline
Member

Registered: 01/31/03
Posts: 118
Is Brett still alive? Hello Brett?
_________________________
-GATOR

"Pain is temporary, Pride is forever"

Top
#203024 - 07/26/04 10:59 PM Re: [6.7] [beta] UBB.Uploader
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
sarcasm will only make us ignore you.

After running a test, it is messing up the printing of the file, somehow adding more to the file that is really there.

I uploaded an image via the upload manager, and it showed up as 813bytes

I uploaded that same image via ftp and it was 811bytes

Could this have anything to do with him running a Windows server?
_________________________
Code monkey like Fritos

Top
#203025 - 07/27/04 05:21 PM Re: [6.7] [beta] UBB.Uploader
GATOR420 Offline
Member

Registered: 01/31/03
Posts: 118
If you mistook that as sarcasm believe me, it's not. It's a cry for help... I haven't seen Brett post in several days so I was getting a bit concerned. Just hope he's in good health. smile

Just some other info though this was working perfectly until I updated it with the fixes for the same problem you had Ian. My members could also not upload files. Once I applied the fixes I ended up with this problem. I'm surprised you don't have this problem as well.

Appreciation as always...
_________________________
-GATOR

"Pain is temporary, Pride is forever"

Top
#203026 - 07/27/04 09:09 PM Re: [6.7] [beta] UBB.Uploader
Gizmo Administrator Online   shocked
Wizard

Registered: 01/10/00
Posts: 5123
Loc: Portland, OR, USA
Brett has been swamped lately; I haven't even talked to him lately wink
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design Owner

Top
#203027 - 07/28/04 04:07 PM Re: [6.7] [beta] UBB.Uploader
Webberver1 Offline
Junior Member

Registered: 07/28/04
Posts: 18
Hi everyone,

I am installing this kewl Mod except that I don't have one of the files that needs to be edited:

cp2_forums2.cgi

I am running version: 6.7.1 (rv1.210.2.9).

Where can I get a copy of this file?

Please advise and thanks in advance,
Robin

Top
#203028 - 07/28/04 04:14 PM Re: [6.7] [beta] UBB.Uploader
Webberver1 Offline
Junior Member

Registered: 07/28/04
Posts: 18
OOps I just seen that this mod was not for the 6.7 version. Sorry for the post.

Will there be a mod for 6.7?

Top
#203029 - 07/28/04 04:34 PM Re: [6.7] [beta] UBB.Uploader
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
this mod is for 6.7, cp2_forums.cgi is the file, must have been a typo
_________________________
Code monkey like Fritos

Top
#203030 - 07/28/04 05:28 PM Re: [6.7] [beta] UBB.Uploader
Webberver1 Offline
Junior Member

Registered: 07/28/04
Posts: 18
Sorry to bother you again but in the cp2_membermanage.cgi file I do not have this line:
# find #
########

$profile->[32] = join("|", @bdi);

I search for all the $profile and still couldn't match up this line. Any ideas?

Top
Page 4 of 10 < 1 2 3 4 5 6 ... 9 10 >


Moderator:  Charles, Gizmo 
Who's Online
2 Registered (Gizmo, blaaskaak), 29 Guests and 3 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
Team UBBDev Rides Again!
by AllenAyres
Yesterday at 01:36 PM
Blogs, love em or hate em?
by AllenAyres
10/07/08 02:05 PM
What do you use to edit the files
by Ian_W
10/05/08 03:33 PM
BeyondCompare v3.00
by Ian_W
10/05/08 03:32 PM
Glossy Black Theme with Image Reflection
by Gizmo
10/05/08 02:17 PM
ShareThis
by Gizmo
09/28/08 05:06 AM
[7.3] Viewing MySQL logfiles made easier
by AllenAyres
09/27/08 09:57 PM
New Mods
[7.3] Viewing MySQL logfiles made easier
by blaaskaak
09/24/08 05:39 PM
[7.3.1] add search to showmembers page
by blaaskaak
09/07/08 04:50 AM
Newest Members
Kevs, pisa666, ghengis317, NitroX, Dogan
13346 Registered Users
Top Posters Last 30 Days
AllenAyres 11
blaaskaak 6
Chris Bale 4
Gizmo 4
FREAK1 4
Ian_W 4
tackaberry 4

 

 

 
fusionbb message board php hacks