By bogdog400 on
What is the best/easiest way for me to automatically create a page for each user that shows the published stories created by a particular user? I would like to have a URL like this:
http://domain.name.com/drupal/page/fred
http://domain.name.com/drupal/page/bob
And each will show the latest stories of fred or bob respectively.
Is there a module that handles this? Or is there just a feature somewhere that I haven't found? Or should I create it with PHP?
Comments
Views might help there
You should get this done with views. The view needs proper settings in arguments and filter and the URL, but don't ask me the specific settings.
Edit:
here's the link to the module if you haven't got it already: http://drupal.org/project/views
example the view page name
example the view page name "myuserpagestories"
if u use arguments, then page can be view by
myuserpagestories/argument (by username)
myuserpagestories/fred
myuserpagestories/bob
argument tutorial
http://drupal.org/node/54455