i have a media player on my site , i use folders for the playlist and what is inside it for the episodes. i made a new virtual folder and put 10 'files' in it but when i go to the page i dont see all 10. the code i use is here.
this is a scrolling list so it should scroll, i thought it was my internet cache but i deleted that and my cookies but it still isnt showing the episodes. also i have it sorting by episode name and that isnt working on this list either. i had the same problem yesterday but it finally sorted itself out. is there a cache inside of couch sowhere to clear out so that it displays correctly?
here is a page with it working correctly
http://echoes.net63.net/video.php?f=34
and here is one with it not
http://echoes.net63.net/video.php?f=35
maybe it is just my browser could you sheck it and see if it is working correctly in yours?
also i tried to lorder the folders by folder name yesterday and it would not order right for me either stayed the same as it is now/
- Code: Select all
<div><h3> Playlist's</h3></div> <div class="sc_menu_wrapper"> <div class="sc_menu"> <ul> <cms:folders masterpage='video.php' limit='100' paginate='1' > <li><a href="<cms:show k_folder_link />"><big><cms:show k_folder_title /></big></a></li> </cms:folders> </ul> </div> </div> </div> </div> <div class="c50r"> <div class="subcr"> <div> <h3> Episode's</h3></div> <div class="sc_menu_wrapper"> <div class="sc_menu"> <ul> <cms:if k_is_folder > <cms:pages masterpage='video.php' orderby='ep_name' order='asc' folder=k_folder_name limit='25' > <li><a href="<cms:show k_page_link />"><big><cms:show ep_name /></big></a></li> </cms:pages > </cms:if> </ul>
this is a scrolling list so it should scroll, i thought it was my internet cache but i deleted that and my cookies but it still isnt showing the episodes. also i have it sorting by episode name and that isnt working on this list either. i had the same problem yesterday but it finally sorted itself out. is there a cache inside of couch sowhere to clear out so that it displays correctly?
here is a page with it working correctly
http://echoes.net63.net/video.php?f=34
and here is one with it not
http://echoes.net63.net/video.php?f=35
maybe it is just my browser could you sheck it and see if it is working correctly in yours?
also i tried to lorder the folders by folder name yesterday and it would not order right for me either stayed the same as it is now/