[ic] More questions

davideth at whojamadoogle.com davideth at whojamadoogle.com
Mon Sep 1 19:16:32 UTC 2025


Thanks.

I used this to remove files older than 2 years old. find ./* -type f 
-mtime +730 -exec rm -f {} \;

However, I still do not know if I am removing important session data for 
orders. I need to keep session data for orders for at least 5 years as 
documentation.

I do have backups however.

Also, any ideas on this?


#3? Can someone direct me the best way to put a mv_valid or mv_verified
cookie on the users computer

  Seems like it would go in here: 	my @jar;
	push @jar, [
				($::Instance->{CookieName} || 'MV_SESSION_ID'),
				defined $::Instance->{ClearCookie} ? '' : $Vend::SessionName,
				$Vend::Expire || undef,
				undef,
				undef,
				$Vend::Cfg->{SessionCookieSecure} ? $CGI::secure : undef,
			]
		unless $Vend::CookieID;

but just how to add this? I just do not want to generate some kind of conflict or interference that might show up later ???


Just as a note: things such as Norton, AVG, McAffee, and others used to 
be free until they were not.



______________________________________________

You can run via cron stuff like:

find /home/user/catalogs/store/tmp/ -mindepth 1 -type f -mtime +10 |
xargs rm

find /home/user/catalogs/store/session/ -mindepth 1 -type f -mtime +10 |
xargs rm

I also noticed this project, where they explicitly say "In most cases,
you should not need this and can probably get by using Cloudflare to
protect a given origin. However, for circumstances where you can't or
won't use Cloudflare, Anubis is there for you."

https://github.com/TecharoHQ/anubis/?tab=readme-ov-file

DB



More information about the interchange-users mailing list