Jump to content

muffin-man

Members
  • Posts

    3
  • Joined

  • Last visited

muffin-man's Achievements

Newbie

Newbie (2/6)

1

Reputation

  1. Update: Actually just found that there are some restrictions that are preventing me from installing the module. I'm currently in the process of discussing with admins for access. Thanks for the help!
  2. So I used this link https://www.us-cert.gov/ncas/alerts.xml with processwire installed with bitnami on my local computer and it worked. However when I go back to my work computer, it still shows blank. Any clues or ideas to why this might be?
  3. I just recently found about processwire a few days ago and now I am currently stuck on modules. I followed the directions on installing it and then inserted the example codes into both a blank template and a pre-built template I made and it shows nothing. I also changed the rss link to something from CNN to see if it was just the URL, but it still shows nothing. I'm not sure if it has something to do with the get function. I implemented this sample into a php template. <?php $rss = $modules->get("MarkupLoadRSS"); $rss->load("http://www.cnn.com/services/rss/"); foreach($rss as $item) { echo "<p>"; echo "<a href='{$item->url}'>{$item->title}</a> "; echo $item->date . "<br /> "; echo $item->description; echo "</p>"; } ?> Please advise
×
×
  • Create New...