EZ Processing Suite

Yes i am sure and there is no EZ Script in PixInsight :confused:

View attachment 11492
I had this issue when I updated to 1.8.8-8 and found the answer on here during a search.
The process for getting the EZ scripts back is as follows:
  1. Open SCRIPT
  2. Click on Feature Scripts
  3. Click on Add
  4. Navigate to where the scripts folder is located (PixInsight/src/scripts)
  5. Click on the scripts folder and then click the Select Folder button.
  6. After additional scripts are found, click OK. Then click on Done.
  7. The EZ Processing Suite should now be visible when SCRIPT is opened.
I hope that helps. ;)
 
Last edited:
Hi i ran a script update today and am getting a certificate trust error on DarkArchon and the same for Skypixels - Any ideas please

EZScript.JPG
 
It seems there's a strange behaviour : after a first successfull try and having slide the script from Process Explorer Tab to my workshop, when I re-use it for a second picture, the effect is very strong, especially MMT part.
It's OK if I open the script from the bar of the menu for the next pictures.

I just encountered this same issue. I created a "Script" process in my workspace. When I launch EZDenoise from this, it produces a very different (much stronger) effect versus launching EZDenoise from the Script menu. In both cases it uses the identical default parameters. It is as though the masks or support are not effective when launched through the script process.
 
The EZ Live Stack version I'm using doesn't seem to update. I've done everything I can think of to update PixInsight and EZ Processing Suite, but EZ Live Stack doesn't seem to have the latest features, such as the ABE option. When I invoke the script, the header says EZ Live Stack v.0.13HF3. When I go to Resources > Updates > View Installed Updates: Installed Packages and click on the table entry for EZ Processing, it shows these entries:
Install UTC 2021-08-11 13:43:59
File Name release.tar.gz
Repository https://darkarchon.internet-box.ch:8443/
Release Date: 2021-08-05 23:06:58

It looks like it has updated, but it hasn't. What can I do?

-Steve
 
Last edited:
I have a small issue with EZ Live Stack.
I am mounting an NFS share from the server to the client. The client is running PI with EZ LS. If I click on "start watching directory", the script picks up the already present content. But when new images are added, the script doesn't refresh.
I have stop and start watching again. I suspect this has something to do with NFS not supporting inotify or whatever.
Would it be possible to add an option like "force refresh every X seconds" ?

Thanks!
 
I would guess that the folder updating issue is more related to NFS than to PI. NFS is complex and doesn’t always do what you might expect, especially with regard to file indexes. I might suggest trying Samba instead, or messing with the NFS settings
 
Hi
I'm trying to get this set up on a Mac, when I try and update having added the repository I get the following error.
Screenshot 2021-09-29 at 22.42.59.png


Am I doing something wrong, or is this just a Mac security feature I'm not going to be able to use it?
 
I also use a Mac and I do have the EZ suite installed properly. Make sure that in System Preferences > Accessibility PI has access to control the computer (no idea why, but some applications require it).

And do the same in the Firewall settings.
 
Hi
I'm trying to get this set up on a Mac, when I try and update having added the repository I get the following error. View attachment 12193

Am I doing something wrong, or is this just a Mac security feature I'm not going to be able to use it?

I already have the EZ suite installed on my mac, but I am getting the same error that CIS. When I do resources > updates > check for updates I get:

https://darkarchon.internet-box.ch:8443/: Network error: SSL: certificate verification failed (result: 5)

Since it was an SSL error, I tried changing the URL of the repository from https to http but now get this error instead:

http://darkarchon.internet-box.ch:8443/: Network error: Recv failure: Connection reset by peer

The site seems to be up when I visit it (i.e. I see the image of two wrestlers) but PI can't update the repository. Maybe something's wrong with the server?
 
I also use a Mac and I do have the EZ suite installed properly. Make sure that in System Preferences > Accessibility PI has access to control the computer (no idea why, but some applications require it).

And do the same in the Firewall settings.

Thanks, tried updating these settings, but I still get the same SSL error.
 
I am also having the same issue as stated above. I found that one of the certificates had expired on sept 29 2021 so darkarchon needs to correct that.
 
  • Like
Reactions: CIS
i thought darkarchon had an account here but i don't see it anymore. not sure how to contact him/her.

rob
 
Until the 1st of October I didn't know that EZ Processing Suite existed. I'm relatively new to PixInsight. Once I found it I wanted to try it out. Unfortunately it was not available anymore due to expired certificate. I didn't want to give up and I found an old http link http://darkarchon.internet-box.ch:8888/
I know it's not secure using http nowadays but at least I was able to install it in my PixInsight. Afterwards I removed that link from repositories and kept only the https one, just in case it will work again.
I hope this information might be useful for newbies like me.

Marek
 
The problem is that the Letsencrypt CA root cert (DST_Root_CA_X3) has expired:

Code:
$ openssl s_client -connect darkarchon.internet-box.ch:8443
CONNECTED(00000003)
depth=2 O = Digital Signature Trust Co., CN = DST Root CA X3
verify error:num=10:certificate has expired
notAfter=Sep 30 14:01:15 2021 GMT
verify return:1
depth=2 O = Digital Signature Trust Co., CN = DST Root CA X3
notAfter=Sep 30 14:01:15 2021 GMT
verify return:1
depth=1 C = US, O = Let's Encrypt, CN = R3
verify error:num=10:certificate has expired
notAfter=Sep 29 19:21:40 2021 GMT
verify return:1
depth=1 C = US, O = Let's Encrypt, CN = R3
notAfter=Sep 29 19:21:40 2021 GMT
verify return:1

He needs to regenerate the site's cert using a valid CA.
 
I've enjoyed the EZ suite for a while but there are a few things that have been annoying. The most annoying is after loading any of the EZ scripts I can no longer run the MaskGen script. Sometimes this is helpful to build a star map and layer into a star mask for EZ Decon.

But I have figured it out! There are 2 functions added to interfaces that MaskGen blows up on. And there's a simple 2 line fix. In EZ_Common.js add the following near the end. I put them just before the call to onExit();


// clear added functions which breaks some scripts like MaskGen
delete Array.prototype.removeItem;
delete Object.prototype.printPropertiesDebug;

This removes 2 functions that were added, one to Array, one to Object. Each time a script is run it'll add it again so no worries. Best of both worlds.

One other thing I wanted was to have the view automatically populated with the active view. Again in the main function in EZ_Common.js after creating the "dialog" object, add the following:

dialog.mainViewSelector.currentView = ImageWindow.activeWindow.currentView;
dialog.mainViewSelector.onViewSelected(ImageWindow.activeWindow.currentView);

Thanks for the great work!
Naveen
 
Back
Top