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

Reply
 
Thread Tools
viPortfolio 1.2.6 Beta Release Details »»
viPortfolio 1.2.6 Beta Release
Version: 1.00, by TeddyBare69 TeddyBare69 is offline
Developer Last Online: Apr 2005 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 07-29-2002 Last Update: Never Installs: 12
Is in Beta Stage  
No support by the author.

======= =======
viPortfolio Version 1.2.6
======= =======

This is our first hack. And not our last. We have spent a lot of time polishing it for stability and interface. Thanks for the patience and support so far.
We have installed and tested in vBulletin 2.2.6. For those with older versions, please post your results.

Credits:
VisibleImpact.com Administrative Director and author: TeddyBare69
VisibleImpact.com
Owner and Designer: sengerdw
Courages testers at vBulletin.org
hellsatan, stangpower, Christy, Sketch, NTLDR, Apok2002, Martin64


Description:
For those that need a separate interface in the user control panel to upload files - download this.

Features:[list=1][*]New profile navigation bar to view a portfolio/upload gallery[*]New profile navigation bar for members to change their portfolio/upload gallery[*]Admin and moderators may change descriptions and delete file configuration options maintained in admin control panel.[*]86 different file types support via either thumbnail or default icon view.[*]ImageMagick not needed![*]Display who uses their portfolio in the members list.[*]Support for vbHacker from Chen located at vbHacker 1.0.1 is included in the install.[/list=1]
Demo links:[list=1][*]Members list[*]Public Profile[*]Public Portfolio[/list=1]
Installation Instructions:

Extract the viPortfolio-1.2.6.zip file which will create a viPortfolio
subdirectory. Upload the directory to your root Web server directory where your forum code is located. From a Web browser run: http://{yourserver}/viPortfolio/install.php and follow the steps.

.: Remove the viPortfolio subdirectory after installation :.

We would appreciate any feedback regarding this hack. Interface, changes for future versions and so on. We will offer support for this hack - we will not be responsible for errors - as always, BACK UP YOUR data base.

We have spent a lot of time on this and all we ask is that our copyright notice remain in tact at the bottom of portfolio pages. Thanks!

Along with viPortfolio we are making use of a new install.php version 1.2.6. The install.php has not had the amount of testing that viPortfolio has. With that said we are looking for your assistance in notifying VisibleImpact.com of any error messages or difficulties you may have with the install.

*** Updated installer ****
I have totaly rewritten the installer to take out all the flash and make it a simple step by step install. Atleast I hope that is what it is It is definately worth trying.

viPortfolio v1.2.6 developed by: VisibleImpact.com

Show Your Support

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

Comments
  #22  
Old 07-30-2002, 08:08 PM
stangpower stangpower is offline
 
Join Date: Mar 2002
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default



Screen shot 2.

You would save me $100 if you could get this working

Ian
Reply With Quote
  #23  
Old 07-30-2002, 09:20 PM
Christy Christy is offline
 
Join Date: Oct 2001
Posts: 54
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I too got the same errors that Stangpower posted :/
Reply With Quote
  #24  
Old 07-31-2002, 12:36 AM
Chris M's Avatar
Chris M Chris M is offline
 
Join Date: Dec 2001
Location: Northampton, England
Posts: 6,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Those are the errors I got

Satan
Reply With Quote
  #25  
Old 07-31-2002, 01:00 AM
TeddyBare69 TeddyBare69 is offline
 
Join Date: Jun 2002
Location: CA, US
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

stangpower, hellsatan, christy, anybody else with databases that don't like the ';'

I am not completely positive this will fix your first screen shot of errors though. I am looking into how those errors could be created. You are more than willing to try with this fix.

If I could find out what version database you are running? I have seen this error on visibleimpacts website as well and haven't figured out why it works on my test server but not on the production server.

Here is the fix. I am uploading a new file and giving fixit instructions.

This is an easy fix.

