vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   vBulletin Project Tools - vBulletin Project Tools Open Source 2.2.2 (https://vborg.vbsupport.ru/showthread.php?t=270346)

ozione 10-06-2012 09:42 AM

hi, mates!

i have some really big issues with my site since uninstalling the project tools. i asked for help on it's official support forums but no one seems to care.

what i did was a complete uninstallation of the product. by the book. i'm getting these sql errors, so i tried to reinstall the product (no more errors) and uninstall it again. no luck.

the sql error:
Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

                                        SELECT languageid,
                        phrasegroup_global AS phrasegroup_global,
                        phrasegroup_projecttools AS phrasegroup_projecttools,
                        phrasegroup_posting AS phrasegroup_posting,
                        phrasegroupinfo AS lang_phrasegroupinfo,
                        options AS lang_options,
                        languagecode AS lang_code,
                        charset AS lang_charset,
                        locale AS lang_locale,
                        imagesoverride AS lang_imagesoverride,
                        dateoverride AS lang_dateoverride,
                        timeoverride AS lang_timeoverride,
                        registereddateoverride AS lang_registereddateoverride,
                        calformat1override AS lang_calformat1override,
                        calformat2override AS lang_calformat2override,
                        logdateoverride AS lang_logdateoverride,
                        decimalsep AS lang_decimalsep,
                        thousandsep AS lang_thousandsep
                                        FROM vb4_language
                                        WHERE languageid = 2;

MySQL Error  : Unknown column 'phrasegroup_projecttools' in 'field list'
Error Number  : 1054
Request Date  : Saturday, October 6th 2012 @ 11:43:17 AM
Error Date    : Saturday, October 6th 2012 @ 11:43:17 AM
Script        : http://www.mydomain.com/vb4/project.php?do=issuelist&projectid=2&issuetypeid=&issuestatusid=0&appliesversionid=v1
Referrer      :
IP Address    : 66.249.71.139
Username      :
Classname    : vB_Database
MySQL Version :

ANY help would be REALLY appriciated.
thank you.

metalguy639 10-06-2012 09:18 PM

Quote:

Originally Posted by ozione (Post 2371134)
hi, mates!

i have some really big issues with my site since uninstalling the project tools. i asked for help on it's official support forums but no one seems to care.

what i did was a complete uninstallation of the product. by the book. i'm getting these sql errors, so i tried to reinstall the product (no more errors) and uninstall it again. no luck.

the sql error:
Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

                                        SELECT languageid,
                        phrasegroup_global AS phrasegroup_global,
                        phrasegroup_projecttools AS phrasegroup_projecttools,
                        phrasegroup_posting AS phrasegroup_posting,
                        phrasegroupinfo AS lang_phrasegroupinfo,
                        options AS lang_options,
                        languagecode AS lang_code,
                        charset AS lang_charset,
                        locale AS lang_locale,
                        imagesoverride AS lang_imagesoverride,
                        dateoverride AS lang_dateoverride,
                        timeoverride AS lang_timeoverride,
                        registereddateoverride AS lang_registereddateoverride,
                        calformat1override AS lang_calformat1override,
                        calformat2override AS lang_calformat2override,
                        logdateoverride AS lang_logdateoverride,
                        decimalsep AS lang_decimalsep,
                        thousandsep AS lang_thousandsep
                                        FROM vb4_language
                                        WHERE languageid = 2;

MySQL Error  : Unknown column 'phrasegroup_projecttools' in 'field list'
Error Number  : 1054
Request Date  : Saturday, October 6th 2012 @ 11:43:17 AM
Error Date    : Saturday, October 6th 2012 @ 11:43:17 AM
Script        : http://www.mydomain.com/vb4/project.php?do=issuelist&projectid=2&issuetypeid=&issuestatusid=0&appliesversionid=v1
Referrer      :
IP Address    : 66.249.71.139
Username      :
Classname    : vB_Database
MySQL Version :

ANY help would be REALLY appriciated.
thank you.

It looks like the phrasegroups did not uninstall for Project tools. Did you first go to Plugins & Products>Manage Products and click the drop down next to the Project Tools install and tick uninstall? That usually allows you to uninstall any tables found in your database that may cause errors otherwise.

If you did do that and you still get that error you may have to go into your database and drop that table from the database manually. Make sure and I cannot stress enough, make sure you completely back up the database first.

TheSupportForum 10-06-2012 09:27 PM

Quote:

Originally Posted by metalguy639 (Post 2371256)
It looks like the phrasegroups did not uninstall for Project tools. Did you first go to Plugins & Products>Manage Products and click the drop down next to the Project Tools install and tick uninstall? That usually allows you to uninstall any tables found in your database that may cause errors otherwise.

If you did do that and you still get that error you may have to go into your database and drop that table from the database manually. Make sure and I cannot stress enough, make sure you completely back up the database first.

its nothing to do with that, its the install script for the database it just need a minor change

change all instances of

Code:

) TYPE=MyISAM;;
to

Code:

) ENGINE=MyISAM; ');
or from

Code:

) TYPE=MyISAM;;
to

Code:

) ');
once its reinstalled the product will work, then if uninstalled it will remove that same issue

ozione 10-11-2012 09:09 AM

hey!
thanks for a reply.

where do i get to change those instances, please?

TheSupportForum 10-11-2012 09:30 AM

Quote:

Originally Posted by ozione (Post 2372256)
hey!
thanks for a reply.

where do i get to change those instances, please?

the product xml file

basically this addon will work once you make those changes to it

ozione 10-11-2012 02:49 PM

thanks for that. the reason i wasn't able to find these strings is that in the included .xml, instances are already changed.

hm...

Christos Teriakis 10-29-2012 07:23 AM

When you're getting similar errors (phrasegroups missing), then 99% is because you left behind a cron file at includes/cron/. This applies to all mods having cron files which files are trying to load a phrasegroup.

Chris

PitchouneN64ngc 10-29-2012 09:12 PM

I'll do a 2.1.4 release for the time I could finish 2.2.0 test. It have vB 4.2.0 changes, I think I'll add more fixes in it, not sure (most fixes will go to 2.2.0).

I'll take all feedback between my last post and this one, and seeing if I can fix those quickly :)

PitchouneN64ngc 10-29-2012 09:19 PM

Quote:

Originally Posted by deadlySniper (Post 2366246)
I keep getting this error when I import

Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

                        INSERT INTO vb_pt_projectpermission
                                (usergroupid, projectid, issuetypeid, generalpermissions, postpermissions, attachpermissions)
                        VALUES
                                (1, 0, 'bug',
                                0, 0, 0),(1, 0, 'feature',
                                0, 0, 0),(1, 0, 'task',
                                0, 0, 0);

MySQL Error  : Duplicate entry '1-0-bug' for key 1
Error Number  : 1062
Request Date  : Monday, September 17th 2012 @ 10:52:29 PM
Error Date    : Monday, September 17th 2012 @ 10:52:40 PM
Script        : http://survivedayz.com/forums/admincp/plugin.php?do=productimport
Referrer      : http://survivedayz.com/forums/admincp/plugin.php?do=productadd
IP Address    : *******
Username      : **********
Classname    : vB_Database
MySQL Version : 5.0.92-log


Did you already installed it before? It failed when you first tried? Did you uninstalled it previously correctly?

Quote:

Originally Posted by metalguy639 (Post 2370398)
Again I ask this...


Has this been updated yet? Seems there is no one working on this anymore and no one seems to be interested in fixing the issues it has.

It's not possible to give specific permission to an user, you need to add this user in a specific usergroup (alone in the selected usergroup) and assign specific permissions in this usergroup.

Quote:

Originally Posted by Hostboard (Post 2370455)
In April he announced it was going to be released within a week.
We have now seen 6 months of soon.

There is also a known issue with this current release and TapaTalk.

The current fix is:
Code:

Did you installed Project tools mod on your forum?
If it is, please try comment out below in line plugin file mobiquo/functions/get_thread.php at about line 538:
//($hook = vBulletinHook::fetch_hook('showthread_query')) ? eval($hook) : false;

I am also hoping the human verification mod is integrated into this as it currently is not compatable any more. It was with VB 4 but somewhere along the lines VB4's updates broke it.
https://vborg.vbsupport.ru/showthread.php?t=219636

Human Verification mod is integrated in Project Tools 2.2.0. I need to find some time to finish to fully test it, I hope to find some time thursday :)

I didn't know for an incompatibility with Tapatalk, I'm not using it. I'll check with it to find an automated fix :)

Quote:

Originally Posted by ozione (Post 2371134)
hi, mates!

i have some really big issues with my site since uninstalling the project tools. i asked for help on it's official support forums but no one seems to care.

what i did was a complete uninstallation of the product. by the book. i'm getting these sql errors, so i tried to reinstall the product (no more errors) and uninstall it again. no luck.

the sql error:
Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

                                        SELECT languageid,
                        phrasegroup_global AS phrasegroup_global,
                        phrasegroup_projecttools AS phrasegroup_projecttools,
                        phrasegroup_posting AS phrasegroup_posting,
                        phrasegroupinfo AS lang_phrasegroupinfo,
                        options AS lang_options,
                        languagecode AS lang_code,
                        charset AS lang_charset,
                        locale AS lang_locale,
                        imagesoverride AS lang_imagesoverride,
                        dateoverride AS lang_dateoverride,
                        timeoverride AS lang_timeoverride,
                        registereddateoverride AS lang_registereddateoverride,
                        calformat1override AS lang_calformat1override,
                        calformat2override AS lang_calformat2override,
                        logdateoverride AS lang_logdateoverride,
                        decimalsep AS lang_decimalsep,
                        thousandsep AS lang_thousandsep
                                        FROM vb4_language
                                        WHERE languageid = 2;

MySQL Error  : Unknown column 'phrasegroup_projecttools' in 'field list'
Error Number  : 1054
Request Date  : Saturday, October 6th 2012 @ 11:43:17 AM
Error Date    : Saturday, October 6th 2012 @ 11:43:17 AM
Script        : http://www.mydomain.com/vb4/project.php?do=issuelist&projectid=2&issuetypeid=&issuestatusid=0&appliesversionid=v1
Referrer      :
IP Address    : 66.249.71.139
Username      :
Classname    : vB_Database
MySQL Version :

ANY help would be REALLY appriciated.
thank you.

The 'Script' URL in the error message indicates me you are still using some Project Tools file. Please recheck all of your files if they are still existing.

Quote:

Originally Posted by simonhind (Post 2371258)
its nothing to do with that, its the install script for the database it just need a minor change

change all instances of

Code:

) TYPE=MyISAM;;
to

Code:

) ENGINE=MyISAM; ');
or from

Code:

) TYPE=MyISAM;;
to

Code:

) ');
once its reinstalled the product will work, then if uninstalled it will remove that same issue

AFAIK all database queries are already updated from TYPE to ENGINE. I'll recheck though. :)

Popa Andrei 10-29-2012 09:56 PM

if this will be updated to work on vbulletin 5 that will be awseome

PitchouneN64ngc 10-29-2012 10:03 PM

It will be, but nothing really started as I already tried on Alpha 39 and nothing was possible for a 'big' mod like this one.

I'll review more in a few weeks. I prefer to finish 2.2 before (vB5 release will be PT 3.0.0 due to the whole changes we need to perform for vB5).

Popa Andrei 10-29-2012 10:16 PM

Thank you for the updates.I will monitor this thread.
Its good to know that someone is working on this.I thought the mode was left to die.

PitchouneN64ngc 10-29-2012 10:26 PM

Not died, just not the time actually (2 jobs with nearly 100 hours per week to perform) :)

persianpros 11-10-2012 04:40 PM

i think you (developer) don't know the number of the week/month

week is 7 days
month is 30 days

maybe you're living in a different planet

PitchouneN64ngc 11-10-2012 05:48 PM

And you, it seems you didn't read my previous post.

Christos Teriakis 11-10-2012 06:13 PM

Quote:

Originally Posted by artman_hacker (Post 2380018)
i think you (developer) don't know the number of the week/month

week is 7 days
month is 30 days

maybe you're living in a different planet

Seems that you don't know the story of vB Project Tools. Released as official paid addon (I've bought 2 licenses), and when vB seen that has no profits, they released it for free. Nothing bad here. Business is Business. But instead to say a warm THANK YOU to all those who are trying to keep it live, you're teasing them. Sorry, it's not fair. If you can't wait, nobody restricts you to go for another solution.

Chris

metalguy639 11-10-2012 11:54 PM

Quote:

Originally Posted by ChrisTERiS (Post 2380043)
Seems that you don't know the story of vB Project Tools. Released as official paid addon (I've bought 2 licenses), and when vB seen that has no profits, they released it for free. Nothing bad here. Business is Business. But instead to say a warm THANK YOU to all those who are trying to keep it live, you're teasing them. Sorry, it's not fair. If you can't wait, nobody restricts you to go for another solution.

Chris

Great! Then point us all into the "other solution". I'd love to know where/what it is. Some of the people in this thread use this hack for their businesses and it would be nice to have ALL the components of the hack in working order. Incidentally I also have a license for the original Project Tools, so yes I know the story.

Seriously (developer), if you do not have time to keep the hack in working order then telling us you will update it in a few days/weeks etc and then not doing it just plain sucks. If you are working 100 hours a week then obviously you cannot keep on supporting this hack so possibly someone who can take it over should step up or someone who can help you with it should try and lend you a hand. Most people understand that your paying clients will come first before playing around with a free hack, but giving constant promises and then not fulfilling them does not create a sense of comfort for most people who are trying to use the hack. Even if you posted small fixes for the things that people have issues with I'd bet no one would be complaining as much or think that the project is "dead".

Christos Teriakis 11-11-2012 07:36 AM

Quote:

Originally Posted by metalguy639 (Post 2380174)
I only find them useful to use...

Talking for Project Tools, I also found it useful, that's why I paid for 2 license. But it has a serious missing feature. It does not supports subcategories.

Christos Teriakis 11-11-2012 08:13 AM

Quote:

Originally Posted by metalguy639 (Post 2380174)
..... that you are in fact the one who does not do serious business. ;)

I loved seeing that you're using my microCART in your site :D

kh99 11-11-2012 03:03 PM

Off topic posts removed. This thread is for discussing the Project Tools mod.

DaveINM 11-17-2012 02:42 AM

I'd pay for this mod to get finished. How much do we need to raise?

I can't wait to have the items from project tools showing up in the activity feed.

Popa Andrei 11-17-2012 04:34 AM

Quote:

Originally Posted by DaveINM (Post 2381782)
I'd pay for this mod to get finished. How much do we need to raise?

I can't wait to have the items from project tools showing up in the activity feed.

Il donate to.

PitchouneN64ngc 11-20-2012 11:51 AM

vBulletin Project Tools 2.1.4 released.

I hope this release will help you to wait for 2.2.0 without any issue on vBulletin 4.2 :)

DaveINM 11-20-2012 01:09 PM

Thanks for releasing the update. We appreciate it even with the delay.

I'm especially excited about the addition to the activity stream and the navbar working properly.:)

metalguy639 11-20-2012 06:25 PM

Quote:

Originally Posted by PitchouneN64ngc (Post 2382885)
vBulletin Project Tools 2.1.4 released.

I hope this release will help you to wait for 2.2.0 without any issue on vBulletin 4.2 :)

Thanks for the update! :)

Christos Teriakis 11-21-2012 11:39 AM

Quote:

Originally Posted by metalguy639 (Post 2383012)
Thanks for the update! :)

Hello,

Trying a fresh install I'm getting error importing the product xml file:
Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

                INSERT IGNORE INTO final_cms_widgettype
                        (class, packageid)
                VALUES
                        ('RecentPTIssues', ),
                        ('RecentPTComments', );

MySQL Error  : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '),
                        ('RecentPTComments', )' at line 4

Chris

Neptun 11-21-2012 12:57 PM

Dear all,

is there a possibility to link this hack with vbseo activ ?
Has anybody maybe an idea or has allready done this ?!

Thank you very much in advance :)

PitchouneN64ngc 11-21-2012 04:42 PM

Quote:

Originally Posted by ChrisTERiS (Post 2383277)
Hello,

Trying a fresh install I'm getting error importing the product xml file:
Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

                INSERT IGNORE INTO final_cms_widgettype
                        (class, packageid)
                VALUES
                        ('RecentPTIssues', ),
                        ('RecentPTComments', );

MySQL Error  : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '),
                        ('RecentPTComments', )' at line 4

Chris

I'll check what is wrong. vBCMS is installed? Enabled? Before it runs this query, it checks if the vBCMS product file exists. :)

Quote:

Originally Posted by Neptun (Post 2383290)
Dear all,

is there a possibility to link this hack with vbseo activ ?
Has anybody maybe an idea or has allready done this ?!

Thank you very much in advance :)

I don't have any vBSEO licence to check. BTW, Project Tools 2.2.0 will have vB4 Friendly URLs.

Christos Teriakis 11-21-2012 06:42 PM

Quote:

Originally Posted by PitchouneN64ngc (Post 2383405)
I'll check what is wrong. vBCMS is installed? Enabled? Before it runs this query, it checks if the vBCMS product file exists. :)



I don't have any vBSEO licence to check. BTW, Project Tools 2.2.0 will have vB4 Friendly URLs.

CMS files exist, but product disabled. If I enable it just for installation and then disable it again should be any problem on operation?

Thank you
Chris

PitchouneN64ngc 11-21-2012 07:21 PM

It should be, but I'll add another check into the product to avoid your issue :)

Christos Teriakis 11-21-2012 07:31 PM

Quote:

Originally Posted by PitchouneN64ngc (Post 2383466)
It should be, but I'll add another check into the product to avoid your issue :)

Take your time. It's not that big issue if I've CMS active.

Thank you
Chris

KGodel 11-30-2012 03:45 AM

Perhaps I am missing something, but is there "can view replies" permission?

PitchouneN64ngc 12-01-2012 05:42 PM

There is no "Can view replies" actually, but it could be a good improvement request, I'll add it in our tracker :)

kalilo81 01-16-2013 01:03 PM

How can I Modify Attachment Types in Project Tools? I have added other files extensions in my forum Attachment Manager, but I can not see them in the PT.

Hostboard 01-16-2013 02:23 PM

Quote:

Originally Posted by kalilo81 (Post 2397272)
How can I Modify Attachment Types in Project Tools? I have added other files extensions in my forum Attachment Manager, but I can not see them in the PT.

ACP > Settings > Project Tools Options > Allowed Issue Attachment Extensions

DSemen 02-01-2013 11:53 AM

Will the Project Tools Open Source 2.1.4 - vb 4.1.3?

PitchouneN64ngc 02-01-2013 02:20 PM

vB 4.1.4 minimum due to editor changes.

DSemen 02-01-2013 02:47 PM

Thanks, changed the installer to 4.1.3 - works fine. Do not plan on the Russian localization?

PitchouneN64ngc 02-01-2013 02:51 PM

I would like to add any localization on the dev repo SVN but it's a bit break, I need to poke Paul about this to continue to dev on Project Tools and adding languages.

DSemen 02-01-2013 03:26 PM

Please delete the post


All times are GMT. The time now is 01:02 PM.

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.01709 seconds
  • Memory Usage 1,880KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (15)bbcode_code_printable
  • (20)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete