urgent help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    how to urgent help

    I have installed a script I added a category n mp4 but unable to access in site gives me 404 error ..



    how to play mp3 links also in this script
    Attached Files

    #2
    Is Mod rewrite enabled?

    Check by using a php file with:
    PHP Code:
    <?php
    phpinfo
    ();
    ?>
    Go to that file in your web browser and search (Ctrl F) for "mod_rewrite" (without quotes)

    Comment


      #3
      where to search that in htaccess

      Comment


        #4
        Create a php file called info.php and inside of it put:
        PHP Code:
        <?php
        phpinfo
        ();
        ?>
        inside of it
        and go to that page to search for it

        Comment


          #5
          I have these modules in that


          core mod_so http_core mod_rpaf mod_apreq2 mod_perl mod_php7 mod_ruid2 mod_vhs mod_access_compat mod_alias mod_allowmethods mod_auth_basic mod_authn_core mod_authn_file mod_authz_core mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_dbd mod_deflate mod_dir mod_env mod_expires mod_filter mod_headers mod_include mod_log_config mod_mime mod_negotiation mod_reqtimeout mod_rewrite mod_setenvif mod_status mod_unique_id mod_unixd prefork mod_hostinglimits

          Comment


            #6
            You have got mod_rewrite enabled.

            So it could be something in .htaccess that it doesn't like.

            In past I have found some servers don't like the line:
            RewriteEngine On

            on others ifmodule lines have stopped it from working:
            <IfModule mod_security.c>
            SecFilterScanPost
            </IfModule>

            Try removing these and see if it works.

            Comment


              #7
              can u give any htaccess file which would be useful for me ...

              Comment


                #8
                Your .htaccess file you have is the only one that is going to be useful to you.
                You have to work out which line(s) is causing it to not function properly. My guess is it is one of the 2 I have shown you in the above post, So try deleting them from it one at a time.

                Comment

                Working...
                X