Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
June 3, 20186 yr Author A new version was released Changelog: Manageable Statuscode Edited June 3, 20186 yr by Fosters
June 4, 20186 yr 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
June 4, 20186 yr Author 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
June 9, 20186 yr 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'
August 21, 20186 yr 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
October 9, 20186 yr 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
October 10, 20186 yr Author Sorry, this suggestion got lost in our tracker, will implement it this weekend.
October 18, 20186 yr 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?
October 18, 20186 yr Author 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?
October 18, 20186 yr 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
October 18, 20186 yr Author 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
November 7, 20186 yr 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. "
November 27, 20186 yr 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...
November 27, 20186 yr Author 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:)
November 27, 20186 yr Author 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:)
November 27, 20186 yr 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
November 27, 20186 yr Author 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:)
November 28, 20186 yr Author 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
January 15, 20196 yr 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, 20196 yr by AlexWebsites
January 15, 20196 yr 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.
January 15, 20196 yr 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?
January 19, 20196 yr Author A new version was released Quote Changelog: Fixed broken task Added URL to the ACP Edit screen