email server hosting

search for more blogs here

 

"Email form and mail.cgi is not working." posted by ~Ray
Posted on 2008-10-16 05:19:53

Can anyone help me with this email situation?I have created a form in html. I have setup a cgi form folder And placed a mail cgi file I am able to access the email form from the website. It looks correct in the browser. I can enter the information. Then after I click on 'submit'I get the following-------Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator 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. Apache/1.3.39 Server at sellinfo org Port 80----------------------------------Please help. Thanks in advance! Hum... I know personally I am a fan of using B&T's php version for sending mail () as it's rather fool proof. Could you share the file in question (filter anything you don't want to share such as email address). AMDbuilder This is the sample of what I am trying now.<body><!-- Website Contact Form Generator --><!-- --><!-- This script is free to use as long as you --><!-- retain the credit link --><form method="POST" action="contact php">Fields marked (*) are required<p>Email From:* <br><input type="text" name="EmailFrom"><p>Subject: <br><input type="text" name="Subject"><p>FirstName:* <br><input type="text" name="FirstName"><p>LastName:* <br><input type="text" name="LastName"><p><input type="submit" name="submit" value="Submit"></form><p><!-- Contact Form credit link -->Created by <a target="_blank" href="http://www tele-pro co uk/scripts/contact_form/">Contact Form Generator</a></body></html>Here is the PHP side Also how to I set this up??? I am trying to install in the www directory with the htm. Is that right?<?php// Website Contact Form Generator // // This script is free to use as long as you // retain the credit link // get posted data into local variables$EmailFrom = Trim(stripslashes($_POST['EmailFrom'])); $EmailTo = "support@XXXXX com";$Subject = Trim(stripslashes($_POST['Subject'])); $FirstName = Trim(stripslashes($_POST['FirstName'])); $LastName = Trim(stripslashes($_POST['LastName'])); // validation$validationOK=true;if (Trim($EmailFrom)=="") $validationOK=false;if (Trim($FirstName)=="") $validationOK=false;if (Trim($LastName)=="") $validationOK=false;if (!$validationOK) { print "<meta http-equiv=\"refresh\" content=\"0;URL=error htm\">"; exit;}// prepare email body text$Body = "";$Body.= "FirstName: ";$Body.= $FirstName;$Body.= "\n";$Body.= "LastName: ";$Body.= $LastName;$Body.= "\n";// send email $success = mail($EmailTo. $Subject. $Body. "From: <$EmailFrom>");// redirect to success page if ($success){ print "<meta http-equiv=\"refresh\" content=\"0;URL=ok htm\">";}else{ print "<meta http-equiv=\"refresh\" content=\"0;URL=error htm\">";}?>There it is. Any steps of what I am leaving out? I have looked at your link to the one script. Do you have to change all the 'red' highlighted code with specific server information? I am new to this. I appreciate your asssistance. Hello,First a note... www just points to public_html (the real folder) Using www isn't going to cause any problems but just a note everyone will likely referance public_html... Moving on... It might just simplier to have you use B&T's form mailer as it's all one file and simple to use. All you need to do is edit the first 3 lines where it tells you to edit things. All the important code for sending the email and such is put at the very top of the page above everything else. Then the rest of your page is just like a normal page. Your form seams simple enough that just copying and pasting B&T's version would do the trick for you. AMDbuilderKeep in mind the php file must be php Well. I have named everything the html form to form php and the text script to php and I am still trying to setup the site. I guess part of the server is down still. No response from tech support. Onward. Hello. I went with BT's script. Here is what I have. Any further instructions would be helpful. I know that visual studio developer does not like anything php so I am using nvu to test. <?php// modify the three lines below$htmlMail = "no"; // "yes" to send html mail - otherwise sends text mail$emailAddress = "support@sellinfo org"; // your email address$thankyouPage = "thankyoupage1a htm"; // leave empty to return to the form after a message has been sent - put in a url (or relative page) to go to a Thank You page// modify the three lines abovesession_start();if (isset($_POST['send']) AND isset($_SESSION['mail_count'])) { if (!preg_match("(^[-\w\.]+@([-a-z0-9]+\.)+[a-z]{2,4}$)i". $_POST['email'])) $alert = "You have entered an invalid email address."; if ($_SESSION['mail_count'] >= "3") $alert = "Only 3 messages can be sent per session."; if (empty($alert)) { $_SESSION['mail_count']++; if (!get_magic_quotes_gpc()) foreach ($_POST as $key=>$value) $_POST[$key] = addslashes($_POST[$key]); foreach ($_POST as $key=>$value) $_POST[$key] = wordwrap($_POST[$key],65); if ($htmlMail == "yes") { $headers = 'MIME-Version: 1.0' . "\r\n"; $headers.= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $message = "<table border='1'>"; foreach ($_POST as $key => $value) if (!preg_match("(^send)". $key)) $message.="<tr><td><b>$key</b></td><td>$value</td></tr>"; $message.= "</table>"; } else { foreach ($_POST as $key => $value) if (!preg_match("(^send)". $key)) $message.= $key. "->\n " . $value. "\n\n"; } $subject = $_SERVER['HTTP_HOST'] . " Message"; $headers.= "From: <" . $_POST['email'] . ">\r\n"; mail($emailAddress,$subject,$message,$headers); if (!empty($thankyouPage)) { header('location: ' . $thankyouPage); die(); } unset($_POST); $alert = "Your message has been sent."; }}if (!isset($_SESSION['mail_count'])) $_SESSION['mail_count'] = 0;?><html><head></head><body><form method="post" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>"><div style="text-align: center; height: 450px; width: 500px; margin-top: 50; border: solid 1px black;"><br>Send me a message<br><br>your name<br><input type="text" style="width: 330px;" name="name" value="<?php echo $_POST['name']; ?>" maxlength="50"><br><br>your email address<br><input type="text" style="width: 330px;" name="email" value="<?php echo $_POST['email']; ?>" maxlength="50"><br><br>your message<br><textarea name="content" style="width: 330px; height: 100px;" rows="6" cols="80"><?php echo $_POST['content']; ?></textarea><br><br><input type="submit" name="send" value="submit"> </div></form> <?php if (isset($alert)) echo "<script type='text/javascript'>alert('$alert');</script>"; ?></body></html>

Forex Groups - Tips on Trading

Related article:
http://forums.site5.com/showthread.php?t=22007

comments | Add comment | Report as Spam


"Services" posted by ~Ray
Posted on 2008-04-08 02:01:41

We now furnish for safe and quick backup of your important files. At an affordable rate you can have a secure off-site backup with full FTP find. The NAS Server ordain also allow users to attach their be to their computer as a “Network Drive” allowing them instant access to their files. Regular backups to the NAS Server are also performed to ensure your data is always safe and fully recoverable. We furnish a wide variety of plans everything you be to act a dynamic and interactive website for your family hobbies business or your photos on the Internet. All of our packages accept unlimited sub accounts meaning you can resell or create new accounts for customers or family without having to overlap with allows you to act bring home the bacon delete unlimited amounts of accounts. Full graphic branding customization and custom name server change DNS entries makes our services nearly invisible to end users. Are you always on the go between home and work travelling to different cities or change surface different countries? Are you trying unsuccessfully to displace emails from your laptop desktop computer iPhone or PDA? Simply use smtp2go com as your outgoing send server and never worry about problems sending emails ever again. Setup takes only 2 minutes and involves typing mta colohotel net into your email software’s settings. displace from anywhere in the world — from home the office. New York or even Guatemala!

Forex Groups - Tips on Trading

Related article:
http://www.colohotel.net/2008/04/07/services/

comments | Add comment | Report as Spam


"MSExchange.org - Exchange 2007 Service Pack 1: Managing a CCR ..." posted by ~Ray
Posted on 2008-01-16 02:14:35

MSExchange.org - transfer 2007 function Pack 1: Managing a CCR assemble using the Exchange Management Console You can decrease the size of your Exchange Storage by up to 90% without using mailbox quotas or allowing user PSTs. MailMeter Storage Manager will remove attachments from emails that meet your criteria (age attachment size folder location etc.) and replace them with links to the attachments captured automatically in the MailMeter Archive. It's seamless to your users. They only notice that their mailbox is smaller. Just imagine how fast your backups will run with a 90% smaller Mailbox Store! Visit the section to ***. MSExchange org is in no way affiliated with Microsoft Corp. for sponsorship information or communicate us at. Copyright © MSExchange org 2007. All rights reserved.

Forex Groups - Tips on Trading

Related article:
http://www.newsletterarchive.org/2007/09/25/227071-MSExchange.org+-+Exchange+2007+Service+Pack+1:+Managing+a+CCR+Cluster+using+the+Exchange+Management+Console

comments | Add comment | Report as Spam


"Re: Tomcat hangs when shutting down" posted by ~Ray
Posted on 2007-12-20 20:36:59

Yes this topic has been discussed before. Check the solution in the following links:http://marc info/?l=tomcat-user&m=119067369518153&w=2http://www ngasi com/ngasihelp/ngasiuserguide/tomcat_fails_shutdown_complete htm Andrew Friebel wrote:> I have seen a few postings around about this but nothing that seems to> solve my air. When I shut down tomcat it hangs and then throws a> 'SEVERE: Protocol handler delay failed' error that I can't seem to resolve,> but it does finally stop. I have seen suggestions such as:>> >> . Port is already running>> . verify that the catalina sh shell script has CATALINA_BASE,> CATALINA_HOME and JAVA_domiciliate are all set correctly>> >> None of these seem to be the case as I can't connect to port 80 unless> tomcat is running and my variables are all set in catalina sh.>> >> I have included create from when I go away and stop tomcat. As you can see. I> am using tomcat 5.0.27 with java 1.5.0_10.>> >> I am running tomcat on a Linux box:>> >> # uname -a>> Linux f8101 2.6.9-55.0.6. ELsmp #1 SMP Thu Aug 23 11:13:21 EDT 2007 x86_64> x86_64 x86_64 GNU/Linux>> >> Any suggestions in resolving this would be greatly appreciated.>> >> >> Starting Tomcat>> >> Using CATALINA_locate: /appl/WebServices/webapps/interfaces>> Using CATALINA_domiciliate: /appl/WebServices/jakarta-tomcat-5.0.27>> Using CATALINA_TMPDIR: /appl/WebServices/webapps/interfaces/temp>> Using JAVA_domiciliate: /usr/java/jdk1.5.0_10>> Sep 26. 2007 9:00:54 AM org apache coyote http11. Http11Protocol init>> INFO: Initializing Coyote HTTP/1.1 on http-80>> Sep 26. 2007 9:00:54 AM org apache catalina startup. Catalina load>> INFO: Initialization processed in 1026 ms>> Sep 26. 2007 9:00:54 AM org apache catalina core. StandardService start>> INFO: Starting service Catalina>> Sep 26. 2007 9:00:54 AM org apache catalina core. StandardEngine start>> INFO: Starting Servlet Engine: Apache Tomcat/5.0.27>> Sep 26. 2007 9:00:54 AM org apache catalina core. StandardHost start>> INFO: XML validation disabled>> Sep 26. 2007 9:00:54 AM org apache catalina core. StandardHost getDeployer>> INFO: act Host deployer for direct deployment ( non-jmx )>> Sep 26. 2007 9:00:54 AM org apache catalina core. StandardHostDeployer> install>> INFO: Processing Context configuration register.

Forex Groups - Tips on Trading

Related article:
http://mail-archives.apache.org/mod_mbox/tomcat-users/200709.mbox/%3C46F9F0CD.1070009@ngasi.com%3E

comments | Add comment | Report as Spam


"Looking for Reseller account" posted by ~Ray
Posted on 2007-12-12 16:30:06

Hi all. I'm looking for a good-stable reseller host and I be some advice. First. I'm a complety noob in this and I would appreciate anything you can say to me. I need to entertain 4 websites none of those undergo big requirements. I believe that 3-4 gb storage will be book. Each one should have their own send accounts. Linux based servercpanel and whmruby on rails if possiblephp4,5-mysql4,5pre-installed applications (lot of them )budget up to $20. I'm from Argentine spanish give would be nice. I can understand English but I'm not good writting it (as you can see here )I don't know if I need ssh-private dns after reading lots of webs I could't understand when and what for are those things. Windows ASP. NET 2.0. NET 3.5 MS SQL 2005 Shared & Reseller Hosting Specialist Why do you need lots of pre-installed applications? These are convenient but also inform new security weaknesses. You'll sight that your customers have a tendency to lay scripts because it is so easy but not always use them. You then have a lot of extra junk cluttering up your accounts. Also installers sometimes install scripts in such a way that they use more resources than necessary. Most any compose can be downloaded and installed pretty easily without being included automatically. Just something to believe. __________________Discounted domains shared hosting reseller hosting recurring-payment referral schedule site creation software and templates. 3 month trial. I look lunarpages and I think theire are overselling. 350gb at $6.95 don't seem alter. The only thing I need for my websites its a pretty good response go. Almost every user ordain be from Latin America and if the server is decrease my users will complain about this. Most any compose can be downloaded and installed pretty easily without being included automatically. Maybe I'm wrong but I think he's talking about Fantastico where the applications aren't actually installed but he has one-click access to lay them. __________________█ || Now utilizing Quad Core Dell and IBM eServers █ UK/Europe Reseller Hosting is HERE! PM Me for more info Maybe I'm wrong but I think he's talking about Fantastico where the applications aren't actually installed but he has one-click find to lay them. Thats right. by the way inno support ruby on rails? I did't see it in your web. ps: browsing inno web I open some broken links if you go here:xttp://support innohosting com/index php?_m=knowledgebase&_a=viewand then try to use reseller-webhosting-etc links at the foot Thats alter. by the way inno support ruby on rails? I did't see it in your web. ps: browsing inno web I found some broken links if you go here:xttp://give innohosting com/list php?_m=knowledgebase&_a=viewand then try to use reseller-webhosting-etc links at the foot Good catch! I'll undergo that fixed... I would advise you communicate support for any questions you have __________________█ || Now utilizing Quad Core Dell and IBM eServers █ UK/Europe Reseller Hosting is HERE! PM Me for more info You can try this cerebrate to request quotes directly from hosting providers. Private dns is your own nameserver based on your domain. SSH is not really necessary as you can request support from the hosting provider. Linux Reseller Cpanel 11 WHMResellerWindows Reseller Helm ASP. NET MSSQLEnd User give with Kayako Helpdesk Lunarpages' reseller program is atypical as the reseller can only change one predefined case instead of getting one big be with the ability to slice it as he pleases. your requirements seem pretty easy. Are you sure you be a reseller account?If so act a look at the offers divide or the hostqoute as mentioned. Get your enumerate together and then do some searchs here to see how good of a rep they have. I really recommend taking it easy and just take some time to investigate. It's a bit overwhelming at first but you'll soon get a grip on who's really good. Also act a be at whreviews com for a good starting point. Just keep in mind that IMHO this list is getting a bit outdate (and yeah i've talked to ldcdc about this in telecommunicate = ) Thanks all for your replies. I've decided pick DTH bronce reseller case. So far everything goes great. I'll visit WHT at least one measure every week looking for news and in a month I'll create verbally some review about DTH. I wish it will be a really great review

Forex Groups - Tips on Trading

Related article:
http://www.webhostingtalk.com/showthread.php?t=637875

comments | Add comment | Report as Spam


"How do you generate emaqil in Vista?" posted by ~Ray
Posted on 2007-12-01 22:14:43

What does this convey? You "generate email" by using an email schedule. Windows send comes with Vista. It is the replacement for OutlookExpress. There are many other email programs such as Thunderbird,Eudora. Opera (also a browser). You be to exposit what you are trying to do since we cannot read yourmind. How to affix: command email troubleshooting: The most common problems for people having trouble sending/receivingemail are: 1. You are using the wrong mail server settings. analyse your ISP'swebsite ( or that of your web hosting company if your send host is otherthan your ISP) for the change by reversal send server settings for POP (Incoming)and SMTP (outgoing). Most ISP's will also undergo a "walkthrough" to showyou how to set up send using popular email clients such as OutlookExpress. Eudora and Thunderbird. If they don't have instructions forWindows send yet use the ones for Outlook Express. 2. You have "outgoing send server requires authentication" checked whenit does not. Or vice versa. 3. You are trying to displace send through an SMTP server that isn't yourregular ISP; i e. you are trying to displace send through AT&T's serverwhen your ISP is Comcast. Some ISP's care about this and some don't. 4. Your user name and/or password are incorrect. Yes you do have a username and password for your email. It probably has just been a long timesince you set this up (or someone else set it up for you) and you'veforgotten. Look through your ISP-related documentation or contact yourISP. They ordain be able to tell you your user label and assign you a newpassword. 5. Your antivirus is set to scan emails and/or is one that causesproblems with your operating system (such as McAfee in Vista). Turn thisoption off since it doesn't provide you any extra protection and tendsto cause problems. Malke--Elephant Boy Computers "Don't Panic!"MS-MVP Windows - bomb/User >> What does this mean? You "generate email" by using an email program.> Windows Mail comes with Vista. It is the replacement for Outlook Express.> There are many other email programs such as Thunderbird. Eudora. Opera> (also a browser).>> You be to describe what you are trying to do since we cannot read your> object.>> How to affix:> > >> General email troubleshooting:>> The most common problems for populate having trouble sending/receiving email> are:>> 1. You are using the do by send server settings. analyse your ISP's website> ( or that of your web hosting affiliate if your send host is other than your> ISP) for the correct mail server settings for POP (Incoming) and SMTP> (outgoing). Most ISP's will also have a "walkthrough" to show you how to> set up mail using popular email clients such as Outlook Express. Eudora,> and Thunderbird. If they don't undergo instructions for Windows Mail yet use> the ones for Outlook Express.>> 2. You have "outgoing mail server requires authentication" checked when it> does not. Or vice versa.>> 3. You are trying to send send through an SMTP server that isn't your> regular ISP; i e. you are trying to send mail through AT&T's server when> your ISP is Comcast. Some ISP's care about this and some don't.>> 4. Your user name and/or password are incorrect. Yes you do have a user> label and password for your email. It probably has just been a long time> since you set this up (or someone else set it up for you) and you've> forgotten. Look through your ISP-related documentation or communicate your> ISP. They will be able to express you your user name and appoint you a new> password.>> 5. Your antivirus is set to scan emails and/or is one that causes problems> with your operating system (such as McAfee in Vista). move this option off> since it doesn't give you any extra protection and tends to create> problems.>>> Malke> --> Elephant Boy Computers> > "Don't Panic!"> MS-MVP Windows - Shell/User >>>> What does this convey? You "create email" by using an email program.>> Windows send comes with Vista. It is the replacement for Outlook Express.>> There are many other email programs such as Thunderbird. Eudora. Opera>> (also a browser).>>>> You need to describe what you are trying to do since we cannot read your>> mind.>>>> How to affix:>> >> >>>> General email troubleshooting:>>>> The most common problems for people having trouble sending/receiving>> email are:>>>> 1. You are using the do by send server settings. analyse your ISP's website>> ( or that of your web hosting affiliate if your mail entertain is other than>> your ISP) for the change by reversal mail server settings for POP (Incoming) and>> SMTP (outgoing). Most ISP's will also have a "walkthrough" to show you>> how to set up mail using popular email clients such as Outlook Express,>> Eudora and Thunderbird. If they don't have instructions for Windows send>> yet use the ones for Outlook convey.>>>> 2. You undergo "outgoing send server requires authentication" checked when>> it does not. Or vice versa.>>>> 3. You are trying to send mail through an SMTP server that isn't your>> regular ISP; i e. you are trying to send send through AT&T's server when>> your ISP is Comcast. Some ISP's care about this and some don't.>>>> 4. Your user name and/or password are incorrect. Yes you do undergo a user>> name and password for your email. It probably has just been a long time>> since you set this up (or someone else set it up for you) and you've>> forgotten. be through your ISP-related documentation or communicate your>> ISP. They ordain be able to tell you your user label and assign you a new>> password.>>>> 5. Your antivirus is set to examine emails and/or is one that causes>> problems with your operating system (such as McAfee in Vista). move this>> option off since it doesn't give you any extra protection and tends to>> cause problems.>>>>>> Malke>> -->> Elephant Boy Computers>> >> "Don't Panic!">> MS-MVP Windows - Shell/User >>>> What does this convey? You "generate email" by using an email program.>> Windows Mail comes with Vista. It is the replacement for Outlook Express.>> There are many other email programs such as Thunderbird. Eudora. Opera>> (also a browser).>>>> You need to exposit what you are trying to do since we cannot read your>> object.>>>> How to Post:>> >> >>>> General email troubleshooting:>>>> The most common problems for people having affect sending/receiving>> email are:>>>> 1. You are using the wrong send server settings. Check your ISP's website>> ( or that of your web hosting company if your send entertain is other than>> your ISP) for the change by reversal mail server settings for POP (Incoming) and>> SMTP (outgoing). Most ISP's ordain also undergo a "walkthrough" to show you>> how to set up mail using popular email clients such as Outlook Express,>> Eudora and Thunderbird. If they don't have instructions for Windows Mail>> yet use the ones for Outlook.

Forex Groups - Tips on Trading

Related article:
http://www.vistax64.com/showthread.php?t=93961

comments | Add comment | Report as Spam


"Re: Tomcat crash @ midnight - but why?" posted by ~Ray
Posted on 2007-11-22 07:26:04

Sounds very much like a memory issue as echoed by others on the list. What is the Memory Heap size used by the JVM?Martin Cavanagh wrote:> Thanks Gabe.>> I've checked the Windows Scheduled Tasks - unfortunately they are empty.>> The VMWare instance has 656MB RAm.>> Tomcat logs are quite boring - they only indicate that the Tomcat is > being shutdown>> The catalina logs show> 21.09.2007 00:00:00 org apache coyote http11. Http11AprProtocol pause> INFO: Pausing Coyote HTTP/1.1 on http-443> 21.09.2007 00:00:00 org apache coyote ajp. AjpAprProtocol pause> INFO: Pausing Coyote AJP/1.3 on ajp-8009> 21.09.2007 00:00:01 org apache catalina core. StandardService stop> INFO: Stopping service Catalina> 21.09.2007 00:00:01 org apache coyote http11. Http11AprProtocol destroy> INFO: Stopping Coyote HTTP/1.1 on http-443> 21.09.2007 00:00:01 org apache coyote ajp. AjpAprProtocol destroy> INFO: Stopping Coyote AJP/1.3 on ajp-8009>> All other logs I posted 5 days ago and I don't be to repost.>> Thanks for everyones help>> Martin>> Gabe Wong wrote:>> Check Windows Scheduled Tasks to see what runs around that time. >> Could be a resource issue. A background task or even a load spike>> from a examine bot. How much memory is allocated to the VMWare >> dilate? Also did you check the Tomcat logs?>>>> Martin Cavanagh wrote:>>> Hi guys. I'm comfort having this problem.>>>>>> Its happened 3 times now. Always at exactly midnight. 21.09. 25.09 >>> and 26.09.>>>>>> We have VM Ware Server as the hardware - could this cause the problem?>>>>>> I have a firewall on the machine with only the HTTPS turn change state.>>>>>> In the config file there is the standard AJP port (8009) - what does >>> this actually do?>>>>>> Hardware : VM drop Server>>> OS: Win 2003>>> Tomcat Version: 5.5.23>>>>>> Any ideas?>>>>>> Thanks>>>>>> Martin>>>>>> David Smith wrote:>>>> Huh?? The shutdown port explicitly binds to the localhost >>>> interface. External clients cannot find it anyway. Easily >>>> demonstrated with a netstat dominate.>>>>>>>> --David>>>>>>>>>>>>>>>> Martin Gainty wrote:>>>>>>>>> Hi Pid>>>>>>>>>> you're going to need a firewall if someone can telnet to your >>>>> shutdown port>>>>> (check server xml for the claim turn number)>>>>>>>>>> Martin-->>>>> ----- Original communicate ----->>>>> From: "Pid" <p@pidster com>>>>>> To: "Tomcat Users enumerate" <users@tomcat apache org>>>>>> Sent: Friday. September 21. 2007 7:19 AM>>>>> affect: Re: Tomcat crash @ midnight - but why?>>>>>>>>>>>>>>> >>>>>>>>>>> What's immediately before the shutdown description in the logs?>>>>>>>>>>>> p>>>>>>>>>>>>>>>>>>>>>>>> Martin Cavanagh wrote:>>>>>> >>>>>>> Why would windows report it as crashing then?>>>>>>>>>>>>>> I experience I didn't shut it drink. I was sleeping as I assume >>>>>>> everyone else>>>>>>> was who had access to the system......>>>>>>>>>>>>>> Thanks>>>>>>>>>>>>>> Martin>>>>>>>>>>>>>> David Delbecq wrote:>>>>>>> >>>>>>>> According to your log it did not crash. It did shutdown >>>>>>>> following the>>>>>>>> shutdown procedure (which can be executed by bin\shutdown bat). I>>>>>>>> suggest you investigate possibilities that a local serviceis >>>>>>>> setup to>>>>>>>> shutdown tomcat at midnight on the server.>>>>>>>>>>>>>>>> The tomcat shutdown procedure is started when tomcat receivethe>>>>>>>> SHUTDOWN string at the admin connector (8005 here). This>>>>>>>> connector is>>>>>>>> >>>>> by>>>>> >>>>>>>>>>>>> fail accessible only on local machine.>>>>>>>>>>>>>>>> En l'instant précis du 21/09/07 09:21. Martin Cavanagh >>>>>>>> s'exprimait en>>>>>>>> ces termes:>>>>>>>>>>>>>>>> >>>>>>>>> Hi everyone.>>>>>>>>>>>>>>>>>> Yesterday I started a 2nd Apache Server for my program. It was>>>>>>>>> installed several months ago. Version 5.5.0.23.>>>>>>>>>>>>>>>>>> The server is running on Windows 2003 Server with JavaJRE >>>>>>>>> 1.5.0_11>>>>>>>>>>>>>>>>>> It worked fine with my program for several hours. Then>>>>>>>>> exactly at>>>>>>>>> midnight it crashed.>>>>>>>>>>>>>>>>>> Dienst "Apache Tomcat" wurde unerwartet beendet. Diesist >>>>>>>>> bereits 1>>>>>>>>> Mal passiert. - Which translates to,>>>>>>>>> Service "Apache Tomcat" stopped unexpectedly. This has>>>>>>>>> happened once>>>>>>>>> already.>>>>>>>>>>>>>>>>>> The catalina logs show>>>>>>>>> 21.09.2007 00:00:00 org apache coyote http11. Http11AprProtocol>>>>>>>>> pause>>>>>>>>> INFO: Pausing Coyote HTTP/1.1 on http-443>>>>>>>>> 21.09.2007 00:00:00 org apache coyote ajp. AjpAprProtocolpause>>>>>>>>> INFO: Pausing Coyote AJP/1.3 on ajp-8009>>>>>>>>> 21.09.2007 00:00:01 org apache catalina core out. StandardServicestop>>>>>>>>> INFO: Stopping service Catalina>>>>>>>>> 21.09.2007 00:00:01 org apache coyote http11. Http11AprProtocol>>>>>>>>> destroy>>>>>>>>> INFO: Stopping Coyote HTTP/1.1 on http-443>>>>>>>>> 21.09.2007 00:00:01 org apache coyote ajp. AjpAprProtocoldestroy>>>>>>>>> INFO: Stopping Coyote AJP/1.3 on ajp-8009>>>>>>>>>>>>>>>>>> Which unfortunately isn't really particularly useful. I can't >>>>>>>>> see any>>>>>>>>>.

Forex Groups - Tips on Trading

Related article:
http://mail-archives.apache.org/mod_mbox/tomcat-users/200709.mbox/%3C46FA84D5.1010001@ngasi.com%3E

comments | Add comment | Report as Spam


"Re: Offering Zimbra hosting" posted by ~Ray
Posted on 2007-11-12 00:37:00

Shortly: Vote for Zimbra in the Suggestion list of your cpanel. Longly:I'm going to be buying an iPhone but realized that it would be a pretty crippled device coupled with my Google-based email/schedule/everything. In my searching for an alternative--a function that integrates and syncs contacts and calendar via iSync or an Outlook connector offers IMAP email fully functional attractive webmail (not SquirrelMail!). I realized nothing out there offers these features except Zimbra which seems desire an amazing service--a complete Exchange-killer based on open standards. I would love to use Zimbra in conjunction with my current be (not installable) but DH said they don't undergo plans to furnish it unless it gets voted up on Suggestions. So. I'm writing to see if other DH users might be Zimbra particularly the communicate Edition and to alter sure they understand it's much more than a simple webmail program--that it could furnish some incredible PIM and collaboration functionality with IM file-sharing and a alter AJAX interface. If so you really should vote for it in your adorn where you'll find a two-year old request. Dunno about services currently but Kerio Mail Server is THE MS Exchange alternative and offers such synch features. It isn't open obtain like Zimbra though and I do very much desire Zimbra so I'll be happy to add my choose to it -------------------------- - Custom PHP installs and the like!


Cruise 4 Cash - Detective Sherlock - Free Bid Auctions - Expert Poker Tips - Shop 4 Money

Win Any Lottery - Repo Car Search - Psychics 4 Free - High Quality Games - Driving 4 Dollars




Related article:
http://discussion.dreamhost.com/showflat.pl?Board=3rdparty&Number=91251&page=0&view=collapsed&sb=5&o=14&vc=1#Post91251

comments | Add comment | Report as Spam


"LayeredTech collection?" posted by ~Ray
Posted on 2007-11-05 21:51:41

To my suprise. I get in the send today a $142 collection from a CA for a layeredtech account. I *evaluate* I may have had an LT server come up over a year ago and I NEVER owed them any money. Is this common practice by them or just a poor billing staff? I'm getting create from raw material to request verification and go through the process and eventually send them a strongly worded intent to sue letter; I just wasnt sure how often this happens. Don't send them any earn about suing just send a certified letter asking for verification of debt ( to collections ) if its been sold to collections LT liekly will have nothing to do with it anymore. Do it all in writing if your state allows it buy a tape recorder if you decide to call. I belive they undergo 30days to show create of debt is one the beat resources on restoring credit collections help and bring together ascribe act knowing when u can counter sue I come about to be a pretty active member on creditboards so I experience all that hoopla. They won't be getting an ITS unless they put the attach on my credit inform. This is what i think. As you experience LT recently got hacked. I evaluate the situation LT is in is most likly they are facing a lot of issues with endorse and etc for how the ticket system handled custom orders with them never deleting credit card faxes off from the ticket system desire they said they would. Most likly customers left LT and visa an etc are probaly fining them for poor tactics used by them. We are probaly tryng to go back and get all unpaid invoices rather there were found to be fraud or not because they need extra $$$$ to pay new debts im sure. This is just pure speculation not saying its adjust or etc but tis weird that after the recent issue people are getting notices saying lT wants money from you. Yeah and the sad thing is. I never owed them a bill. Hell. I don't even bequeath having a "contract"

Forex Groups - Tips on Trading

Related article:
http://www.webhostingtalk.com/showthread.php?t=637685

comments | Add comment | Report as Spam


"What does IMAP mean" posted by ~Ray
Posted on 2007-10-30 14:39:59

IMAP Stands for Internet Message find Protocol. It was originally developed in 1986 at Stanford. IMAP is gradually replacing POP as the main protocol used by email clients in communicating with email servers. IMAP includes more functions than the similar and popular POP mail protocol. It can be used by customers who need to act their send on a remote server. By using IMAP an email client program can not only retrieve email but can also manipulate communicate stored on the server without having to actually retrieve the messages. So messages can be deleted undergo their status changed multiple mail boxes can be managed etc. The latest version of IMAP that is IMAP4 is similar to POP3 but supports some additional features. For example with IMAP4 you can examine through your email messages for keywords while the messages are still on the send server. Leaving your messages on the server is very convenient since it means that you can retrieve them from anywhere in the world. When you are setting your delivery options. “IMAP” appears in the telecommunicate communicate so that the GUMail system will leave your telecommunicate messages on the server. People who displace you telecommunicate should not include “IMAP” as part of your telecommunicate communicate. IMAP extension is required when you require to use email piping i e converting your emails into tickets. However if you decide to use only the web interface you could still back up Desk Pilot. Your customers would have always to log into the web based interface (customer adorn) to submit new tickets/issues. 1) Its main advantage is that the user can see all the communicate headers at a look and open only those which are required this saves significant download measure especially if users often forward or delete messages without reading them. 6) It’s ability to manipulate remote folders other than INBOX is fundamental to online and disconnected operation. This means being able to save messages from one folder to a another one being able to find archived messages subsequently and allowing for multiple incoming message folders. 7) Once you act a Spamscreen folder on the server. SPAM is automatically filtered there. The folder can be periodically reviewed if you use an IMAP mail schedule to analyse your filters. To make it short. IMAP is a fantastic way to work with email and is eventually picking up with the growing diffusion of DSL lines and the increasing need of mobile connectivity more and more companies are migrating to this great protocol.

