Jump to content

speedy_rudolf

Members
  • Posts

    27
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

speedy_rudolf's Achievements

Member

Member (2/5)

0

Reputation

  1. Yeah...thanks....I already knew that....what I'm trying to do now is find a way to solve it....
  2. Thanks...But I have already tried everything you said, so....
  3. I already said it's not a router problem, as it is already configured from the first try at the server when everything was working fine, except for a few processing bugs.
  4. Hi. I'm trying to build a home server using Microsoft Windows Server 2008 R2, Apache 2.2, PHP 5.2, MySQL 5.5. The server works fine localy. The problem is accessing it externaly (from LAN / Internet). I can't get my other computer (both connected through a router) to "see" the server. The problem isn't with the router (I had to reinstall the Windows to solve some problems ...the first time I was using IIS and I could see the site from LAN/Internet and I didn't change any settings in the router) or the firewall (I have disabled both PC's firewalls for testing purposes). So I'm guessing it might be an Apache setting problem, but I can't figure out what (I created a virtual server for the site using localhost as the domain name as I have read that this might be a cause, but no luck). Any idea what the problem might be and how to solve it? Thank you in advance. Bye. PS: I don't know if this helps, but I can't even ping one PC from the other.
  5. Hi. I'm using Microsoft Windows Web Server 2008 R2. I have setup IIS7.5, PHP 5.2 and Mysql Enterprise Edition 5.5 successfuly. The problem I'm having now is getting the SMTP server to work. Using the code: <?php $to=""; $from=""; $subject="Contact"; $message="Nume: $_POST[name] Email: $_POST[mail] Mesaj: $_POST[msg]"; if(mail($to, $subject, $message, $from)) {header("Location: site.html");} else {echo ("Mail could not be sent.<br><br> <a href='site.html'>HOME</a>");} ?> writes in the log entries that everything is ok and creates the mail in the queue folder, but doesn't send it (it gets stuck in the queue). Using the code: <?php $to = ''; $subject = 'TEST mail'; $message = 'Hello. This is a test email from me.'; $headers = 'MIME-Version: 1.0' . " "; $headers .= 'Content-type: text/plain; ' . " "; $headers .= 'To: Rudolf <>' . " "; $headers .= 'From: Contact <>' . " "; mail($to, $subject, $message, $headers); ?> writes the same log entries (everything ok) but creates the mail in either BadMail or in queue (in which case the mail sits there for a few minutes then disappears, but nothing reaches the recipient) or doesn't create a mail at all (but the log entries are always consistent). I have granted permisions in Connection to 127.0.0.1 and in Relay to 127.0.0.1 and localhost. I have allowed port forwarding on my router on port 25 and my ISP isn't blocking port 25. Any idea why this might be happening and how to solve it? Thank you in advance. Bye.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.