Adriano Faria Posted December 26, 2018 Share Posted December 26, 2018 About This File Content History will keep a track of the latest content items viewed by members, so they can have access to them faster. Members will be able to view only items accessed by themselves. Notes: Each content item type will have its own tab. Pages will have one tab per database Each tab will use template from the source content item Moderator actions will be available for those who can moderate the content Admins will be able to view content items viewed by all members in Logs module on ACP Quote Link to comment Share on other sites More sharing options...
andrewbiggs Posted December 26, 2018 Share Posted December 26, 2018 Just bought the application. All seems okey in ACP, the app is activated, but where is the "History" tab. I can't find it! We use original IPS Theme. My forum is here: https://forum.andrewbiggs.com/ Feel free to create an account and test it, or if you are able to help out and you need ACP access, pls PM me. Many thanks! Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted December 26, 2018 Author Share Posted December 26, 2018 1 minute ago, andrewbiggs said: the app is activated, but where is the "History" tab. The app will appear for those who can use the app. Did you select your group in the settings? Quote Link to comment Share on other sites More sharing options...
andrewbiggs Posted December 26, 2018 Share Posted December 26, 2018 Yes, I'm admin and have enable your app for Admins Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted December 26, 2018 Author Share Posted December 26, 2018 10 minutes ago, andrewbiggs said: My forum is here: https://forum.andrewbiggs.com/ I got when I try to access: That's not the error it will display for someone without permission. That's how it should work: Quote Link to comment Share on other sites More sharing options...
andrewbiggs Posted December 26, 2018 Share Posted December 26, 2018 Thanks for the video. I have double checked. I have the exact same settings as you recommend on my forum. Please advise. Many thanks! Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted December 26, 2018 Author Share Posted December 26, 2018 Provide ACP access via PM. Quote Link to comment Share on other sites More sharing options...
andrewbiggs Posted December 26, 2018 Share Posted December 26, 2018 12 minutes ago, Adriano Faria said: Provide ACP access via PM. Done. Quote Link to comment Share on other sites More sharing options...
andrewbiggs Posted December 26, 2018 Share Posted December 26, 2018 1 hour ago, Adriano Faria said: Provide ACP access via PM. Thanks Adriano for the quick fix, rebuild the cache fixed the issue. Super good and fast support! Will post a review when I have some feedback in a few days, but things looks good! Many thanks! Adriano Faria 1 Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted January 29, 2019 Author Share Posted January 29, 2019 Compatible with IPS 4.4. Quote Link to comment Share on other sites More sharing options...
christopher-w Posted January 20, 2020 Share Posted January 20, 2020 Quick pre sales question. If user visits something like Classifieds, or VideoBox, will that show up anywhere? thanks Chris Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted January 20, 2020 Author Share Posted January 20, 2020 All apps that has Content Item model, like these you said, will be there. 👍 christopher-w 1 Quote Link to comment Share on other sites More sharing options...
christopher-w Posted January 24, 2020 Share Posted January 24, 2020 (edited) On 1/20/2020 at 2:53 PM, Adriano Faria said: All apps that has Content Item model, like these you said, will be there. 👍 Thanks, it doesn't work with VideoBox, but that's maybe an implementation issue, I will take it up with @onlyME. On a broader note, would you consider allowing additional tracking urls in the ACP? For example, allow the user to add one or more url/* - like this: Name: VideoBox Url to track: xxxx.xxx/video/* I guess there's a little more to it than that, for example how to extract the name of the entity being viewed, but it might be a simple, but very useful add? Edited January 24, 2020 by christopher-w clarification Quote Link to comment Share on other sites More sharing options...
christopher-w Posted January 24, 2020 Share Posted January 24, 2020 With regards to content history sort order, I notice .the most recently viewed content is at the bottom of the list. Is there an option to put my recent at the top? Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted January 24, 2020 Author Share Posted January 24, 2020 1 hour ago, christopher-w said: Thanks, it doesn't work with VideoBox, but that's maybe an implementation issue It should if it’s a content item. 1 hour ago, christopher-w said: On a broader note, would you consider allowing additional tracking urls in the ACP? For example, allow the user to add one or more url/* - like this: Name: VideoBox Url to track: xxxx.xxx/video/* I guess there's a little more to it than that, for example how to extract the name of the entity being viewed, but it might be a simple, but very useful add? Nope not the purpose of this resource. 52 minutes ago, christopher-w said: With regards to content history sort order, I notice .the most recently viewed content is at the bottom of the list. Is there an option to put my recent at the top? I’ll take a look. Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted January 24, 2020 Author Share Posted January 24, 2020 4 hours ago, christopher-w said: it doesn't work with VideoBox, but that's maybe an implementation issue I just tested VideoBox (thank you @onlyME for providing it) and works fine: The only issue I see here is that it isn't using the app template: And this is due to a missing function in the node model. I'll contact @onlyME. 4 hours ago, christopher-w said: With regards to content history sort order, I notice .the most recently viewed content is at the bottom of the list. Is there an option to put my recent at the top? Confirmed and fixed. Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted January 24, 2020 Author Share Posted January 24, 2020 What's New in Version 1.0.1: Fix records sorting. Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted January 24, 2020 Author Share Posted January 24, 2020 51 minutes ago, Adriano Faria said: And this is due to a missing function in the node model. Fixed by @onlyME in VideboBox: 👍 onlyME 1 Quote Link to comment Share on other sites More sharing options...
Daniel F Posted July 23, 2020 Share Posted July 23, 2020 Your cron task is quite confusing and introducing unncessary overhead. foreach ( \IPS\Db::i()->select( '*', 'contenthistory_visits' ) as $row ) { \IPS\Db::i()->delete( 'contenthistory_visits', array( 'ch_date<?', \IPS\DateTime::create()->sub( new \DateInterval( 'P' . \IPS\Settings::i()->ch_prune_logs_days . 'D' ) )->getTimestamp() ) ); } What's the point of the foreach loop? There's really no need to iterate over all the rows in contenthistory_visits, you can just run the query which you have inside the loop. sobrenome and Adriano Faria 2 Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted July 23, 2020 Author Share Posted July 23, 2020 9 minutes ago, Daniel F said: Your cron task is quite confusing and introducing unncessary overhead. What's the point of the foreach loop? There's really no need to iterate over all the rows in contenthistory_visits, you can just run the query which you have inside the loop. Thank you. Fixed and new version uploaded. Quote Link to comment Share on other sites More sharing options...
James101 Posted July 23, 2020 Share Posted July 23, 2020 Hey, I just purchased this but do you have a version for IPB 4.4? Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted July 23, 2020 Author Share Posted July 23, 2020 (edited) 27 minutes ago, James101 said: Hey, I just purchased this but do you have a version for IPB 4.4? Yes, I do. I selected 4.4 version today earlier when I edited it but it will take a few days to get reviewed. I’ll send via PM now. It will be ok in next version so you will be able to download in marketplace from now on. 👍 Edited July 23, 2020 by Adriano Faria Quote Link to comment Share on other sites More sharing options...
Adriano Faria Posted November 2, 2022 Author Share Posted November 2, 2022 FROM NOVEMBER 1ST TO NOVEMBER 30TH. 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.
Note: Your post will require moderator approval before it will be visible.