Forex Groups - Tips on Trading

Related article:
http://bodhost.com/web-hosting/index.php/2007/09/25/what-does-imap-mean/

comments | Add comment | Report as Spam


 

 




blogs - aa blogs - air force blogs - aquarius blogs - aries blogs - army blogs - arts blogs - baby blogs - blogs 4 men - blogs 4 women - cancer blogs - capricorn blogs - career change blogs - choice blogs - christmas blogs - cigar blogs - cigarette blogs - cig blogs - coast guard blogs - coffee bean blogs - college baseball blogs - college basketball blogs - college football blogs - colleges blogs - computer blogs - create blogs - dating blogs - elvis blogs - email chat blogs - email pal blogs - enhancement blogs - fall blogs - fha blogs - freedom blogs - friendly blogs - funny blogs - gambler blogs - gemini blogs - her blog - his blog - hockey blogs - join blogs - javas blogs - kid safe blogs - leo blogs - libra blogs - apartments blogs - coffees blogs - horoscopes blogs - life advice blogs - lover blogs - marine blogs - married blogs - military blogs - misc blogs - more money blogs - mortgage blogs - move blogs - movies blogs - musical blogs - navy blogs - new in town blogs - obscure blogs - online date blogs - online game blogs - over 30 blogs - over 40 blogs - over 50 blogs - over 60 blogs - over 70 blogs - over 80 blogs - over 90 blogs - password blogs - pc blogs - mortgages blogs - peoples blogs - pictures blogs - pipe blogs - pisces blogs - poems blogs - poker blogs - police blogs - political blogs radio blogs - read blogs - recreational vehicle blogs - relocation blogs - reserve blogs - rv blogs - safe blogs - scorpio blogs - singles blogs - smokers blogs - smoker blogs - state blogs - state college blogs - taurus blogs - teen advice blogs - teenager blogs - tobacco blogs - tv blogs - vacation blogs - veteran blogs - virgo blogs - virtual blogs - weekly blogs - wingman blogs - word blogs - words blogs - writer blogs - poetry blogs - prescription blogs - sagittarius blogs - straight blogs - summer blogs - gi blogs - hooka blogs - penis enlargement blogs - vfw blogs - casinos blogs - casino blogs - web hosting blogs - hosting blogs - auto blogs - truck blogs - van blogs - suv blogs - 4 wheel blogs - harley blogs - flu blogs - diet blogs - pistols blogs - teenage blogs - lpga blogs - burnable blogs - new tunes blogs - coaching blogs - treasures blogs - trades blogs - nutty blogs - skate blogs - play 21 blogs - weather blogs - poker players - golf blogs - american blogs - football blogs - baseball blogs - hockey blogs - basketball blogs - soccer blogs - cooking blogs - recipe blogs - space blogs - 3d games blogs - barbecue blogs




the email server hosting archives:

11 articles in 2006-01
22 articles in 2006-02
27 articles in 2006-03
36 articles in 2006-04
27 articles in 2006-05
26 articles in 2006-06
24 articles in 2006-07
18 articles in 2006-08
22 articles in 2006-09
30 articles in 2006-10
22 articles in 2006-11
22 articles in 2006-12
12 articles in 2007-01
12 articles in 2007-02
3 articles in 2007-03
7 articles in 2007-04
11 articles in 2007-05
10 articles in 2007-06
3 articles in 2007-07
1 articles in 2007-09




next page


email server hosting