Hello all,
where can I find the taxonomy lite module for drupal 4.6?
The current version says:
---
For drupal 4.7.
---
There isn't a 4.6 version? Because after I installed this version on my drupal 4.6 instalation, when I check the access control, tac_lite, it brings a blank screen.
Folks, please help! I am trying to do two things Drupal is supposed to do well, but for which I have not found documentation:
1) trying to set up a moderation queue for stories in 4.7. The queue module has been thrown out and I understand that its functionality is replaced by some arcane combination of workflow, voting-api, voting-actions, nmoderation, actions and possibly forms and views?
Is there anyone who has set up a running moderation queue in 4.7? How did you do it?
I am having a problem sending emails from simplenews (for Drupal 4.6.x). Here is the situation:
I am on a hosted server. My Web site is on one server and a different server is used to send email.
In php.ini I have:
SMTP = localhost
sendmail_path=/usr/bin/sendmail
Sendmail sends email to a different server, which should deliver email correctly. However, although localhost will deliver email, it has no Reverse DNS entry. I am receiving bounced messages because of this issue.
I have found two different approaches to selecting a subset of nodes based on taxonomy terms. The first, which I'm currently using, is based on this discussion:
$result = db_query_range("SELECT n.created, n.title, n.nid
FROM {node} n
INNER JOIN {term_node} tn ON n.nid = tn.nid
WHERE tn.tid = $term_id
ORDER BY n.created
DESC", 0, $nlimit);