Ive been testing adding new users to a test installation of Drupal I have set up. When I use a mail address on the local box, all is well. When I use any other address, a yahoo address for instance, I get this bounced back:
Invalid or missing envelope FROM address.
I have a valid email address setup in the site configuration. Anyone seen this before? Any help?
I don't know if I'm doing something wrong or if it just takes a while, but my new Drupal powered site is not showing up on the Drupal site listings. I have Drupal enabled, all my fields filled out, my Drupal XML-RPC server setting is pointing to http://www.drupal.org/xmlrpc.php, and I have a cronjob running to ping the cron.php page every hour. Any help would be appreciated, and any feedback on the site is welcomed as well.
I've been searching for a while now and can't find an answer. I want to create a site page and am wondering if include_once will work to bring in a PHP page. Do I need to have the file on the root or can it be in a directory? Also, do I have the code correct:
<?php include_once("filename.php"); ?>
or
<?php include_once 'filename.php'; ?>
or
something else?