Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons

Reply
 
Thread Tools
vBPortfolio Lite Details »»
vBPortfolio Lite
Version: 1.0.0, by King Kovifor King Kovifor is offline
Developer Last Online: Aug 2015 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.5 Rating:
Released: 08-05-2006 Last Update: 08-19-2006 Installs: 20
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

vBPortfolio Lite is the "Lite" version of the still in-development full version. This version is completely free.

Features:
  • Template
  • Phrases with Custom Phrasegroup
  • Uses a repeat method for display all entries.
  • Pagination
  • Settings
  • ACP Backend:
    • Listing
    • Add
    • Edit*
    • Delete*
    • Reset
  • Version Check

* ACP backend currently does not work. Bugs have been found that hinder use of this feature, but the rest is stable.

Known Bugs:

There are two bugs that haven't been touched. There is one bug that is partially complete and needs some tweaking. The page navigation has been completely rewritten to include less code and better performance.

Patch Released
For an immediate fix for users with entries not showing up when they are added a patched portfolio.php has been uploaded. To install the patch version please overwrite the portfolio.php file on your server. Than in your vBPortfolio settings, please turn pagination OFF. (set this setting to no)

When installing, this will add 2 plugins and add a 1 entry into a mysql table, and add 1 table.

Supporters / CoAuthors

Show Your Support

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

Comments
  #12  
Old 08-15-2006, 09:55 PM
y2krazy y2krazy is offline
 
Join Date: Jun 2003
Location: Houston, Texas
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone able to help out with the fault in the SQL code?
Reply With Quote
  #13  
Old 08-16-2006, 04:28 AM
Mythotical Mythotical is offline
 
Join Date: Jun 2004
Location: Booneville, AR, USA
Posts: 1,428
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

y2krazy, check to make sure your server has php updated and mysql updated.
Reply With Quote
  #14  
Old 08-16-2006, 11:26 AM
y2krazy y2krazy is offline
 
Join Date: Jun 2003
Location: Houston, Texas
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

These are what my server is running:

PHP version 4.4.2
MySQL version 4.0.27-standard

Is this mod not compatible with these versions?
Reply With Quote
  #15  
Old 08-16-2006, 12:52 PM
King Kovifor's Avatar
King Kovifor King Kovifor is offline
 
Join Date: Nov 2004
Location: PA
Posts: 3,872
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If that's not working, run this query:

PHP Code:
CREATE TABLE `portfolio` (
`
idINT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`
linkVARCHAR100 NOT NULL ,
`
siteVARCHAR100 NOT NULL ,
`
startVARCHAR100 NOT NULL ,
`
finishVARCHAR100 NOT NULL ,
`
screen1VARCHAR255 NOT NULL ,
`
alt1VARCHAR255 NOT NULL ,
`
screen2VARCHAR255 NOT NULL ,
`
alt2VARCHAR255 NOT NULL ,
`
descriptionVARCHAR10000 NOT NULL
ENGINE MYISAM ;; 
Try running that (and hopefully the install code will be skipped.

Our Test vB has:

4.1.21-standard for MySQL and 4.4.2 for php. It works fine on these. It might be the mysql...
Reply With Quote
  #16  
Old 08-17-2006, 04:27 AM
y2krazy y2krazy is offline
 
Join Date: Jun 2003
Location: Houston, Texas
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, that fixed it. Seems that this was the snag in the XML file:

Code:
) ENGINE = MYISAM ;");]]></installcode>
Simply remove that little piece and it should work fine.

Also, I wasn't aware of this, but is this mod just for the owner of the site it's used on to utilize, or is it editable on a per-user basis?

EDIT: That didn't fix the SQL. It never made the 'portfolio' table and when I tried to run that query in phpMyAdmin, this it what it gave me:

#1074 - Too big column length for column 'description' (max = 255). Use BLOB instead
Reply With Quote
  #17  
Old 08-17-2006, 09:12 PM
mac27 mac27 is offline
 
Join Date: Jun 2006
Location: Kentucky
Posts: 299
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK but where do you find the portfolio at. I know it is there but where.
Reply With Quote
  #18  
Old 08-17-2006, 10:50 PM
King Kovifor's Avatar
King Kovifor King Kovifor is offline
 
Join Date: Nov 2004
Location: PA
Posts: 3,872
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by y2krazy
Well, that fixed it. Seems that this was the snag in the XML file:

Code:
) ENGINE = MYISAM ;");]]></installcode>
Simply remove that little piece and it should work fine.

Also, I wasn't aware of this, but is this mod just for the owner of the site it's used on to utilize, or is it editable on a per-user basis?

EDIT: That didn't fix the SQL. It never made the 'portfolio' table and when I tried to run that query in phpMyAdmin, this it what it gave me:

#1074 - Too big column length for column 'description' (max = 255). Use BLOB instead
I was hoping that it didn't do that. You'll need to do this instead:

PHP Code:
CREATE TABLE `portfolio` (
`
idINT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`
linkVARCHAR100 NOT NULL ,
`
siteVARCHAR100 NOT NULL ,
`
startVARCHAR100 NOT NULL ,
`
finishVARCHAR100 NOT NULL ,
`
screen1VARCHAR255 NOT NULL ,
`
alt1VARCHAR255 NOT NULL ,
`
screen2VARCHAR255 NOT NULL ,
`
alt2VARCHAR255 NOT NULL ,
`
descriptionVARCHAR255 NOT NULL
ENGINE MYISAM 
Also note, that the table prefix is not in there. If you have vb_ as your table prefix change "portfolio" to "vb_portfolio" and it'll correctly integrate.

Yes, this mod is for the Owner only. Or at least anyone with access to the ACP.

Quote:
Originally Posted by mac27
OK but where do you find the portfolio at. I know it is there but where.
After you install the mod, and upload the files go to the following URL:

http://www.domain.tld/forum_directory/portfolio.php

That is if you didn't rename that.
Reply With Quote
  #19  
Old 08-18-2006, 12:49 PM
y2krazy y2krazy is offline
 
Join Date: Jun 2003
Location: Houston, Texas
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Alright, I replaced the table with that last SQL and now I go to try and save an entry in the ACP and once I hit Save, it redirects and shows it as an entry; however, when I went to view it @ /portfolio.php nothing shows up. So, I checked back in the ACP and clicked [EDIT] and when I do, all the fields are blank and when I check phpMyAdmin, the data was entered into the database correclty as the first row.

What would explain nothing showing up in the ACP or on the /portfolio.php page?
Reply With Quote
  #20  
Old 08-18-2006, 01:10 PM
King Kovifor's Avatar
King Kovifor King Kovifor is offline
 
Join Date: Nov 2004
Location: PA
Posts: 3,872
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

[EDIT] and [DELETE] are currently listed as bugs for the ACP. The queries are not running which is causing no data to show.

/portfolio.php should show all of them. Do you have it installed on a test board? If so, could you show me the query that selects from prefix_portfolio table? Any of them will that include that would be useful.
Reply With Quote
  #21  
Old 08-18-2006, 05:03 PM
y2krazy y2krazy is offline
 
Join Date: Jun 2003
Location: Houston, Texas
Posts: 318
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am running on somewhat of a test board I guess - ie, it's not open to the public yet (forum is locked), but I haven't edited any files from the version you released so I have what you have.
Reply With Quote
Reply

Thread Tools

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:15 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.06355 seconds
  • Memory Usage 2,320KB
  • Queries Executed 26 (?)
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_code
  • (2)bbcode_php
  • (2)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
  • (3)pagenav_pagelink
  • (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