amy.damnit;10921990 wrote:I knew about that from locking access, but I just wasn't sure if by me accessing .htaccess restricted areas on my site if it would still end up on the internet because of Google or whoever caching it.
From earlier posts, it doesn't sound like that would be a problem.
Yep. no self respecting will index a page that returns a 401 Authorization Required
amy.damnit;10921990 wrote:
Yah, that is what I was saying earlier.
It seems like that is one way to make sure your domain is not associated with test files.
That's for sure.
amy.damnit;10921990 wrote:
Well, I am doing that now, but eventually you need to upload to a web host to test. More so, there is certain functionality that I can't do from home like sending out PHP e-mails. (I asked about that a long time ago on here and the responses I got were - use a web host.)
What do you think is a compromise on these issues?
Amy
Well, I'm not sure about mail on windows, haven't done it in a while. I ran a linux box as a test server myself, both with and without domain names, and had it sending emails fine, Ant from memory, it wasn't that much trickier to get windows to send emails, was just the sendmail path.
But yeah, for the top anonymity on a live test server, don't use a domain name (unless it's one you set up yourself in windows/system32/drivers/etc/hosts) and put some htaccess auth on it, and you're golden.
Also, if all you want to test live is emails, then just put your mailing script live with a wrapper to test it, put it in an odd folder with an odd filename, and write basic getstring/session authenetication into it and test it standalone. All you need to test mail for is if you're sending attachments and/or html anyway, and just to make sure it looks ok in the inbox. otherwise you can replace your mail() call with a function to dump it into a text file or db, and be done with it for testing. mail either sends or it doesn't, and if it doesn't it's a server setup issue 99% of the time, not a code issue.