Page 7 of 13 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 127

Thread: Enable Upload Progress Bar

  1. #61
    Join Date
    Jul 2007
    Posts
    115

    Default

    Quote Originally Posted by grynmoors
    karlmay, try uploading in ASCII mode instead of binary and see if that doesn't help. I was having issues till I uploaded in ASCII and set it to 755, after that it worked fine.
    Thanks grynmoors, I already tried this before :(

    Probably its a host side issue i have, ill contact my host admin to see what they can do.

  2. #62
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default

    Make sure y'all have the right settings in the uu_default_config.pm Open it and double check...one small thing out of place and it will explode.

    Try uploading in ASCII and chmod to 755. All these things worked for me, hopefully they will for you too.
    If it's not fun, stop doing it!

  3. #63
    Join Date
    Jul 2007
    Posts
    115

    Default

    didnt workded, now when i enable the progress bar it gives me this error message instead: ERROR: Failed to load default config file uu_default_config.pm

    This is my uu_default_config file, everythings seems fine:

    package uu_default_config;
    use strict;
    use Exporter;

    @uu_default_config::ISA = qw( Exporter );
    @uu_default_config::EXPORT = qw($config);

    use vars qw($config);

    $config = {
    config_file_name => 'uu_default_config',
    temp_dir => '/home/worldads/public_html/templates_c/',
    upload_dir => '/home/worldads/public_html/video/',
    unique_upload_dir => 0,
    unique_upload_dir_length => 16,
    unique_file_name => 0,
    unique_file_name_length => 16,
    max_upload => 20971520000,
    overwrite_existing_files => 0,
    redirect_after_upload => 1,
    redirect_url => 'http://worldadstv.com/upload.php',
    redirect_using_js_html => 1,
    redirect_using_html => 0,
    redirect_using_js => 0,
    redirect_using_location => 0,
    delete_param_file => 1,
    get_data_speed => 1000,
    disallow_extensions => '(sh|php|php3|php4|php5|py|shtml|phtml|cgi|pl|plx| htaccess|htpasswd)',
    allow_extensions => '(3gp)|(mp4)|(mov)|(asf)|(avi)|(flv)|(wmv)|(mpg)|( mpeg)|(mpeg4)|(xvid)|(divx)|(3gpp)',
    normalize_file_names => 1,
    normalize_file_delimiter => '_',
    normalize_file_length => 32,
    link_to_upload => 1,
    path_to_upload => 'http://worldadstv.com/video/',
    send_email_on_upload => 0,
    html_email_support => 0,
    link_to_upload_in_email => 0,
    email_subject => 'Uber File Upload',
    to_email_address => '[email protected],[email protected]',
    from_email_address => '[email protected]
    };

    1;
    And on my config.php file, i have the same url as the uu_default_config file.

  4. #64
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default

    Don't now if this would affect anything but the "to" email isn't set. Admin?

    I just had a problem with the progress bar for the first time. It sat there saying "initializing progress bar" for a long time and then it said

    Error: 12002 Unknown

    What would cause that?(however it did continue on to the uu_upload.pl)
    If it's not fun, stop doing it!

  5. #65

    Default

    Quote Originally Posted by matrix_france
    Dear admin or any other user ,
    i need your help to resolve my problem.

    I fallow all instructions to install the progress bar but when i upload a video im gettion a Error: 404 Not Found error.

    here the screen of the problem :


    how can i resolve this problem please.

    It's wired it seems to be blocked (the CGI-BIN folder) i can't accec it throu the web browser it says me that i don't have permissions to go in side.
    but i ve given 777 ...

    any idea please ??? is there any setting to do in Cpanel to active CGI folder ??
    Theres no one who can help me to resolve this problem ??

  6. #66

    Default

    My problem is as follows:

    i have installed fresh 2.4 and activated progress bar.
    it works on dedicated server under debian etch through vhost.
    the perl-script seems to be called, as it is shown in status.

    VShare monitors: Initializing Progress Bar ...
    but the progress bar never appears
    video is uploadin and convertig fine


    this is the script of the file : uu_default_config.pm

    package uu_default_config;
    use strict;
    use Exporter;

    @uu_default_config::ISA = qw( Exporter );
    @uu_default_config::EXPORT = qw($config);

    use vars qw($config);

    $config = {
    config_file_name => 'uu_default_config',
    temp_dir => '/ptbw/templates_c/',
    upload_dir => '/ptbw/video/',
    unique_upload_dir => 0,
    unique_upload_dir_length => 16,
    unique_file_name => 0,
    unique_file_name_length => 16,
    max_upload => 20971520000,
    overwrite_existing_files => 0,
    redirect_after_upload => 1,
    redirect_url => 'http://xxxxxxxx.com/upload.php',
    redirect_using_js_html => 1,
    redirect_using_html => 0,
    redirect_using_js => 0,
    redirect_using_location => 0,
    delete_param_file => 1,
    get_data_speed => 1000,
    disallow_extensions => '(sh|php|php3|php4|php5|py|shtml|phtml|cgi|pl|plx| htaccess|htpasswd)',
    allow_extensions => '(3gp)|(mp4)|(mov)|(asf)|(avi)|(flv)|(wmv)|(mpg)|( mpeg)|(mpeg4)|(xvid)|(divx)|(3gpp)',
    normalize_file_names => 1,
    normalize_file_delimiter => '_',
    normalize_file_length => 32,
    link_to_upload => 1,
    path_to_upload => 'http://xxxxxxxx.com/video/',
    send_email_on_upload => 0,
    html_email_support => 0,
    link_to_upload_in_email => 0,
    email_subject => 'Uber File Upload',
    to_email_address => '[email protected],[email protected]',
    from_email_address => '[email protected]',
    };

    1;

    i have tryed out multiple combinations... upload as ASCII/binary

    uu_default_config.pm
    uu_ini_status.pl
    uu_lib.pm
    uu_upload.pl

    chmod: 655. 666. 755. 777

    i worked through the postings more than once, but cant figure out the issue.

  7. #67

    Default

    Quote Originally Posted by grynmoors
    turtle, i don't know what is meant by using plesk control panel...are you not uploading the files with FTP and doing the chmod thing? If not, can you?
    I was just stating that i'm not using cpanel in case that was the root of my problem. I uploaded all files in binary using ftp...and chmod'ed them all. The progress bar worked when I first installed, but now it doesn't. I just don't understand what could have changed. It is frustrating because now I get no status or bar. If admin could try uploading a vid and tell me what is going on I would really appreciate it!
    http://coldblooded.tv
    Show off your reptiles!

  8. #68

    Default

    Quote Originally Posted by admin
    Quote Originally Posted by zeffer
    Plesk has proved to be a real pain in the arse. It seems to be some problem with the url part example home/username/public_html/video cpanels url but plesks is dodgy. Dunno why it causes it though.
    Plesk is not good as Cpanel, Godaddy provide it with VPS.

    The path is some thing like

    /var/www/vhosts/yourdomains.extn/httpdocs/

    When using Plesk make sure Safe Mode is OFF and open_base_dir is not set, some times, they are set and create problems. Also cgi-bin is outside the httpdocs folder.
    Safe mode is off but how do I check if open_base_dir is set?
    http://coldblooded.tv
    Show off your reptiles!

  9. #69

    Default

    now the video won't upload, and the browser ask me if i want to download uu_upload.pl .

  10. #70
    Join Date
    Apr 2007
    Posts
    2,202

    Default

    Quote Originally Posted by jonny23
    now the video won't upload, and the browser ask me if i want to download uu_upload.pl .
    Check if perl scripts work on your server. If you access the perl script, it should show a page like

    http://video.bizhat.com/cgi-bin/uu_upload.pl

    If not, you have problem with running perl script on the server.

Page 7 of 13 FirstFirst ... 56789 ... LastLast

Similar Threads

  1. Upload Progress help
    By chris34470 in forum Installation Support
    Replies: 4
    Last Post: 08-25-2008, 01:33 PM
  2. NICHE VIDEO SCRIPT: How to enable User Profile, Upload, etc
    By grynmoors in forum Installation Support
    Replies: 1
    Last Post: 03-17-2008, 12:01 AM
  3. upload progress bar
    By bigbuttsTV in forum Fixed Bugs
    Replies: 3
    Last Post: 08-14-2007, 09:54 AM
  4. upload progress bar
    By hake in forum Fixed Bugs
    Replies: 15
    Last Post: 07-17-2007, 12:32 AM
  5. Upload Progress Bar
    By sam in forum Feature Requests
    Replies: 5
    Last Post: 06-12-2007, 12:19 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •