vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Multimedia Upload (https://vborg.vbsupport.ru/showthread.php?t=72060)

Moya 01-16-2005 01:15 AM

The correct syntax should be
PHP Code:

 if (!in_array($bbuserinfo['usergroupid'], array(5,6,7,9))) 

Where 5,6,7,9 are your usergroup id. Keep $bbuserinfo['usergroupid'] the same

pelican 01-16-2005 05:28 AM

i think this is a nice hack if the 2 upload/download are bundle together and the files are not stored in public directory that cannot be accessed directly except through vbulletin.

Basit 01-23-2005 12:02 AM

Hi Stitch,

I installed it successfully, but have some problems. When I upload any .mp3, ram, wmv or .wma file it get uploaded withtout any problem. when I try to uploda .rm , files it give me fillowing error message

Warning: fclose(): 19 is not a valid stream resource in /home/mysite/public_html/vbb/songloadersforvbnew.php on line 214

I have checked it does upload the actual file but no file generated under meta directory.. Any idea how can I solve this problem ?

In addition is it possible to to upload media files like .mpeg, .mov, wav, mpg etc.,

Regards,
Basit

KevinL 04-22-2005 03:36 AM

Quote:

Originally Posted by frostr1
is there anyway someone can show me an example of what a real songloadersforvb.php looks like? I installed it and it does not work, plus what does this mean? "$metaurl="http://localhost/vbb/musicmeta/" ;
$metadir="c:/vbb/musicmeta/";"

thanks

Yeah Im stuck on that also.

I have everything working except when I try to upload a file it says it cant do it. I think they may be the reason.

Please help.

Moya 04-22-2005 06:09 AM

what is your platform?

If it is IIS then $metaurl="http://www.yourdomain.com/forum/musicmetadirectoryname/
$metadir="c:/forum/musicmetadirectoryname/"

Moya 04-22-2005 06:17 AM

Quote:

Originally Posted by Basit
Hi Stitch,

I installed it successfully, but have some problems. When I upload any .mp3, ram, wmv or .wma file it get uploaded withtout any problem. when I try to uploda .rm , files it give me fillowing error message

Warning: fclose(): 19 is not a valid stream resource in /home/mysite/public_html/vbb/songloadersforvbnew.php on line 214

I have checked it does upload the actual file but no file generated under meta directory.. Any idea how can I solve this problem ?


In addition is it possible to to upload media files like .mpeg, .mov, wav, mpg etc.,


Regards,
Basit

Hi Basit

Please download the songloader file again. I fix the problem.

As for various file type, you can upload the file but I will have to do a research on the appropriate meta tag for each extension.

Can you list the media file type for me? I will get back to you on this one

KevinL 04-22-2005 12:01 PM

Quote:

Originally Posted by stitch
what is your platform?

If it is IIS then $metaurl="http://www.yourdomain.com/forum/musicmetadirectoryname/
$metadir="c:/forum/musicmetadirectoryname/"

It's Linux, Apache. I put your quick fix in that was in this thread also.

I get the pop up box and everything but it just says it couldn't upload.

It's got me so confused :ermm:

I think this is great and I really want it to work.

Thanks for the reply.

Ghanem 04-30-2005 03:25 PM

Hi,

I have the same problem..

My uploadin folder www.la7odood.com/vb/upload/0405

I have apache, and have put:
/home/la7odood/public_html/vb/upload/0405

but still it did not work..
always get the error:
Couldn't Upload File.

any Idea what could be wrong?

Regards,

Moya 05-01-2005 06:39 PM

Hi Kevin and unicorn,

I am a little bit rusty with apache. I will get back to you on this

thanks

Ghanem 05-01-2005 07:40 PM

Thank you stitch..

I hope you can fix the next cos its working fine with other ext...
I am using the attached file code to upload other files and could not use it to upload ram, rm, wmv. mp3 extensions although I added the correct mime to the list $types..

I used this site to get the mime:
http://www.filext.com/

this is the code of uploader.php:

PHP Code:

 <?php 
require_once('./global.php'); 
//========================================
// | uploading center properties |
//========================================
$path "upload/0505"// uploading folder
$size "3000000"// file seize in byte
$types = array("application/x-zip-compressed""application/x-rar-compressed""application/x-shockwave-flash""text/plain""image/gif""image/jpeg""image/png""image/pjpeg"); // file ext
// <!-- .zip --> <!-- .rar --> <!-- .swf --> <!--.txt--> <!--.gif--> <!--.jpg--> <!--.png-->
//========================================
eval('$navbar = "' fetch_template('navbar') . '";');
 
if ( [
PH P]%4$s[/PH PREQUEST['do'] == "") {
eval(
'print_output("' fetch_template('uploader') . '");');
}
if ( [
PH P]%4$s[/PH PREQUEST['do'] == "doupload") {
 
if (
$file_name == "")
// file name check
$msg "you did not chose a file";
// file name check
elseif (file_exists("./$path/$file_name"))
// file exist check
$msg "file allready exist plz chahnge the name";
// file exist check
elseif (!in_array("$file_type"$types))
// file ext check
$msg "extention not allowed<br>your file extenstion : $file_type";
// file ext check
elseif ($file_size >$size)
// file size check
$msg "file is larger than allowed : $size بايت <br>file size you uploaded : $file_size";
// check file size
else
{
$msg "file uploaded sucsessfuly <br> <a href=\"$vboptions[bburl]/$path/$file_name\">$vboptions[bburl]/$path/$file_name</a>";
copy($file"$path/$file_name");
}
eval(
'print_output("' fetch_template('uploader_msg') . '");');
}
 
//############################################################################
//# uploader center #
//# fnan4arab #
//# : PHPvillage.com #
//############################################################################
?>

Regards


All times are GMT. The time now is 12:18 AM.

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.01312 seconds
  • Memory Usage 1,765KB
  • 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
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (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