Results 1 to 10 of 10

Thread: Group page is not created

  1. #1

    Default Group page is not created

    I have just started using vShare 2.5 in http://www.ikastube.com and I have an error in th GROUP link. When I clik on the Group link this error appears:

    Not Found
    The requested URL /groups/featured/1 was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    Does anybody know how to fix it? I don't see where to create a group, not in the admin area, neither as a user. Thanking you in advance.

  2. #2
    Join Date
    May 2007
    Posts
    588

    Default Re: Group page is not created

    make sure you have the latest .htaccess files from vshare 2.5 uploaded.

  3. #3

    Default Re: Group page is not created

    Thanks a lot, Leki. I have found these rewrite rules in the .htacces file, and one of them could be the key of the error:

    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/(.*)/ groups_home.php?urlkey=$1

    Or i remember that at the begging there was a user called vShare (the first one) and I deleted it. It could be that one the reason of the problem because it could be a group created by the first user and when deleting now the link is broken. Should I go to the datebase to create a group or to rewrite the first user? Or where can i get the updated htaccess file for the version 2.5?

  4. #4

    Default Re: Group page is not created

    Can anybody tells me why the redirection is done when i click on GROUPS link (TALDEAK in my case). Whe I click on it, the system points out to the directory called GROUPS/FEATURED/1. I have seen other vShare sites and in some of them there is no redirection and in other ones the redirection is that one: /groups/featured/1. Is the first group created by default and when you delete the creator of that group the error appears? A reply is very much appreciated. Thanking you in advance.

  5. #5
    Join Date
    May 2007
    Posts
    588

    Default Re: Group page is not created

    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/(.*)/topic/(.*) group_posts.php?urlkey=$1&tid=$2
    RewriteRule ^group/(.*)/invite/ invite_members.php?urlkey=$1 [L,QSA]
    RewriteRule ^group/(.*)/ groups_home.php?urlkey=$1  [L,QSA]
    RewriteRule ^groups/(.*)/(.*)/(.*) groups.php?chid=$1&page=$3
    RewriteRule ^groups/(.*)/(.*) groups.php?category=$1&page=$2
    RewriteRule ^include/(.*) http://www.vshare.in
    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>
    your .htaccess should have all these in.

  6. #6

    Default Re: Group page is not created

    Thanks a lot, Leki.- I changed the .htaccess file by other I got in the forum but didn't work. But the one you have sent me is OK. Much Appreciated. I don't have errors yet.

  7. #7

    Default

    I have the same issue with 2.7

    Everything else on the mod_rewrite works except groups.

  8. #8

    Default

    Download vShare 2.7 .htaccess from

    http://buyscripts.in/download/vshare2.7.zip

    and upload it to your server.

    If you can't get it fixed, open a support ticket at

    BuyScripts Helpdesk

  9. #9

    Default

    Quote Originally Posted by flexserve View Post
    I have the same issue with 2.7

    Everything else on the mod_rewrite works except groups.

    Edit your .htaccess. Change the top line of your .htaccess file from:


    Code:
    Options +FollowSymLinks
    To:


    Code:
    Options +FollowSymLinks -MultiViews

  10. #10

    Default

    Quote Originally Posted by buyscripts View Post
    Edit your .htaccess. Change the top line of your .htaccess file from:


    Code:
    Options +FollowSymLinks
    To:


    Code:
    Options +FollowSymLinks -MultiViews

    Ya, wrote this in the support ticket, before issue was resolved. your welcome.

Similar Threads

  1. Thumbnail Created but not there
    By docrst in forum Installation Support
    Replies: 9
    Last Post: 06-04-2008, 04:23 PM
  2. flv files not being created
    By clhmedia in forum Installation Support
    Replies: 1
    Last Post: 05-04-2008, 02:58 PM
  3. Group page not found
    By wbonline in forum Bug Reports
    Replies: 1
    Last Post: 03-31-2008, 06:06 AM
  4. HELP - Group Leader chosen Group Picture/Avatar
    By GreenGambler in forum General Discussions
    Replies: 0
    Last Post: 06-24-2007, 08:49 PM
  5. Directories not created
    By webstuf in forum Installation Support
    Replies: 2
    Last Post: 05-15-2007, 03:50 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
  •