1. in your viPortfolio directory you have install.php
2. open that file and find line 1338
You should see this with or without line numbers depending on your editor:
1335 if ($onvservers==1 and substr($val, 0, 5)=="ALTER") {
1336 $DB_site->reporterror=0;
1337 }
1338 echo " .";
1339 $DB_site->query($val);
1340 if ( $DB_site->errno != 0 ) {
1341 echo "<P>Error #[".$DB_site->errno."]<BR>Message: [".$DB_site->errdesc."]<BR>SQL: [".$val."]<p>";
1342 return;
1343 }

3. Between lines 1338 and 1339 insert the following line.

$val[strpos( $val, ";" )] = " ";

4. Now your code will look like:
1335 if ($onvservers==1 and substr($val, 0, 5)=="ALTER") {
1336 $DB_site->reporterror=0;
1337 }
1338 echo " .";
1339 $val[strpos( $val, ";" )] = " ";
1340 $DB_site->query($val);
1341 if ( $DB_site->errno != 0 ) {
1342 echo "<P>Error #[".$DB_site->errno."]<BR>Message: [".$DB_site->errdesc."]<BR>SQL: [".$val."]<p>";
1343 return;
1344 }

If you don't feel comfortable making that change, I have attached the modifed install.php file here.
Reply With Quote
  #26  
Old 07-31-2002, 01:07 AM
Chris M's Avatar
Chris M Chris M is offline
 
Join Date: Dec 2001
Location: Northampton, England
Posts: 6,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cheers...

I will try that out at a more decent time of the day

Satan
Reply With Quote
  #27  
Old 07-31-2002, 01:32 AM
Sketch Sketch is offline
 
Join Date: Apr 2002
Location: Baltimore, Maryland
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

get this out of beta and I NEED it

Aaron
Reply With Quote
  #28  
Old 07-31-2002, 01:32 AM
TeddyBare69 TeddyBare69 is offline
 
Join Date: Jun 2002
Location: CA, US
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In my rush to get my first fix out I didn't completely test all the functionality. Instead of the fix being a one liner it is a two liner. Since I had the portfolio already installed it skipped part of the process.

Instead of inserting just the line:
$val[strpos( $val, ";" )] = " ";

You will need to insert both of the below lines in the same location:
if ( $ending = strpos( $val, ";" ) > 0 )
$val[strpos( $val, ";" )] = " ";


As with before i have attached a new install.php file with the modifications included.

So far the mysql_fetch_array errors you were getting also fixed with this change. If you could give the installer a try with these changes included and let me know the results I would greatly appreciate it.

Sorry for the confusion before.
Reply With Quote
  #29  
Old 07-31-2002, 04:12 AM
Sketch Sketch is offline
 
Join Date: Apr 2002
Location: Baltimore, Maryland
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I went ahead and installed this manually. Boy that was alot of work. Modded it a bit for my own purposes. I'm using 2.2.25 not 2.2.6 and the footer should be templated instead of hardcoded. Also I made the "portfolio" a link in the cp instead of a header option. I'll tweak this a bit more, but overall nice job.

BTW, you REALLY need to work on the explanations in the paperclip and profile HTML files.....they had me lost for awhile.

Sketch
Reply With Quote
  #30  
Old 07-31-2002, 05:15 AM
TeddyBare69 TeddyBare69 is offline
 
Join Date: Jun 2002
Location: CA, US
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you for the comments and suggestions. My hopes were that the installer would work and the documentation wouldn't be needed.
I am hopeing you thought it was a lot of work to put the code in because it is a lot of code not because the directions took you in circles :'(

If you are ok with it, I would like to see your mods you made and possibly add them in as an installation option.
Reply With Quote
  #31  
Old 07-31-2002, 11:43 AM
stangpower stangpower is offline
 
Join Date: Mar 2002
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Tried tne installer again, it did not work. Caused a parse error in my member list php file.

Sorry but I will let the others test it on their boards before I try again

Ian
http://www.stangpower.com
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 11:34 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07290 seconds
  • Memory Usage 2,310KB
  • 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
  • (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
  • (11)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
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete