vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - DownloadsII Create New Thread Add-On (https://vborg.vbsupport.ru/showthread.php?t=130995)

kevcj 09-22-2007 02:43 AM

This add-on make a great mod just that much better. Thank you!!!

Alphawolf83 10-06-2007 06:45 PM

Quote:

Originally Posted by rainyleaves (Post 1305885)
Thanks, CyberRanger.
Very useful mod.

I installed Downloads2 5.0.4 with VB3.6.8.

I have little problem.
My thread have some strange code.
Thanks.

You have to disable "Template name output" in vbulletin Setting> General.

yoyoyoyo 10-10-2007 09:50 AM

excellent - works as advertised in 3.6.8

gwerzal 10-15-2007 03:03 PM

Hi i have uploaded the mod as per the instructions. I have set which forums i want the threads started in but no threads are being created.

I am using the latest version of vbulletin.

Any ideas why

Ben

Daky 10-16-2007 09:44 PM

can i at least know why my questions are not answered yet?
even in downloadII thread.
thank you

gwerzal 10-18-2007 02:13 PM

Quote:

Originally Posted by gwerzal (Post 1360793)
Hi i have uploaded the mod as per the instructions. I have set which forums i want the threads started in but no threads are being created.

I am using the latest version of vbulletin.

Any ideas why

Ben

Got this sorted thanks.

CyberRanger 10-19-2007 03:58 AM

Quote:

Originally Posted by gwerzal (Post 1363075)
Got this sorted thanks.

Be helpful if you could explain how you fixed the problem. Others may have the same situation. :)

unitedbreaks 11-01-2007 04:54 AM

Excellent mod, just one issue..

I primarily import files to DownloadsII.. When I import files, no threads are being created?

Anyone else having this issue?

CyberRanger 11-02-2007 02:42 AM

Quote:

Originally Posted by unitedbreaks (Post 1373225)
Excellent mod, just one issue..

I primarily import files to DownloadsII.. When I import files, no threads are being created?

Anyone else having this issue?

Yes, that is an issue. Currently, this only works if the files are added normally. Imported files will not create a thread.

anarx 12-16-2007 10:40 AM

Is it possible to change the place where the Link to "Thread discussion" appears? E.g. under "Author" or "Grade" but not inside of the description.

I looked for the code in the Template downloads_file and downloads_file_addit but I could not find it.

*HELP* ;)

cosy 12-19-2007 03:44 PM

my error when i try to put a link or upload a file whit this add-on enabled
is this because old php ? not for php 5?

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of fetch_foruminfo(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /......downloads.php(1392) : eval()'d code on line 65

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of fetch_foruminfo(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /......downloads.php(1392) : eval()'d code on line 67

sokol 01-28-2008 07:31 PM

I am having the same issues as others with Vb:3.6.8 pl2.

When I add a download, it does not create the forum.
I have previously used this on older versions and it worked fine.

Any ideas how to fix it?

~Sokol

Humayun1 01-29-2008 12:24 PM

Hello

I have uploaded all the files and have imported the product and everything seems fine till this stage but the problem is that i am unable to complete 4th task of installation phase "# Be sure to set the usergroup permissions!"; i created a new forum for download section but don't know how to make all new threads to be posted in this forum; i mean i can't see any such settings to do so.

Thanks in advance

CyberRanger 01-30-2008 11:05 AM

Quote:

Originally Posted by Humayun1 (Post 1431639)
Hello

I have uploaded all the files and have imported the product and everything seems fine till this stage but the problem is that i am unable to complete 4th task of installation phase "# Be sure to set the usergroup permissions!";

This is under your usergroup settings. Usergroups -> Usergroup Manager. Select the group you want to give permissions for then look for the "DownloadsII Create Thread Permissions" (see attached pic)

Quote:

Originally Posted by Humayun1 (Post 1431639)
i created a new forum for download section but don't know how to make all new threads to be posted in this forum; i mean i can't see any such settings to do so.

You have to configure the settings in admincp under "Downloads - Create Threads" (see second image)

CyberRanger 01-30-2008 11:22 AM

Quote:

Originally Posted by cosy (Post 1404715)
my error when i try to put a link or upload a file whit this add-on enabled
is this because old php ? not for php 5?

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of fetch_foruminfo(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /......downloads.php(1392) : eval()'d code on line 65

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of fetch_foruminfo(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /......downloads.php(1392) : eval()'d code on line 67

Look for the code below in plugins "DownloadsII Create Thread on Edit" and "DownloadsII Create Thread on Add" (admincp -> Plugins & Products -> Plugin Manager)

PHP Code:

    if ($cat['dl_forumid_cat'] > 0)
    {
        
$foruminfo fetch_foruminfo(&$cat['dl_forumid_cat'], 1);
    } else {
        
$foruminfo fetch_foruminfo(&$globalforum['downloadsIIforumid'], 1);
    } 

remove the & in after "fetch_foruminfo(" so you have:

PHP Code:

    if ($cat['dl_forumid_cat'] > 0)
    {
        
$foruminfo fetch_foruminfo($cat['dl_forumid_cat'], 1);
    } else {
        
$foruminfo fetch_foruminfo($globalforum['downloadsIIforumid'], 1);
    } 


CyberRanger 01-30-2008 11:25 AM

Quote:

Originally Posted by sokol (Post 1431110)
I am having the same issues as others with Vb:3.6.8 pl2.

When I add a download, it does not create the forum.
I have previously used this on older versions and it worked fine.

Any ideas how to fix it?

~Sokol

It works fine in vb3.6.8 pl2. Check your usergroup settings and the settings for where to create the thread. See - https://vborg.vbsupport.ru/showpost....&postcount=134

Aceman 01-31-2008 02:59 AM

Ok.. I have the following problem:

No Thread is being created in the forum I've specified by a specified user.

1. I checked the usergroup for "modelbot" which is set to NewCaster.
2. I checked to ensure that "NewCaster" has permission to create threads in the specified forum AND that the usergroup has "Can Create threads on upload" set to YES on the usergroup edit page.
3. The forum is turned on.
4. I uploaded a test file to the system, no thread is created in the forum, and no link is visible in the description of the file I uploaded.

Any Suggestions? I've even edited each category and set the exact forum they need to go into (all into 1 forum btw).

CyberRanger 01-31-2008 03:22 AM

Quote:

Originally Posted by Aceman (Post 1432878)
Ok.. I have the following problem:

No Thread is being created in the forum I've specified by a specified user.

1. I checked the usergroup for "modelbot" which is set to NewCaster.
2. I checked to ensure that "NewCaster" has permission to create threads in the specified forum AND that the usergroup has "Can Create threads on upload" set to YES on the usergroup edit page.
3. The forum is turned on.
4. I uploaded a test file to the system, no thread is created in the forum, and no link is visible in the description of the file I uploaded.

Any Suggestions? I've even edited each category and set the exact forum they need to go into (all into 1 forum btw).

PM me your forum info including a vb admin login and I'll check it out.

sokol 02-05-2008 09:00 PM

Quote:

It works fine in vb3.6.8 pl2. Check your usergroup settings and the settings for where to create the thread. See - https://vborg.vbsupport.ru/showp...&postcount=134
Doh! sorry I forgot this step. My appologies.

~Sokol

skrazydogz 02-09-2008 06:23 AM

I have the following mistake.

When I upload a file in Downloads2 is it without moderate.
But the Thread which is make in forum I must moderate before all can see the thread.

I have checked all permissions but I dont find a mistake.

Please help me...

Humayun1 02-25-2008 02:46 AM

Quote:

Originally Posted by CyberRanger (Post 1432383)
This is under your usergroup settings. Usergroups -> Usergroup Manager. Select the group you want to give permissions for then look for the "DownloadsII Create Thread Permissions" (see attached pic)

You have to configure the settings in admincp under "Downloads - Create Threads" (see second image)


Hello

I have followed the steps you have mentioned. Have created a global forum for newly created threads. Have set the settings under admin control panel for downloadII create thread. And have assigned Administrator group permissions like adding files to download section. But still no thread is created automatically in the forum i have specified. I have attached some snapshots with this reply; can you please check it and let me know where i have done some mistakes.

Thanks

Humayun1 02-25-2008 03:45 AM

Hello

Sorry i missed downloadII create thread permission; it was at the bottom. Now this feature is working excellent with me.

Thanks very much for adding such a nice feature.

KenDude 02-26-2008 07:15 AM

One thing I noticed is that if I include an image with IMG tags during upload it appears in the forum thread.

If I upload a file that has no permissions to create a thread or was a pre-existing file and then I edit it for the FIRST TIME and include an image tag it shows up.

However, if I edit the file and don't include an image, then go back later and include an image on a subsequent edit the image does NOT show up.

Small bug...

KenDude 02-26-2008 07:17 AM

One other small bug, if someone else uploaded the file (prior to this mod) and then I edit the file causing a thread to be created, it creates the thread from me, not from the original uploader. It should check to see if this is a pre-existing file that is being edited IMHO, again minor bug and situational for those who have files before implementing this mod.

dancue 02-29-2008 03:19 AM

First of all, this is a great mod. Thank you to CyberRanger for all of the support he has given.

Second, I ran into the same problem many people are running into now and was able to resolve it. I was not getting the controls on the left side of the AdminCP. I just reinstalled the .xml file (clicked on overwrite) and then refreshed. It appeared and everything worked fine.

If I had to make a recommendation for the next update I would like to see the comments made under downloads.php to be added to the new thread as a reply.

Thanks again CyberRanger!

molieman 03-01-2008 04:01 PM

Anybody using this with 3.7 beta 5?

Or just plain 3.7 :)

masterweb 03-01-2008 06:41 PM

Installed on a 3.6.8 board and working fine!

Quote:

Originally Posted by molieman (Post 1454469)
Anybody using this with 3.7 beta 5?

Or just plain 3.7 :)


molieman 03-01-2008 07:07 PM

Quote:

Originally Posted by masterweb (Post 1454590)
Installed on a 3.6.8 board and working fine!

It's working on my 3.6.8 fantastically too... BUT, I want to know if it will work with 3.7 :D

bainsey 03-01-2008 07:35 PM

I get this ...

Database error in vBulletin 3.6.8:

Invalid SQL:
SHOW COLUMNS FROM `dl_main` LIKE 'downloadsIIforumid';

MySQL Error : Table 'ff_forum.dl_main' doesn't exist
Error Number : 1146
Date : Saturday, March 1st 2008 @ 03:34:18 PM
Script : http://football-forever.com/forum/ad...=productimport
Referrer : http://football-forever.com/forum/ad...?do=productadd
IP Address : 86.16.253.251
Username : Bainsey
Classname : vb_database

dancue 03-02-2008 04:03 AM

Quote:

I would like to see the comments made under downloads.php to be added to the new thread as a reply.
Would this be an easy thing to do? And do the posts made under downloads.php add to the post count of the forum?

logofreax 03-02-2008 07:38 AM

Great Hack *clickinstall*

So we can uninstall the old PN Notification.

But I have one question.

How can I make it, that this Threads will not be set to moderated?

I dont find it out :(

Every Thread will be started at my Name. I am Admin an every Time they are to be moderated.

Sorry for my Englisch. Schools so long ago :D

cu
logofreax

gwerzal 04-02-2008 09:33 AM

Hi

I need to work with vb 3.7 as well if anyone knows how to get it to work

gwerzal 04-07-2008 10:48 AM

Has anyone got it working for vb 3.7

gwerzal 04-08-2008 09:47 AM

If anyone can get it working with 3.7 i will gladly pay them as i really need this to work if possible.

gwerzal 04-16-2008 11:02 AM

Are there any plans to make this work with 3.7

Sorry for keep asking but i need to know.

If there are then i will wait but if there are not plans to make it work with 3.7 i will need to think of something else to use.

As long as i no i can get on with it.

Hoping for a quick reply.

Thank you

molieman 04-16-2008 11:17 AM

Didn't know it wasn't supposed to work with 3.7 I've been running it with 3.7 without any problems.

gwerzal 04-17-2008 09:23 AM

Are you talking about the downloads module or this module that creates a new thread when a download is added.

When the create thread mod is enabled all i get is lots of error messages when deleting posts, editing downloads etc.

Can anyone help with thsi and has anybody got this create thread thing working on vb 3.7

gwerzal 04-28-2008 09:19 PM

Can the please just tell me if this is ever going to work for vb 3.7

I dont mind waiting but i need to know

kevcj 04-28-2008 10:56 PM

Quote:

Originally Posted by gwerzal (Post 1501794)
Can the please just tell me if this is ever going to work for vb 3.7

I dont mind waiting but i need to know

It works fine on my 3.7 RC3 site.

gwerzal 05-09-2008 09:46 AM

Can someone please confirm that this mod works on vb3.7 and if it does i will pay someone to get it working.


All times are GMT. The time now is 05:50 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.01533 seconds
  • Memory Usage 1,845KB
  • 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
  • (2)bbcode_php_printable
  • (15)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