Invision Community 5: A video walkthrough creating a custom theme and homepage By Matt Thursday at 04:02 PM
Fosters Posted June 3, 2018 Author Posted June 3, 2018 (edited) A new version was released Changelog: Manageable Statuscode Edited June 3, 2018 by Fosters
Unlucky Posted June 4, 2018 Posted June 4, 2018 Hi, Is there a way to manage the size of the 404 error log file as I have only installed this about an hour ago and it's 5 pages long already thanks
Fosters Posted June 4, 2018 Author Posted June 4, 2018 2 hours ago, Unlucky said: Hi, Is there a way to manage the size of the 404 error log file as I have only installed this about an hour ago and it's 5 pages long already thanks We could include a truncate feature which deletes the old log records, but that's not going to help you in this case because they'll just get back. We could include a filter to show/hide links with and without redirect targets. I'll probably go with both solutions.. Truncate + filter
Josiah Wallingford Posted June 9, 2018 Posted June 9, 2018 I am getting an error when updating from 1.0.2 to 1.0.3: Sorry, you do not have permission for that! 1S111/1 Unknown column ' logtime' in 'field list'
Unlucky Posted August 21, 2018 Posted August 21, 2018 Any news on if we can keep the log to a manageable size - got 218 pages so far - would that be likely to take up alot of disk space? Thanks
Unlucky Posted October 9, 2018 Posted October 9, 2018 please can you add a setting where we can prune logs please i have over 303 pages and have been told by host our database needs pruning. I don't know where to start with phpmyadmin so need to do it within the acp many thanks
Fosters Posted October 10, 2018 Author Posted October 10, 2018 Sorry, this suggestion got lost in our tracker, will implement it this weekend.
Simon Culshaw Posted October 18, 2018 Posted October 18, 2018 I seem to get an Forbidden You don't have permission to access /admin/ on this server. Everytime I try and click the "Edit" option?
Fosters Posted October 18, 2018 Author Posted October 18, 2018 28 minutes ago, Simon Culshaw said: I seem to get an Forbidden You don't have permission to access /admin/ on this server. Everytime I try and click the "Edit" option? Are you running any software firewall on your server?
Simon Culshaw Posted October 18, 2018 Posted October 18, 2018 I think it's because I had a temporary domain pointed at the site and it's trying to open links on that site - What is the database table so I can manual prune these erroneous entries? - Thanks
Fosters Posted October 18, 2018 Author Posted October 18, 2018 1 hour ago, Simon Culshaw said: I think it's because I had a temporary domain pointed at the site and it's trying to open links on that site - What is the database table so I can manual prune these erroneous entries? - Thanks Hi, it's the manage404_links database table Simon Culshaw 1
DSystem Posted November 7, 2018 Posted November 7, 2018 Hello! @Fosters Two suggestions for next version: 1 - We often fix the broken link without changing the url. It would be nice to have the possibility to delete the url registered in the table. 2 - Whenever we save the "New Target" we do not go back to the previous page. This is annoying because we always have to apply the filter again. "
AlexWebsites Posted November 27, 2018 Posted November 27, 2018 I just purchased this plugin and on an initial run, it looks great to see what urls are coming in. However, after a few minutes its starting to fill up and some of the urls are long and taking the edit and settings link off the page with no way to scroll over. For display reasons can you truncate the links on the app "dashboard" and maybe when you click on it have the popup display that link above the box you are going to put a new link into? Display the url above the New Target box...
Fosters Posted November 27, 2018 Author Posted November 27, 2018 16 minutes ago, AlexWebsites said: I just purchased this plugin and on an initial run, it looks great to see what urls are coming in. However, after a few minutes its starting to fill up and some of the urls are long and taking the edit and settings link off the page with no way to scroll over. Wow, ok thx, that's something what we missed. Fixed for next release:)
Fosters Posted November 27, 2018 Author Posted November 27, 2018 On 11/7/2018 at 10:35 PM, DSyste said: Hello! @Fosters Two suggestions for next version: 1 - We often fix the broken link without changing the url. It would be nice to have the possibility to delete the url registered in the table. 2 - Whenever we save the "New Target" we do not go back to the previous page. This is annoying because we always have to apply the filter again. " Deleting it will just result in it being logged again. Do you really want this? OH BOY, I just noticed that we never released the log pruning feature. It's going to be part of the next release:)
DSystem Posted November 27, 2018 Posted November 27, 2018 14 minutes ago, Fosters said: Deleting it will just result in it being logged again. Do you really want this? Yes! I would like this appeal. Many times the topic is disapproved and gets 404 error. So we can approve the topic and delete from 404 error list
Fosters Posted November 27, 2018 Author Posted November 27, 2018 7 minutes ago, DSyste said: Yes! I would like this appeal. Many times the topic is disapproved and gets 404 error. So we can approve the topic and delete from 404 error list OK No worries, also included in the next release:)
Fosters Posted November 28, 2018 Author Posted November 28, 2018 A new version was released Changehistory Quote -Added Truncate Feature - https://invisioncommunity.com/forums/topic/446217-404-management-supporttopic/?tab=comments#comment-2747138 -Added Deletion Feature - https://invisioncommunity.com/forums/topic/446217-404-management-supporttopic/?do=findComment&comment=2767184 -Fixed Wrapping issue - https://invisioncommunity.com/forums/topic/446217-404-management-supporttopic/?do=findComment&comment=2767176
AlexWebsites Posted January 15, 2019 Posted January 15, 2019 (edited) I just realized my log file is 984 pages! Even after I put in redirects for all the larger 404 counts. I converted my site from vbb about 14 months ago and most are old links which must be on the internet everywhere. There is no way to delete these logs, right? I can only set the prune time, which I did to 30 days. However, when the task runs, I get an error: DELETE FROM `smanage404_links` WHERE logtime < 1544922184 Table 'ipb.smanage404_links' doesn't exist Any ideas? EDIT: I looked in the database and see a table for manage404_links and not smanage404_links. Edited January 15, 2019 by AlexWebsites
AlexWebsites Posted January 15, 2019 Posted January 15, 2019 Found the issue, in the Application.php file changed: /* Delete file system logs */ if( \IPS\Settings::i()->manage_404_pruneAfterDays ) { \IPS\Db::i()->delete( 'smanage404_links', array( 'logtime < ?', \IPS\DateTime::create()->sub( new \DateInterval( 'P' . \IPS\Settings::i()->manage_404_pruneAfterDays . 'D' ) )->getTimestamp() ) ); } } to /* Delete file system logs */ if( \IPS\Settings::i()->manage_404_pruneAfterDays ) { \IPS\Db::i()->delete( 'manage404_links', array( 'logtime < ?', \IPS\DateTime::create()->sub( new \DateInterval( 'P' . \IPS\Settings::i()->manage_404_pruneAfterDays . 'D' ) )->getTimestamp() ) ); } } Task now ran successfully. Fosters 1
AlexWebsites Posted January 15, 2019 Posted January 15, 2019 One feature suggestion - add the url to the popup box so it can be easily copied and pasted. What happens to me is that I roll over the url to try and copy and paste it into a browser to check and it automatically engages the popup box. Maybe list it right on top? Fosters 1
Fosters Posted January 19, 2019 Author Posted January 19, 2019 A new version was released Quote Changelog: Fixed broken task Added URL to the ACP Edit screen AlexWebsites 1
Recommended Posts