AffordableDomainsCanada Posted February 22, 2017 Share Posted February 22, 2017 I am pulling multiply feeds to get prices, product names, and descriptions, Here is a little snippit <tr> <td data-label="SERVER"><strong><script language="javascript" src="/clientarea/feeds/productsinfo.php?pid=303&get=name"></script></strong><br /><small><script language="javascript" src="/clientarea/feeds/productsinfo.php?pid=303&get=description"></script></small></td> <td data-label="RAM"><small>4 GB </small></td> <td data-label="HDD"><small>500GB SATA </small></td> <td data-label="IP ASSIGNMENTS"><small>1 usable IPv4 </small></td> <td data-label="BANDWIDTH"><small>100 Mbit/s Unmetered</small></td> <td data-label="COST"><small><script language="javascript" src="/clientarea/feeds/productsinfo.php?pid=303&get=price&billingcycle=monthly"></script></small></td> <td data-label="ORDER"><a href="/clientarea/cart.php?a=add&pid=303" class="btn btn-custom"><i class="fa fa-shopping-cart"> </i> Order Now</a></td> </tr> https://www.affordabledomains.ca/affordable-servers.html yet as you can see it is only pulling the very first feed and its causing a white page with just that one feed, how can I get them to display properly ? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted February 22, 2017 Share Posted February 22, 2017 yet as you can see it is only pulling the very first feed and its causing a white page with just that one feed, how can I get them to display properly ? I don't think the URLs need the opening slash before clientarea - so i'd suggest either removing that slash or adding your domain to the URLs... the three feed links themselves are fine (e.g they work when called directly), so it must be down to how the server is interpreting the opening slash. <tr> <td data-label="SERVER"><strong><script language="javascript" src="clientarea/feeds/productsinfo.php?pid=303&get=name"></script></strong><br /><small><script language="javascript" src="clientarea/feeds/productsinfo.php?pid=303&get=description"></script></small></td> <td data-label="RAM"><small>4 GB </small></td> <td data-label="HDD"><small>500GB SATA </small></td> <td data-label="IP ASSIGNMENTS"><small>1 usable IPv4 </small></td> <td data-label="BANDWIDTH"><small>100 Mbit/s Unmetered</small></td> <td data-label="COST"><small><script language="javascript" src="clientarea/feeds/productsinfo.php?pid=303&get=price&billingcycle=monthly"></script></small></td> <td data-label="ORDER"><a href="/clientarea/cart.php?a=add&pid=303" class="btn btn-custom"><i class="fa fa-shopping-cart"> </i> Order Now</a></td> </tr> 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.