Closed Thread
Results 1 to 9 of 9

Thread: help!

  1. #1
    ozlocrazoontus31's Avatar
    ozlocrazoontus31 is offline x10Hosting Member ozlocrazoontus31 is an unknown quantity at this point
    Join Date
    Apr 2011
    Posts
    58

    help!

    I tryed sending mail in your fourms it didnt work it bounced back at me.....ands it wasnt sent i hope you are aware of this problome.i also have a nother problome i am trying to put mail on my website but i get this Error message

    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.

    Please contact the server administrator, no-reply@x10hosting.com 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.

    -I hope you can fix it, so i'll leave it up to you guys.....-and thanks

  2. #2
    calistoy's Avatar
    calistoy is offline Free Support Volunteer calistoy is just really nice
    Join Date
    Aug 2008
    Location
    USA
    Posts
    5,598

    Re: help!

    From where did you try sending email in the forums here? Could you provide the url to do this? Please clarify what you've tried to do?

  3. #3
    ozlocrazoontus31's Avatar
    ozlocrazoontus31 is offline x10Hosting Member ozlocrazoontus31 is an unknown quantity at this point
    Join Date
    Apr 2011
    Posts
    58

    Re: help!

    i tryed sending mail from the Notifications - inbox i also tryed seting it up on my website and thats when i got the error ok heres the link to my website that i have been trying to set up for days

    http://ombatroll.exofire.net/eGroupw...up/install.php

    ---------- Post added at 11:39 PM ---------- Previous post was at 11:37 PM ----------

    heres your fourms link that the emailing doesn't work: http://x10hosting.com/forums/private.php?do=newpm

  4. #4
    calistoy's Avatar
    calistoy is offline Free Support Volunteer calistoy is just really nice
    Join Date
    Aug 2008
    Location
    USA
    Posts
    5,598

    Re: help!

    For your 500 server error, please check your .htaccess, and then check the permissions of your files and folders in your account. Files should be 644 and folders should be 755. Permissions on either of 777 will cause this specific server error.

    If the forum user or users who you are trying to message have disabled private messages and emailing to their accounts, then it won't work when you try.

  5. #5
    ozlocrazoontus31's Avatar
    ozlocrazoontus31 is offline x10Hosting Member ozlocrazoontus31 is an unknown quantity at this point
    Join Date
    Apr 2011
    Posts
    58

    Re: help!

    my .htaccess file says this #
    # Set
    #
    # AllowOverride FileInfo
    #
    # to enable parsing off this file
    #
    php_flag file_uploads on
    php_flag log_errors on
    php_flag magic_quotes_gpc off
    php_flag magic_quotes_runtime off
    php_flag register_globals off
    php_flag short_open_tag on
    php_flag track_vars on
    php_flag display_errors off
    # E_ALL & ~E_NOTICE & ~E_STRICT = 8191 - 8 - 2048 = 6135
    php_value error_reporting 6135
    php_value max_execution_time 90
    php_value memory_limit 256M
    php_value session.gc_maxlifetime 14400
    php_value upload_max_filesize 64M
    php_value post_max_size 65M
    # session handling: now the check for expired sessions is done on every 10th session creation
    php_flag session.use_trans_sid Off
    php_value session.gc_probability 1
    php_value session.gc_divisor 10
    # multibyte extension: needed for utf-8
    php_value mbstring.func_overload 7

    ---------- Post added at 12:47 AM ---------- Previous post was at 12:44 AM ----------

    then i have this file groupdav.htaccess code
    # EGroupware CalDav or CardDAV support for Apple apps (incl. iPhone)
    #
    # $Id: groupdav.htaccess 32644 2010-10-21 16:09:36Z ralfbecker $
    #
    # This file can be copyied as .htaccess to your document root
    # to support Mac or iPhone clients to autodetec CalDAV and CardDAV
    # (currently Addressbook does NOT allow to specify our groupdav.php
    # URL manually).
    #
    # As alternative an EGroupware install directly in the docroot or
    # an unconditional redirect from the docroot to EGroupware's index.php
    # will archive the same thing, as it redirects PROPFIND or OPTION
    # requests to groupdav.php/ (many have such a redirect already in place).
    #
    # iCal app does NOT allow multiple redirects, therefore it must be redirected
    # directly to groupdav.php/ eg. by the following index.php in the docroot:
    #
    # <?php
    # if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND' || $_SERVER['REQUEST_METHOD'] == 'OPTIONS')
    # {
    # header("Location: /egroupware/groupdav.php/\n\n");
    # }
    # else
    # {
    # header("Location: /egroupware/\n\n");
    # }
    # exit;
    #
    # An other alternativ is to copy the above PROPFIND/OPTIONS redirect
    # into your index.php in the docroot.
    #
    # Please note:
    # - your Apache web server needs to be setup to read .htaccess files and
    # allow use of the RewriteEngine directive (AllowOverride FileInfo).
    # - you need to replace /egroupware with your EGroupware URL path eg. /egw

    RewriteEngine On
    RewriteBase /

    RewriteRule ^.well-known/(caldav|carddav)$ /egroupware/groupdav.php/ [R]
    RewriteCond %{REQUEST_METHOD} ^(PROPFIND|OPTIONS)$
    RewriteRule ^/$ /egroupware/groupdav.php/ [R]

  6. #6
    calistoy's Avatar
    calistoy is offline Free Support Volunteer calistoy is just really nice
    Join Date
    Aug 2008
    Location
    USA
    Posts
    5,598

    Re: help!

    Have you also verified that the files and folders have the right permissions?

  7. #7
    ozlocrazoontus31's Avatar
    ozlocrazoontus31 is offline x10Hosting Member ozlocrazoontus31 is an unknown quantity at this point
    Join Date
    Apr 2011
    Posts
    58

    Re: help!

    yes

    ---------- Post added at 01:05 AM ---------- Previous post was at 01:03 AM ----------

    even when i type in the url name wrong it goes to the error page.

  8. #8
    Skizzerz's Avatar
    Skizzerz is offline Contributors Skizzerz will become famous soon enough
    Join Date
    Nov 2007
    Location
    Texas
    Posts
    2,153

    Re: help!

    Hello,

    php_flag and php_value are not allowed in .htaccess, please remove or comment out all of those lines
    Last edited by Skizzerz; 08-01-2011 at 08:13 PM.
    Ryan Schmidt | Level 2 Support
    █ 888-X10-9668 - ryan[@]x10hosting.com
    x10Hosting - Giving Away Hosting Since 2004
    Premium Hosting | VPS Services

  9. #9
    ozlocrazoontus31's Avatar
    ozlocrazoontus31 is offline x10Hosting Member ozlocrazoontus31 is an unknown quantity at this point
    Join Date
    Apr 2011
    Posts
    58

    Re: help!

    Thnaks it worked but i found out that its not a good software...lol

Closed Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers