Recent Posts

Pages: 1 [2] 3 4 5 6 ... 10
11
Beta Releases / Re: v16.0 Beta
« Last post by Mathias (Author) on May 11, 2026, 10:02:14 »
Still getting Bad Gateway when trying to upload, 7z is <67mb

Strange.. Works for me.. Tested on two different networks.. Maybe some FW that bocks for you ?

I can upload stuff elsewhere, also tried different IPs but still seeing "Bad Gateway
The proxy server received an invalid response from an upstream server.
"   :-\

I noticed that when moving 3 folders & contents (15 files) total ~700mb, it did the same hang on high CPU - see the attached pic, sizes & numbers are way off.  The size of 2.8TB is also larger than the drive in use. 

& FWIW I'm also seeing the column sort by Date function as non-persistent.
If RMB save as default on column is used, it immediately reverts to by name as the command ends, I did check the explorer panel settings & they look OK still.....so probably a bug as suspected.

I can't reproduce that.   The column thing might be fixed with the other column issues that was fixed.. but the miscalculation of items I can't reproduce.
12
Beta Releases / Re: v16.0 Beta
« Last post by Ulfhednar on May 10, 2026, 13:10:29 »
Still getting Bad Gateway when trying to upload, 7z is <67mb

Strange.. Works for me.. Tested on two different networks.. Maybe some FW that bocks for you ?

I can upload stuff elsewhere, also tried different IPs but still seeing "Bad Gateway
The proxy server received an invalid response from an upstream server.
"   :-\

I noticed that when moving 3 folders & contents (15 files) total ~700mb, it did the same hang on high CPU - see the attached pic, sizes & numbers are way off.  The size of 2.8TB is also larger than the drive in use. 

& FWIW I'm also seeing the column sort by Date function as non-persistent.
If RMB save as default on column is used, it immediately reverts to by name as the command ends, I did check the explorer panel settings & they look OK still.....so probably a bug as suspected.
13
Support and Feedback / Re: Quick filter
« Last post by total_annihilation00 on May 09, 2026, 22:36:45 »
You can create Filters (Configuration > Filters) then use this in a User-Defined Command (replace with your relevant FilterID) to filter out the files you want (these can be used as Custom Commands or MultiScripts and you can give them a Hotkey):
Filter e-Book Only (Sumatra) "doc"
Code: [Select]
MC.Explorer.SetViewFilter FILTERID="110d14a5c6844ff988d51cf79fb2ef3b"

You can use this to select all files solely without showing anything else (GhostFilter):
Source Code Select GhostFilter Files
Code: [Select]
Sleep(300);
MC.Explorer.Goto LEFT="D:\Download\cpp-projekt\FuzenOp_SiloTest\Yahoo-8Ball-Pool-Clone\"
Sleep(300);
MC.Explorer.Select FILTER="Pool-Game-CloneV18.cpp Yahoo-8Ball-Pool-Clone.rc resource.h" ONLYFILES
Sleep(300);
MC.RunCmd ID="ExplorerPanel.51023";
Sleep(300);

These are just scratching the surface, you can put them to use any way you like. You can use Filters to specify File Coloring Rules as well. ChatGPT AI is pretty decent at scripting and stuff.
14
Support and Feedback / Re: Quick filter
« Last post by mgigli on May 09, 2026, 21:47:24 »
I know it's a bit of a hassle, but is there any way to do this with a single key? For example, by using an internal command that I assign to a key?
15
Support and Feedback / Re: Quick filter
« Last post by total_annihilation00 on May 09, 2026, 20:40:41 »
Ctrl+F for the Filter Box focus then Backspace to erase & Escape to return to the main view.
16
Support and Feedback / Quick filter
« Last post by mgigli on May 09, 2026, 16:18:48 »
Hi,
Since I started migrating from TC, I have been trying to migrate some functionality to which I had become accustomed. I have already migrated TeraCopy and was searching for other things. The last thing I'm trying to configure is the quick search.
In TC, the quick search option allows you to only show files that meet the criteria. Here, Quick Search doesn't have this option, but Quick Filter may serve the same purpose. However, I can't figure out how to close or delete the Quick Filter option. I don't know if there is a missing keyboard assignment that I can't see. I'm trying to accomplish this with a user-defined internal command, but I also can't find any command that quickly closes (cleans, erases, etc.) the quick filter.
17
Support and Feedback / Re: Configuring TeraCopy
« Last post by mgigli on May 09, 2026, 15:26:40 »
I finally managed to do it, with a bit of help.
I'm leaving my multiscript here for anyone who wants it.
At the moment, it works with files, folders and lists.
If there are any problems, please let me know, as it might need to be changed.

Quote
@var $listfile = TranslateEnvString( "%TEMP%" ) + "\\tc_list.txt";
@var $paths = GetSourceSelectedPaths();
@var $target = GetTargetPath();
SaveArray( $listfile, $paths, 1, 1 );
@var $args = "Copy *\"" + $listfile + "\" \"" + $target + "\"";
MC.Run CMD="C:\Program Files\TeraCopy\TeraCopy.exe" ARG="{$args}"
18
Beta Releases / Re: v16.0 Beta
« Last post by Mathias (Author) on May 08, 2026, 15:35:55 »
I can extract a zip with subfolders and they are created.  Can you explain what you are doing.. What do I have to do to reproduce it ?
Simply select the ZIP file without opening it and extract it with Alt+F6. Then the main directory with the name of the ZIP file should be created in the target directory, and this should also work for multiple ZIP files at the same time, if I’m not mistaken. In any case, the main directory named exactly like the ZIP file is not created, and the error message appears instead. Edit: "Unpack Archives into individual Folders" have to be enabled.
As I said above.. Single file zip was the issue. There is an optimization for zip with only a single item in them, and it did not create the target path if it was missing.

19
Beta Releases / Re: v16.0 Beta
« Last post by Matthias515566 on May 08, 2026, 15:24:10 »
I can extract a zip with subfolders and they are created.  Can you explain what you are doing.. What do I have to do to reproduce it ?
Simply select the ZIP file without opening it and extract it with Alt+F6. Then the main directory with the name of the ZIP file should be created in the target directory, and this should also work for multiple ZIP files at the same time, if I’m not mistaken. In any case, the main directory named exactly like the ZIP file is not created, and the error message appears instead. Edit: "Unpack Archives into individual Folders" have to be enabled.
20
Beta Releases / Re: v16.0 Beta
« Last post by Mathias (Author) on May 08, 2026, 15:19:20 »
The error described above bothers me too. I have also noticed that when extracting with Alt+F6, directories are no longer created automatically, and instead an error message appears saying that the target path does not exist.

Well As written in changelog. entire fileoperation engine is redone so errors in that is expected..

But I can't reproduce this. I can extract a zip with subfolders and they are created.  Can you explain what you are doing.. What do I have to do to reproduce it ?

Ahh It must be a single file in the zip in the root of the zip..
Pages: 1 [2] 3 4 5 6 ... 10