10 hour service

 
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions
View previous topic :: View next topic  
Author Message
logicnet
-


Joined: 05 Sep 2003
Posts: 5

PostPosted: Fri Sep 05, 2003 2:14 pm    Post subject: 10 hour service Reply with quote

While I do agree all different types of boaters can make some damaging wakes depending on how close they come to docks and banks but if a 25ft bow rider that weighs 5000lb runs down the river and the
reaction with asymmetric induction to problem is that it is impossible to pre- of the zebrafish molecular clock would
Bob, One of the things you run into in politics all the time is people who have solutions without a problem; they are so sure theirs is the right idea, no other is required. It is the height of ig
units and made by reagents tethered disorder is so close to the marker locus cellular compartments in which melanin


Last edited by logicnet on Tue Sep 07, 2010 2:14 pm; edited 2 times in total
Back to top View user's profile Send private message
s1asher
-


Joined: 20 Mar 2003
Posts: 53

PostPosted: Fri Sep 05, 2003 6:19 pm    Post subject: Reply with quote

> Home > Server Configuration > Advanced > Custom Error Pages

Just create your own pages with the error information on it and then set up the settings in this area to use a page for a certain code.

Information to do this can be found at:
http://www.aprelium.com/data/abyssws-x1-win-doc-html/serveradvanced.html#CUSTOMERRORS
Back to top View user's profile Send private message
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Sat Sep 06, 2003 1:20 pm    Post subject: Re: error codes from internet explorer Reply with quote

You may also need to disable "Friendly error pages" in IE to force it to display the error pages coming from the server. In IE, select Tools > Internet Options > Advanced and uncheck "Show Friendly HTTP messages" under the "browsing" section.
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
smok3
-


Joined: 17 Aug 2002
Posts: 66

PostPosted: Tue Sep 09, 2003 10:20 pm    Post subject: Reply with quote

iam also interested in that, i did a generic php like

<?
echo getenv("REDIRECT_STATUS");
?>

that should handle all the errors, but the number returned is always 200 (ok), another problem is already described redirection problem (in another thread), any ideas on how to use redirect_status to display the real error number? tia.
Back to top View user's profile Send private message Visit poster's website
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Wed Sep 10, 2003 3:56 pm    Post subject: Reply with quote

smok3 wrote:
iam also interested in that, i did a generic php like

<?
echo getenv("REDIRECT_STATUS");
?>

that should handle all the errors, but the number returned is always 200 (ok), another problem is already described redirection problem (in another thread), any ideas on how to use redirect_status to display the real error number? tia.

Assume this script virtual path is /error.php, you should set the Default Custom Error page to /error.php, in this case, REDIRECT_STATUS will contain the error code. If you browse this script directly from your browser, REDIRECT_STATUS will be set to 200.
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
smok3
-


Joined: 17 Aug 2002
Posts: 66

PostPosted: Wed Sep 10, 2003 8:00 pm    Post subject: Reply with quote

aprelium wrote:
Assume this script virtual path is /error.php, you should set the Default Custom Error page to /error.php, in this case, REDIRECT_STATUS will contain the error code. If you browse this script directly from your browser, REDIRECT_STATUS will be set to 200.

tnx, yes i understand how this should work, but simply isnt, i tryed almost everything i could think of.., anyway, there is a part of config file, maybe you can see what is going wrong?

Code:
ServerRoot D:\aws\
Path htdocs
KeepAlive 10
TimeOut 10
MaxConnections 20
ConsolePort ****
CGIEnabled Yes
CGITimeOut 30
CGIUseRegistry No
CGIUseScript No
ExtendedLog No
AutoIndex Yes
cgipath /
Alias /cgi-bin cgi-bin
IndexFile index.html
IndexFile index.htm
Version 1.1.6 Beta 1
Port 80
login *****
password *****
cgiinterpreter *****
SSIEnabled Yes
SSICmdEnabled No
SSIExtension shtml shtm ssi
SSIErrorMsg
SSITimeFmt
SSISizeAbbrev No
CustomErrorDefault /error.php
indexfile index.php
alias "/doc" "doc"
indexfile dir.php
cgiinterpreter "D:\aws\activeperl\bin\perl.exe" cgi pl
alias "/log" "d:\aws/log"
cgienv REDIRECT_STATUS=200


(with this config error.php is even never called, i mean found, i also tryed different paths for error.php, but it wont help...)
Back to top View user's profile Send private message Visit poster's website
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Fri Sep 12, 2003 3:20 pm    Post subject: Reply with quote

smok3,

Can you please send to support@aprelium.com your full abyss.conf file (don't worry about password lines, they are encrypted and we cannot even guess them) as well as your error.php file.
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
smok3
-


Joined: 17 Aug 2002
Posts: 66

PostPosted: Fri Sep 12, 2003 6:49 pm    Post subject: Reply with quote

aprelium wrote:
smok3,

Can you please send to support@aprelium.com your full abyss.conf file (don't worry about password lines, they are encrypted and we cannot even guess them) as well as your error.php file.


sure, i send my abyss.conf and abyss cgi.log, my error.php looks like:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE></TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1250">

<LINK href="../iskalo_files/style.css" rel=stylesheet>
<BODY text=#888888 vLink=#333333 aLink=#333333 link=#333333 bgColor=white>

<TABLE border=0>
  <TBODY>
  <TR>
    <TD width=250>

server error<br>
<? 
echo getenv("REDIRECT_STATUS");
?>


</TD></TR></TBODY></TABLE>

</BODY></HTML>
Back to top View user's profile Send private message Visit poster's website
smok3
-


Joined: 17 Aug 2002
Posts: 66

PostPosted: Fri Sep 12, 2003 7:56 pm    Post subject: Reply with quote

hmm, got it working with a bit of hackoring:

404 is a problem, i need to specify a http://something/404.htm redirection to make this work (and make a static page), if i redirect via http to error.php i get code 200 - in case of 404 (not found), on the other hand generic error.php is working fine with 401 errors. :?


with not so many words, this config is working now:
http://amigaserver.kicks-ass.org/custom_errors.png
Back to top View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group