help!

Status
Not open for further replies.
Messages
58
Reaction score
0
Points
0
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
 

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
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?
 
Messages
58
Reaction score
0
Points
0

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
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.
 
Messages
58
Reaction score
0
Points
0
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]
 

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
Have you also verified that the files and folders have the right permissions?
 
Messages
58
Reaction score
0
Points
0
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.
 

Skizzerz

Contributors
Staff member
Contributors
Messages
2,929
Reaction score
118
Points
63
Hello,

php_flag and php_value are not allowed in .htaccess, please remove or comment out all of those lines
 
Last edited:
Status
Not open for further replies.
Top