Page 6 of 12 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 111

Thread: vShare 2.3 Release: 20070730

  1. #51

    Default

    Quote Originally Posted by karlmay
    progress bar works good but im having a forbidden error page after upload is completed for upload_success.php file.

    Could it be possible that you forgot to do a RewriteRule in the .htaccess file for upload_success.php file?
    This is my .htaccess file:

    Code:
    Options +FollowSymLinks
    RewriteEngine on
    
    RewriteRule ^admin$ - [L]
    RewriteRule ^admin/(.*) - [L]
    RewriteRule ^install$ - [L]
    RewriteRule ^install/(.*) - [L]
    RewriteRule ^$ index.php
    RewriteRule ^view/(.*)/(.*)/ view_video.php?id=$1  [L,QSA]
    RewriteRule ^tag/(.*)/(.*) tag.php?search_id=$1&page=$2  [L,QSA]
    
    RewriteRule ^channel/(.*)/(.*)/recent/(.*) video.php?category=recent&chid=$1&page=$3
    RewriteRule ^channel/(.*)/(.*)/viewed/(.*) video.php?category=viewed&chid=$1&page=$3
    RewriteRule ^channel/(.*)/(.*)/ channel_detail.php?id=$1
    
    RewriteRule ^detailed/recent/(.*) video.php?category=recent&page=$1&viewtype=detailed
    RewriteRule ^detailed/viewed/(.*) video.php?category=viewed&page=$1&viewtype=detailed
    RewriteRule ^detailed/discussed/(.*) video.php?category=discussed&page=$1&viewtype=detailed
    RewriteRule ^detailed/favorites/(.*) video.php?category=favorites&page=$1&viewtype=detailed
    RewriteRule ^detailed/rated/(.*) video.php?category=rated&page=$1&viewtype=detailed
    RewriteRule ^detailed/featured/(.*) video.php?category=featured&page=$1&viewtype=detailed
    RewriteRule ^detailed/random/(.*) video.php?category=random&page=$1&viewtype=detailed
    RewriteRule ^recent/(.*) video.php?category=recent&page=$1
    RewriteRule ^viewed/(.*) video.php?category=viewed&page=$1
    RewriteRule ^discussed/(.*) video.php?category=discussed&page=$1
    RewriteRule ^favorites/(.*) video.php?category=favorites&page=$1
    RewriteRule ^rated/(.*) video.php?category=rated&page=$1
    RewriteRule ^featured/(.*) video.php?category=featured&page=$1
    RewriteRule ^random/(.*) video.php?category=random&page=$1
    RewriteRule ^rss/new/ rss.php?type=new [L] 
    RewriteRule ^rss/comments/ rss.php?type=comments [L] 
    RewriteRule ^rss/views/ rss.php?type=views [L]
    RewriteRule ^group/(.*)/members/(.*) group_members.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/videos/(.*) group_videos.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/add/(.*) add_video.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/fav/(.*) add_favour.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/ groups_home.php?urlkey=$1  [L,QSA]
    RewriteRule ^include/(.*) http://www.u2jam.com
    RewriteRule ^pages/(.*).html$ show_page.php?name=$1 [QSA,L]
    RewriteRule ^([^/\.]+)/favorites/(.*) user_favorites.php?username=$1&page=$2
    RewriteRule ^([^/\.]+)/playlist/(.*) playlist.php?username=$1&page=$2 
    RewriteRule ^([^/\.]+)/friends/(.*) user_friends.php?username=$1&page=$2
    RewriteRule ^([^/\.]+)/public/(.*)$ user_videos.php?username=$1&type=public&page=$2
    RewriteRule ^([^/\.]+)/private/(.*)$ user_videos.php?username=$1&type=private&page=$2 [L,QSA]
    RewriteRule ^([^/\.]+)/groups/(.*)$ user_groups.php?username=$1&page=$2 [L,QSA]
    RewriteRule ^([^/\.]+)?/?$ user.php?username=$1 [L,QSA]
    
    
    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>
    
    <IfModule mod_gzip.c>
    mod_gzip_on No
    </IfModule>

  2. #52

    Default Re: Did you get it fixed yet?

    Quote Originally Posted by hilariouslaugh.com
    Did you get it fixed yet? Also I wonder if someone would be kind enough to post their settings if they have installed and got this running successfully?
    This is my uu_default_config.pm :


    Code:
    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/username/www/templates_c/',
    	upload_dir               => '/home/username/www/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://www.YOUR-DOMAIN.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://www.YOUR-DOMAIN.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]',
    	from_email_address       => '[email protected]',
    };
       
    1;
    Hope this helps.

  3. #53
    Join Date
    Jul 2007
    Posts
    115

    Default

    thanks spun2u but both are the same, i was just wondering if they forgot to do a RewriteRule for upload_success.php file in the .htaccess

    as soon as the upload is over it goes to a forbidden error page for upload_success.php

  4. #54

    Default Re: Did you get it fixed yet?

    Quote Originally Posted by spun2u
    Quote Originally Posted by hilariouslaugh.com
    Did you get it fixed yet? Also I wonder if someone would be kind enough to post their settings if they have installed and got this running successfully?
    This is my uu_default_config.pm :


    Code:
    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/username/www/templates_c/',
    	upload_dir               => '/home/username/www/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://www.YOUR-DOMAIN.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://www.YOUR-DOMAIN.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]',
    	from_email_address       => '[email protected]',
    };
       
    1;
    Hope this helps.
    Your path is not right to your upload directory. You need to set this to the upload path on your server. In fact you have not set any of your paths that I can see. The paths that are on here are defult but you need to change these for your server.

  5. #55

    Default Re: Did you get it fixed yet?

    [quote=hilariouslaugh.com]
    Quote Originally Posted by spun2u
    Quote Originally Posted by "hilariouslaugh.com":1db45
    Did you get it fixed yet? Also I wonder if someone would be kind enough to post their settings if they have installed and got this running successfully?
    This is my uu_default_config.pm :


    Code:
    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/username/www/templates_c/',
    	upload_dir               => '/home/username/www/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://www.YOUR-DOMAIN.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://www.YOUR-DOMAIN.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]',
    	from_email_address       => '[email protected]',
    };
       
    1;
    Hope this helps.
    Your path is not right to your upload directory. You need to set this to the upload path on your server. In fact you have not set any of your paths that I can see. The paths that are on here are defult but you need to change these for your server.[/quote:1db45]


    Dude, I posted this for karlmay & you since you guys seem to be having issue with this thing. I blanked out certain parts of the path. You or whoever finds this helpful should replace my example paths with their own.

    Geez.

  6. #56

    Default

    Quote Originally Posted by karlmay
    thanks spun2u but both are the same, i was just wondering if they forgot to do a RewriteRule for upload_success.php file in the .htaccess

    as soon as the upload is over it goes to a forbidden error page for upload_success.php
    Not sure about the rewriterule being left out, but if they did then somehow my installed version works.

  7. #57
    Join Date
    Jul 2007
    Posts
    115

    Default

    Quote Originally Posted by spun2u
    Quote Originally Posted by karlmay
    thanks spun2u but both are the same, i was just wondering if they forgot to do a RewriteRule for upload_success.php file in the .htaccess

    as soon as the upload is over it goes to a forbidden error page for upload_success.php
    Not sure about the rewriterule being left out, but if they did then somehow my installed version works.
    Oh, could be a server issue in that case, thanks for your help.

  8. #58

    Default ok

    Ok thank you! I did what you said but this is the error i am getting now.

    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

    More information about this error may be available in the server error log.


    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


    --------------------------------------------------------------------------------

    Apache/1.3.37 Server at hilariouslaugh.com Port 80

  9. #59

    Default Re: ok

    Quote Originally Posted by hilariouslaugh.com
    Ok thank you! I did what you said but this is the error i am getting now.

    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

    More information about this error may be available in the server error log.


    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


    --------------------------------------------------------------------------------

    Apache/1.3.37 Server at hilariouslaugh.com Port 80
    What page are you accessing when you get this error?

  10. #60

    Default error

    Do you know what this means?

    [Wed Aug 1 22:05:28 2007] [error] [client 75.17.76.14] File does not exist: /home2/video/public_html/favicon.ico

    What is this favicon.ico?

Page 6 of 12 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. Vshare release??
    By Bassel1 in forum Sales Questions
    Replies: 9
    Last Post: 03-09-2009, 01:53 PM
  2. vShare 2.1 Release: 20070625
    By admin in forum Announcements
    Replies: 58
    Last Post: 02-20-2008, 05:27 PM
  3. vShare 2.1 Release 22 May 2007
    By admin in forum Announcements
    Replies: 86
    Last Post: 09-27-2007, 06:39 AM
  4. vShare v2 Release 22 May 2007 (Next Release)
    By admin in forum Installation Support
    Replies: 12
    Last Post: 05-22-2007, 08:04 PM

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
  •