I was wondering how I would go about seting up drupal so that after logging in users of a certain role would be taken to their own blog, whilst users of another role would be taken to a different page, any pointers as to how to go about this?
I am tweaking the image module and customize it to my need. When I am creating a node I am getting the following error:
warning: htmlspecialchars() expects parameter 1 to be string, object given in C:\Program Files\xampp\htdocs\drupal\includes\bootstrap.inc on line 588.
Online 588 is the function check_plain($text) function which expects string as the input. I am passing $node->title and getting the above mentioned error. How can I fix this problem.
WTF? I thought maybe it was something to do with my theme, so I changed to one I knew worked...and still big blank nothing...I had to take out the module to get to my admin page
I wish to develop an external module/service which can query to Drupal's database for Drupal's contents: I read that Drupal provides a slim database abstraction layer in order to support multiple database servers easily.
Can I import Drupal's scripts in my php scripts in order to use this abstraction layer? And, if possibble, which ones I have to import/require in my php scripts?