Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: , by (Guest)
Developer Last Online: Jan 1970 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 09-05-2001 Last Update: Never Installs: 29
 
No support by the author.

Update : Sept 6
-- Thanks to wajones who pointed out a couple of things, I updated the files.
-- 1. The icons in the top right corner, one of them was suppose to point to the user help file but it was renamed and I forgot to update the code.
-- 2. There was a header error in the admin panel, which was corrected by wajones... if future problems happens please tell me.

------end update.

Well everyone, I decided tonight to release this and just see what happens from there on. I got caught up in working on my multi-page profile for my site, and kind of forgot about this. Sorry I do that a lot, in which I am sure everyone does.

First off... please read all of the files that I have included in this, the Installation.txt file is something I slapped together at the last minute and probably needs proof read... but who cares. The Readme.txt file explains what all the files are, and has some other tidbit information.

The only things you will really need to upload is: upload.php, userhelp.html, vbuploadinstall.php and the images and image folder.

I tried to explain the best way to have it... is putting those three files in the root of your vb folder, then just upload the images folder, which will create a sub folder inside that for the two image icons. Then you will have to create another folder like I suggested named "uploaded" meaning uploaded pictures. Then you will have to chmodd that to 777 and go from there. Then you will have to go through the upload.php file and change the variable preferences to fit your site. I tried to do the best possible explanation of how to do it through my comments throughout the files. So pay attention to those, also feel free to customize the userhelp file to fit your site and everything.

One thing I kind of fell short on.. was a cool profile page.. I mean I included a getinfo template that I used when I first made this, which was on vb2.0.1 and now that added like ignore and stuff so.. you might just want to create your own template up in your favorite web page builder or in notepad.. whatever. And go from there with the variables that I include.

Just pretty much go through the installation files and everything and follow the steps and you should not have any problems.. not saying you won't but... hopefully the F.A.Q. file will help with that.

Some might hate it, some might like it... if you hate it.. don't download it.. or install it.

To uninstall, follow the steps you took to install it and reverse them

ALWAYS BACKUP Before doing hacks... installations, changes, etc!

**Warning** Install at your own risk!

and... there is no place like home! Just remember that!

P.S. search these forums.. for screen shots and there is no demo as of right now... well there was but I Took it down

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #82  
Old 09-20-2001, 01:53 AM
SirSteve SirSteve is offline
 
Join Date: Oct 2001
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by BradC


As if you did not know.. from reading above.. oh wait maybe you didn't.. and yes I am not in that good of a mood. Because of college problems..

if you would simply look above you can see the the stripslashesarry problem... and the new zip fixed it.

As for the variables not showing up... that was a given, RobAC pointed that out, and I still have not solved that mystery.

There was no header or footer added to my addon, and since it seems you did not read my documents.. I will not support nor will I help change the layout design of it. So if you want to add to it, someone else will help you out if they want to.
'

Guess I will wait until you are in a better mood because I looked at the new zip and don't see any changes in the files from the one I got early today to fix the stripslashesarry. Perhaps I am blind.
Reply With Quote
  #83  
Old 09-20-2001, 02:55 AM
BradC
Guest
 
Posts: n/a
Default

perhaps reading the threads before this...

someone or a few people have had this problem.

and yes in the html instructions file it was changed.

Ok.. might as well explain it.

when you add the code in the admin/user.php file, at the very top you are doubling the error_reporting line..

when I had.. find <?php ... and then after that I put paste this code under that, ... I had you in a sense doubling the error_report .. which gives you that, cause it is trying to do it twice.. and it can only do it once.

so go into your admin/user.php file, look at the very top.... right above <?php trace that down to where it says.. error_reporting(7);

and delete that line all the way up to the <?php line... leaving that line..

the instructions now say... find :

<?php
error_reporting(7);

and right underneath that paste this code:

PHP Code:
require("./global.php");
/*
Auto center window script- snyx (<a href="http://snyxmedia.com" target="_blank">[url]http://snyxmedia.com[/url]</a>) DO NOT REMOVE!
*/
echo "<SCRIPT language="javascript" type="text/javascript">\n";
echo 
"<!--\n";
echo 
"var win = null;\n";
echo 
"function NewWindow(mypage,myname,w,h,scroll){\n";
echo 
"LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;\n";
echo 
"TopPosition = (screen.height) ? (screen.height-h)/2 : 0;\n";
echo 
"settings =  'height='+h+',width='+w+',top='+TopPosition+',left ='+LeftPosition+',scrollbars='+scroll+',resizable'\n";
echo 
"win = window.open(mypage,myname,settings)\n";
echo 
"if(win.window.focus){win.window.focus();}\n";
echo 
"}\n";
echo 
"\n";   
echo 
"//--></SCRIPT>\n";
echo 
"\n"
end result it should like this.. starting from line 1:

PHP Code:
<?php
//* Modified by Brad Clampitt *//
error_reporting(7);
require(
"./global.php");
/*
Auto center window script- snyx (<a href="http://snyxmedia.com" target="_blank">[url]http://snyxmedia.com[/url]</a>) DO NOT REMOVE!
*/
echo "<SCRIPT language="javascript" type="text/javascript">\n";
echo 
"<!--\n";
echo 
"var win = null;\n";
echo 
"function NewWindow(mypage,myname,w,h,scroll){\n";
echo 
"LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;\n";
echo 
"TopPosition = (screen.height) ? (screen.height-h)/2 : 0;\n";
echo 
"settings =  'height='+h+',width='+w+',top='+TopPosition+',left ='+LeftPosition+',scrollbars='+scroll+',resizable'\n";
echo 
"win = window.open(mypage,myname,settings)\n";
echo 
"if(win.window.focus){win.window.focus();}\n";
echo 
"}\n";
echo 
"\n";   
echo 
"//--></SCRIPT>\n";
echo 
"\n";
does this help...
Reply With Quote
  #84  
Old 09-20-2001, 03:01 AM
ToraTora! ToraTora! is offline
 
Join Date: Nov 2001
Posts: 255
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i think from now on, im not going to include instructions for anything i ever release again. Just because of the simple fact, everything winds up here one way or the other.
Reply With Quote
  #85  
Old 09-20-2001, 03:03 AM
ToraTora! ToraTora! is offline
 
Join Date: Nov 2001
Posts: 255
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I wonder if brad could of made us scroll just a bit more to the right.....lol..
Reply With Quote
  #86  
Old 09-20-2001, 03:06 AM
SirSteve SirSteve is offline
 
Join Date: Oct 2001
Posts: 382
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Now I see it and I got it. I didn't see there were two sets of error_reporting(7); and require("./global.php");

Thank you for your time. Exceptional hack!
Reply With Quote
  #87  
Old 09-20-2001, 03:28 AM
BradC
Guest
 
Posts: n/a
Default

hey I am just glad it works...

and don't make me make you guys scroll more to the right

and.. sorry if I seem pissed off for the next couple of weeks.. and well for the last couple of weeks lol..

at my college, which I am going to be graduating in November, they have all my grades and GPA all messed up. I have a 3.9GPA and they say I have a 3.23... which makes no sense... so I have been frustrated and irriated at all of the crap I am having to go through to get this fixed, before I graduate.. cause this is something that I will be showing to employers... and a 3.9 looks better than a 3.23 lol
Reply With Quote
  #88  
Old 09-21-2001, 02:11 PM
maverick1236 maverick1236 is offline
 
Join Date: Oct 2001
Location: NY
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i cannot-no matter what i try-get this hack to work

is there any way u can make it so this "upload.php" connects to the database without a user typing his mysql info in-like some other hacks?

i know this will fix it
Reply With Quote
  #89  
Old 09-21-2001, 02:53 PM
BradC
Guest
 
Posts: n/a
Default

why can't you find your config.php file in your admin folder for your vb files..

in there is the information you need if you say *it will fix it* just copy over the information.
Reply With Quote
  #90  
Old 09-25-2001, 01:14 AM
maverick1236 maverick1236 is offline
 
Join Date: Oct 2001
Location: NY
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nothing works

ive even had an experienced webmaster try-no-go

will their be any updates with the coding?-or should i delete the code?

tx
Reply With Quote
  #91  
Old 09-25-2001, 01:25 AM
BradC
Guest
 
Posts: n/a
Default

I know for a fact that it cannot be this tuff to figure out.. and I know a lot of people have tried to help you with this...

There will probably not be any updates for awhile for this.. ohh sure I have updated it a lot for my site, and everything but I don't know if I will release my updates.

See the thing is that it works for me perfectly on my servers, it is hard to get something to work smoothly and problemless on all server types and configerations.. ya know..
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:56 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05945 seconds
  • Memory Usage 2,314KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (6)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_imicons
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete