Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBulletin Project Tools Open Source 2.2.2 Details »»
vBulletin Project Tools Open Source 2.2.2
Version: 2.2.2, by PitchouneN64ngc (Senior Member) PitchouneN64ngc is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: vBulletin Project Tools - Version: 4.1.4 Rating:
Released: 09-14-2011 Last Update: 05-23-2015 Installs: 194
DB Changes Uses Plugins Auto-Templates
Additional Files  
No support by the author.

We're excited that we are finally able to release Project Tools Open Source version 2.2.2.

Here's all you need to do to have Project Tools running on your site.

1. Download the files
2. Unzip the files locally
3. Upload the contents of the files located inside the /upload/ directory to your existing vBulletin directory.
4. Log in to your forum's control panel. Go to Plugins & Products > Manage Products > Add/Import Product
5. In the Import the XML file from your server field, enter: ./includes/xml/product-vbprojecttools.xml Change Allow Overwrite to yes if you are updating a previous installation.
6. Click Import

Comments, Questions, Support and Concerns will be addressed here and here only.

Further documentation can be found in the docs and here. Beta documentation is located within the /do_not_upload/ directory within the download.

For this release, the Italian language is not updated to Project Tools 2.2.2, and the Romanian language is added and noted for 2.2.1.

I hope this release will make you happy

Thanks

Download history
- 2.1.4: 238 downloads
- 2.2.0: 262 downloads
- 2.2.0 (minified): 88 downloads
- 2.2.1: 191 downloads
- 2.2.1 (minified): 56 downloads

Download Now

File Type: zip vBulletin Project Tools 2.2.2.zip (2.21 MB, 234 views)
File Type: zip vBulletin Project Tools 2.2.2 (minified).zip (2.20 MB, 70 views)

Supporters / CoAuthors

Show Your Support

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

Comments
  #282  
Old 12-29-2013, 03:33 AM
LoveStream LoveStream is offline
 
Join Date: Jan 2009
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by PitchouneN64ngc View Post
Do you have any screenshot of that FB issue? I have all buttons displayed fine in 2.2.1. Thanks
Is that really need to view the screenshot? When I make the option of PT is as ON then the other Like Button on the Article, forum threads, blog were gone. But in this case, only the one on the PT issue page remains.

Image that please.
Reply With Quote
  #283  
Old 12-29-2013, 03:41 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by LoveStream View Post
Is that really need to view the screenshot? When I make the option of PT is as ON then the other Like Button on the Article, forum threads, blog were gone. But in this case, only the one on the PT issue page remains.

Image that please.
You can not provide it, but usually if someone who is offering to help asks for a screenshot, there is a reason they asked.
Reply With Quote
  #284  
Old 12-29-2013, 04:19 AM
LoveStream LoveStream is offline
 
Join Date: Jan 2009
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
You can not provide it, but usually if someone who is offering to help asks for a screenshot, there is a reason they asked.
Well, you are welcome. It worthy to accept.

Here I attach three different screen images with each file name.

There is no any products without default one.

Look at the Like button appears again when PT are disabled.

Compare it.
Attached Images
File Type: jpg likebutton_alive.jpg (45.3 KB, 0 views)
File Type: jpg likebutton_dead.jpg (45.3 KB, 0 views)
File Type: jpg likebutton_alive_on_the_forum.jpg (44.3 KB, 0 views)
Reply With Quote
  #285  
Old 12-29-2013, 03:51 PM
PitchouneN64ngc's Avatar
PitchouneN64ngc PitchouneN64ngc is offline
Senior Member
 
Join Date: Aug 2002
Location: France
Posts: 515
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay I got it now, lemme fix that.
Reply With Quote
  #286  
Old 12-29-2013, 03:57 PM
PitchouneN64ngc's Avatar
PitchouneN64ngc PitchouneN64ngc is offline
Senior Member
 
Join Date: Aug 2002
Location: France
Posts: 515
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Replace the plugin called 'Facebook Like Button in issues' by this code:

PHP Code:
if (THIS_SCRIPT == 'issue')
{
    if (
$vbulletin->options['facebooklikeissues'])
    {
        
$show['fb_likebutton'] = true;
        
$show['loadfbroot'] = !is_facebookenabled();
        
$templater vB_Template::create('facebook_likebutton');
        
$templater->register('appid'urlencode($vbulletin->options['facebookappid']));

        if (
is_browser('ie') OR is_browser('opera'))
        {
            
$templater->register('href'urlencode(get_fbcanonicalurl()));
        }
        else
        {
            
$templater->register('href'get_fbcanonicalurl());
        }

        
$retval .= $templater->render();
    }
    else
    {
        
$retval .= '';
        
$show['fb_likebutton'] = false;
    }

Reply With Quote
  #287  
Old 12-29-2013, 04:39 PM
LoveStream LoveStream is offline
 
Join Date: Jan 2009
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by PitchouneN64ngc View Post
Replace the plugin called 'Facebook Like Button in issues' by this code:

PHP Code:
if (THIS_SCRIPT == 'issue')
{
    if (
$vbulletin->options['facebooklikeissues'])
    {
        
$show['fb_likebutton'] = true;
        
$show['loadfbroot'] = !is_facebookenabled();
        
$templater vB_Template::create('facebook_likebutton');
        
$templater->register('appid'urlencode($vbulletin->options['facebookappid']));

        if (
is_browser('ie') OR is_browser('opera'))
        {
            
$templater->register('href'urlencode(get_fbcanonicalurl()));
        }
        else
        {
            
$templater->register('href'get_fbcanonicalurl());
        }

        
$retval .= $templater->render();
    }
    else
    {
        
$retval .= '';
        
$show['fb_likebutton'] = false;
    }

Now it's great well.

Thank you.
Reply With Quote
  #288  
Old 01-25-2014, 08:04 AM
CKSU.com CKSU.com is offline
 
Join Date: Jan 2011
Location: Riyadh
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I was runing VB 4.1.4 with PT 2.1.4.. Then, I upgrade to VB 4.2.2

I downloaded the PT 2.2.0. I disabled the plugin, I uploaded the plugin files.
When I tried to login into Control Panel, It tells me to remove "install" folder, I did.
Then, I tried to import/upgrade the plugin using ./includes/xml/product-vbprojecttools.xml file.
I got this error.
Code:
Database error in vBulletin 4.2.2:

Invalid SQL:

		SELECT projectid, options
		FROM pt_project;

MySQL Error   : Unknown column 'options' in 'field list'
Error Number  : 1054
Request Date  : Saturday, January 25th 2014 @ 12:03:01 PM
Error Date    : Saturday, January 25th 2014 @ 12:03:02 PM
Script        : http://www.cksu.com/vb/admincp/plugin.php?do=productimport
Referrer      : http://www.cksu.com/vb/admincp/plugin.php?do=productadd
Classname     : vB_Database
MySQL Version : 5.1.71
Reply With Quote
  #289  
Old 01-26-2014, 08:56 PM
PitchouneN64ngc's Avatar
PitchouneN64ngc PitchouneN64ngc is offline
Senior Member
 
Join Date: Aug 2002
Location: France
Posts: 515
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'll give a try this week..

BTW you can remove the 'install' folder, I just followed the way where the original mobile style was included in vB4. For the next release, I'll move it elsewhere to avoid this issue again
Reply With Quote
  #290  
Old 02-16-2014, 06:21 PM
OlijO's Avatar
OlijO OlijO is offline
 
Join Date: Jun 2005
Location: Belgium
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,
we had isntalled it.
vB4.2.2 and last version of project tool.
When we submit a task, after submitted we obtain a white page.
If i go back, and show the main page of the project tool the task can be seen but if i try to open it we obtain an error message showex it's a bas link
I saw some people have the same problem but don't receive any answer.
Any idea what it can be ?
Regards,
Olivier
Reply With Quote
  #291  
Old 02-16-2014, 07:51 PM
PitchouneN64ngc's Avatar
PitchouneN64ngc PitchouneN64ngc is offline
Senior Member
 
Join Date: Aug 2002
Location: France
Posts: 515
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This seems the same issue and the only related thing I can suspect is the use of vbseo. I have no other any way to 'reproduce' it.
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 08:43 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.09259 seconds
  • Memory Usage 2,382KB
  • Queries Executed 27 (?)
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)bbcode_code
  • (2)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (15)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (5)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete