vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Major Additions - Links and Downloads Manager (https://vborg.vbsupport.ru/showthread.php?t=166094)

AndrewD 09-25-2008 06:45 PM

Quote:

Originally Posted by vbboarder (Post 1630200)
Sorry, I wasn't detailed about exactly where the SQL error occurred. After saving the setting (ie: to "Hits 30 days"), go and view a single entry that is played in an embedded player. (ie: local_links.php?action=play....). On that page, instead of listing the Hits, it shows the SQL error:

Andrew, are you able to reproduce that error?

yes, and I've fixed it in in the upcoming code. I'm working on your other suggestions :)

AndrewD 09-25-2008 06:56 PM

I've just been debugging a problem for a site which has set up multiple usergroups and given people membership of these as their primary and secondary usergroups. Depending on how this is set up, there can be unexpected consequences within LDM.

LDM
- gives users the most liberal permission based on *any* of their usergroups.
- gives users download allowances based on their *primary* usergroup.

Suppose usergroup 'FullyRegistered' has an allowance of 10 files a day and usergroup 'Registered' an allowance of 5 files a day.
- Someone who is a member of both usergroups with primary member of Registered will be allowed 5 files/day
- Someone who is a member of both with primary member of FullyRegistered will be allowed 10 files/day

However, suppose 'FullyRegistered' is also given *can_bypass_hit_recording* permission.
- All users who have FullyRegistered as their primary or secondary usergroup will gain this permission
- Consequently, their accesses will not be recorded
- Consequently, they will never exceed their allowances.

Questions:
- Is this what you would expect to happen?
- Should users be given allowances based on their primary group or the most liberal of their primary and secondary groups?

DF08Said 09-25-2008 07:08 PM

m8 what Exactly does this do... u can uplaod and Download Stuff like Piratebay etc..?

vbboarder 09-25-2008 07:54 PM

Re: multiple usergroups & can_bypass permissions

I think your 3 can_bypass permissions (hit_recording, bandwidth_limits, forumperms) are like a tertiary level of access control. To prevent the permissions dilemma that you're debugging, I think you should remove those permissions from usergroups and make them specific to listed users (ie: userids, usernames). These liberal permissions should then override the usergroup permissions for any listed users who have those permissions.
Users can configure their desired access control for usergroups without using these 3 can_bypass permissions by editing Forum Permissions, LDM Permissions, and LDM Allowances. The only possible loss functionality that I see is the can_bypass_hit_recording for the Guest group. To compensate, you can provide an option to activate that setting for the Guest group, but guests will then have either no or unlimited download/ upload limits (depending on the settings in LDM Allowances).

7lanet 09-26-2008 01:26 AM

Quote:

Possible inconsistencies between LDM and its environment
- Parameter upload_enabled is enabled but parameter upload_dir is not set
- allow_url_fopen is off and cURL is not available in php.ini file - Remote downloads not available

- upload_max_filesize 2M >= post_max_size 2048k in php.ini file - Large uploads may fail without warning
:(:(:(

abdelghani68 09-26-2008 03:18 AM

Quote:

Originally Posted by vbboarder (Post 1629694)
.
I will try to save you some time, Andrew. Feel free to correct me if I'm wrong. It's a 2 steps process - you do not need to do the 2nd step IF you have not added any media entries after installing the ID3 tags extra plugin.

Step 1: Find LDM - Interpret ID3 tags (ldm_addlink_preinsert) in the Plugin Manager. Click that link and and find variables looking like "$entitytags['title']" and change the word inside the bracket to whatever you want. Make sure that your new word is enclosed with single quotes, like so $entitytags['myTitle']. DO NOT change the words of any other variable, otherwise the plugin code will not work and you'll get errors!

Step 2 (if you added entries after installing the ID3 tags plugin): You must manually edit the local_linksentities table and change the names in the entityname column. Make sure to backup the table first in case you'll do something wrong and need to restore your original table.

Hope that helps ;)

thanks very mush

AndrewD 09-26-2008 03:48 AM

Quote:

Originally Posted by DF08Said (Post 1630301)
m8 what Exactly does this do... u can uplaod and Download Stuff like Piratebay etc..?

It's explained in the wiki. Yes, it's a general purpose tool for managing files, links, uploads and downloads.

abdelghani68 09-26-2008 03:56 AM

I have do the modification, added an audio, but the title don't change. I have do this modification :

Code:

if (array_key_exists('id3v2', $ThisFileInfo['tags'])) {
                                        $entitytags['Piste'] = $ThisFileInfo['tags']['id3v2']['title'][0];
                                        $entitytags[Auteur'] = $ThisFileInfo['tags']['id3v2']['artist'][0];
                                        $entitytags['Th?me'] = $ThisFileInfo['tags']['id3v2']['album'][0];
                                        $entitytags['Genre'] = $ThisFileInfo['tags']['id3v2']['genre'][0];
                                        $entitytags['Year'] = $ThisFileInfo['tags']['id3v2']['year'][0];
                                }
                                elseif (array_key_exists('id3v1', $ThisFileInfo['tags'])) {
                                        $entitytags['Piste'] = $ThisFileInfo['tags']['id3v1']['title'][0];
                                        $entitytags['Auteur'] = $ThisFileInfo['tags']['id3v1']['artist'][0];
                                        $entitytags['Th?me'] = $ThisFileInfo['tags']['id3v1']['album'][0];
                                        $entitytags['Genre'] = $ThisFileInfo['tags']['id3v1']['genre'][0];
                                        $entitytags['Year'] = $ThisFileInfo['tags']['id3v1']['year'][0];
                                }
                                if (array_key_exists('playtime_string', $ThisFileInfo)) {
                                        $entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
                                }
                        }
                        break;

                case 'wma':
                        $FileName = ldm_cleanto_fopen($linkurl);
                        $getID3 = new getID3;
                        $ThisFileInfo = $getID3->analyze($FileName);
                        if (array_key_exists('playtime_string', $ThisFileInfo)) {
                                $entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
                        }
                        break;

                case 'jpg':
                case 'jpeg':
                        $FileName = ldm_cleanto_fopen($linkurl);
                        $getID3 = new getID3;
                        $ThisFileInfo = $getID3->analyze($FileName);
                        if (array_key_exists('jpg', $ThisFileInfo)) {
                                $entitytags['DateTime'] = $ThisFileInfo['jpg']['exif']['IFD0']['DateTime'];
                                $entitytags['Height'] = $ThisFileInfo['jpg']['exif']['COMPUTED']['Height'];
                                $entitytags['Width'] = $ThisFileInfo['jpg']['exif']['COMPUTED']['Width'];
                        }
                        break;

                case 'avi':
                case 'flv':
                case 'mpg':
                case 'mpeg':
                case 'mov':
                case 'rm':
                        $FileName = ldm_cleanto_fopen($linkurl);
                        $getID3 = new getID3;
                        $ThisFileInfo = $getID3->analyze($FileName);
                        if (array_key_exists('playtime_string', $ThisFileInfo)) {
                                $entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
                        }
                        if (isset($ThisFileInfo["video"]["resolution_x"])) {
                                $entitytags['Height'] = $ThisFileInfo['video']['resolution_y'];
                                $entitytags['Width'] = $ThisFileInfo['video']['resolution_x'];
                        }
                        break;

                case 'asf':
                case 'wmv':
                        $FileName = ldm_cleanto_fopen($linkurl);
                        $getID3 = new getID3;
                        $ThisFileInfo = $getID3->analyze($FileName);
                        if (array_key_exists('playtime_string', $ThisFileInfo)) {
                                $entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
                        }
                        if (isset($ThisFileInfo["video"]["streams"])) {
                                foreach ($ThisFileInfo["video"]["streams"] as $thisstream) {
                                        if (isset($thisstream['resolution_x'])) {
                                                $entitytags['Height'] = $thisstream['resolution_y'];
                                                $entitytags['Width'] = $thisstream['resolution_x'];
                                                break;
                                        }
                                }
                        }
                        break;
                }

                if (count($entitytags)) {
                        require_once(DIR . '/includes/local_links_entities.php');
                }

                foreach ($entitytags as $entityname=>$entityvalue) {

                        $entityexists = 0;
                        $entitygroup = ($links_defaults['id3tag_enhance_group'] ? $links_defaults['id3tag_enhance_group'] : ID3ENTITYGROUP);
                        ldm_define_entity($entityname, $entitygroup, ENTITY_TYPE_TEXT, 1);
                        if (is_array($linkentities)) {
                                foreach ($linkentities as $thisentity) {
                                        if ($thisentity['entityname']==$entityname and $thisentity['entityset']) {
                                                $entityexists = 1; // User entry takes priority
                                                break;
                                        }
                                }
                        }
                        if (!$entityexists) {
                                $linkentities[] = array('entityname'=>$entityname, 'entityvalue'=>$entityvalue, 'entityset'=>1);
                        }
                }

        }

}


AndrewD 09-26-2008 03:58 AM

Quote:

Originally Posted by 7lanet (Post 1630526)
Possible inconsistencies between LDM and its environment
- Parameter upload_enabled is enabled but parameter upload_dir is not set

You have turned on the LDM admin setting *upload_enabled* but you have not set *upload_dir*, so LDM doesn't know where you want to store uploaded files. You have to tell it.

Quote:

Originally Posted by 7lanet (Post 1630526)
- allow_url_fopen is off and cURL is not available in php.ini file - Remote downloads not available

*allow_url_fopen* is a control setting for php on your web server, in the php configuration file *php.ini*. Your site admin has set up your server so that php cannot use one of the standard ways of accessing remote files.

*cURL* is an addon library for your web server. It provides another (better) way to access remote files. Your web admin has not installed it.

Consequently, LDM cannot *manage* remote downloads - it can only manage *local* downloads. A *local* download is physically stored on your server (either an upload or a file with no url in its name). A *remote* download is a file accessed via a full url.

Quote:

Originally Posted by 7lanet (Post 1630526)
- upload_max_filesize 2M >= post_max_size 2048k in php.ini file - Large uploads may fail without warning

These are two more settings that control php's handling of uploads, also found in the php configuration file *php.ini*. They specify the maximum amount of data that can be uploaded in one go. It is good practice (but not essential) that *post_max_size* has a bigger value than *upload_max_filesize*. Otherwise, when a user tries to upload file that is bigger than *post_max_size*, some versions of php will fail to generate an error message.

abdelghani68 09-26-2008 03:02 PM

Quote:

Originally Posted by abdelghani68 (Post 1630590)
I have do the modification, added an audio, but the title don't change.

Sorry, it works !


All times are GMT. The time now is 07:27 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.05825 seconds
  • Memory Usage 1,800KB
  • 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
  • (1)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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