can someone tell me where the output of the cron job goes to?... a file a log?... i'm just new to drupal and am learning the search function.......thx!
I created a plan old page node and put the following code in it and it won't print the $q->february or the $q->january variables. Why aren't the variables interpolating?
<?php
$results = db_query("SELECT * FROM OMOSLS LIMIT 5");
while ($q = db_fetch_object($results)) {
print "when did alison get so stupid" . $q->february . "$q->january";
}
?>
I am setting up a site in which several people will be posting informational articles. They are letting these articles be read and used for free but would like people to register in order to read them. (I am setting these as "Stories" in Drupal.)
The issue is that there are other pages that should be always available whether registered or not (such as bios, contact us, and the home page and I am setting these as "Pages" in Drupal).
We are getting some problems with pathauto and category module upgrade, I would like to test of it works without pathauto paths... Is it possible to erase only the aliases that were created by pathauto??
If not is the only solution deleting them one by one?? Maybe it would be faster directly in the db??