nightmare -everything gone

Discussion in 'HOWTO-Related Questions' started by durjoy, Jun 10, 2007.

  1. durjoy

    durjoy New Member

    from yesterday my http server was giving damn error .

    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.


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

    Apache/2.2.2 (Fedora) DAV/2 FrontPage/5.0.2.2635 PHP/5.1.6 mod_ssl/2.2.2 OpenSSL/0.9.8a Server at www.mort 80

    i have been trying all day and night to find out the causes however other site was running smoothly .

    found everything is alright then i went to ispconfig and deleted the site . but forget to backup my database . i have even cleaned the recyle bin .

    everything is gone :: GOD

    is there any way to recover it ??

    anyone can help please


    second thing now i have found outthe reason for - internal server error

    whenever i do upload .htaccess file with

    which is given below


    RewriteEngine On

    RewriteCond %{REQUEST_URI} !^/file/.*
    RewriteCond %{REQUEST_URI} !^/install/.*
    RewriteCond %{REQUEST_URI} !^/update/.*
    RewriteCond %{REQUEST_URI} !^/design/.*
    RewriteCond %{REQUEST_URI} !^/plugins/.*
    RewriteCond %{REQUEST_URI} !^/vbforum/.*
    RewriteRule ^index.php(/.*)$ /index.php?do=$1 [L]

    RewriteCond %{REQUEST_URI} !^/file/.*
    RewriteCond %{REQUEST_URI} !^/install/.*
    RewriteCond %{REQUEST_URI} !^/update/.*
    RewriteCond %{REQUEST_URI} !^/design/.*
    RewriteCond %{REQUEST_URI} !^/plugins/.*
    RewriteCond %{REQUEST_URI} !^/vbforum/.*
    RewriteCond %{REQUEST_URI} !^/index.php
    RewriteRule ^(.*)$ /index.php?do=/$1 [L]

    php_value upload_max_filesize 100M
    php_value post_max_size 100M

    sever start giving error . its seems its not supporting re-write engine .

    trust me last 3 months in the same server i have been running rewrite engine .

    falko and other experienced server expert pleaseeeeeeeeeeeeeeeeeeeeeee help.
     
  2. alexillsley

    alexillsley New Member

    Hi,
    If i remember correctly this is wrong:

    Code:
    php_value upload_max_filesize 100M
    php_value post_max_size 100M
    
    It should be:

    Code:
    php_admin_value upload_max_filesize 100M
    php_admin_value post_max_size 100M
    
     
  3. durjoy

    durjoy New Member

    dear alexy .
    thank you very much for your help . you have remineded me invalid command in htaccess file caused the error . however i have removed

    Code:
    php_value upload_max_filesize 100M
    php_value post_max_size 100M
    

    and inserted

    Code:
    php_admin_value upload_max_filesize 100M
    php_admin_value post_max_size 100M
    
    [/QUOTE]

    i was having same error . its seems that my server isnt accepting any kind of php value . now i have removed php values from htaccess file . now site is running fine . but cant define max upload and other php values .

    what should i do in order to make my server to accept php values.

    thanks for your kind

    regards

    Niz
     
  4. falko

    falko Super Moderator Howtoforge Staff

    Please make sure that you have installed the Apache PHP module.
     
  5. durjoy

    durjoy New Member

    falko

    dear falko . i just check that on the mod . i cant see this module is installed . how can install it .. plzz give me few insturcins .

    cheers

    Nizam
     
  6. alexillsley

    alexillsley New Member

    What distribution of linux are you using?
     
  7. durjoy

    durjoy New Member

    using fedora

    using fedora 5

    niz
     
  8. falko

    falko Super Moderator Howtoforge Staff

Share This Page