emeeting script .htaccess problem

tahersaid

Junior Member
Joined
Jan 6, 2009
Messages
185
Reaction score
65
Hi everyone, i have a problem here:(

i have downloaded the nulled version of emeeting dating script from this great forum. The problem is: when i uploaded all the folders and files to ftp server of my hosting. i got this message:

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 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

N.B: I changed the domain email

after trying to know what is the problem, i found out the the .htaccess was making this error and after i removed it, i could install the script smoothly and the site runs greatly. but if i added it again, i get the same error message.



Here is the code in the .htaccess:


Code:
############################################################################
#    .htaccess file to help prevent against hackers                   #
#                                                                          #
#                                                                          #
#    (c) eMeeting LTD - www.datingscripts.co.uk                            #
#                                                                          #
############################################################################ 
IndexIgnore *

    <IfModule mod_rewrite.c>
     
    Options +FollowSymLinks
    RewriteEngine on 
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} -f [NC,OR]
       RewriteCond %{REQUEST_FILENAME} -d [NC]
       RewriteRule .* - [L]


    # Add www to website url
    # commented out til go live
    #RewriteCond %{HTTP_HOST} !^www\.
    #RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]


    ## ITEM INNER PAGE
    RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/index.html$ index.php?dll=$1&sub=$2&item_id=$3&item2_id=$4&item3_id=$5 [L]

    ## ITEM INNER PAGE
    RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/([^/]+)/index.html$ index.php?dll=$1&sub=$2&item_id=$3&item2_id=$4&item3_id=$5 [L]

    ## ITEM INNER PAGE
    RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/index.html$ index.php?dll=$1&sub=$2&item_id=$3&item2_id=$4 [L]

    ## ITEM INNER PAGE
    RewriteRule ^([^/]+)/([^/]+)/([^/]+)/index.html$ index.php?dll=$1&sub=$2&item_id=$3&item_id3=t3 [L]

    ## INNER PAGE
    RewriteRule ^([^/]+)/([^/]+)/index.html$ index.php?dll=$1&sub=$2&item_id=t4 [L]

    ## TOP PAGE
        RewriteRule ^([^/]+)/index.html$ index.php?dll=$1 [L]

    ## USERNAME LINK
        RewriteRule ^([-a-zA-Z0-9~!@#$%^&*()_+\/>]+)/?$ index.php?dll=profile&pUsername=$1 [L]

    ## BAD INDEX PAGE
        RewriteRule ^/index\.html$ index.php [L]
 
    </IfModule>
 
 


 
<Files .htaccess>
order allow,deny
deny from all
</Files>
what i should do in this file, what to remove?, what to edit?


please help me im desperate :(

thank you in advance
 
Back
Top