0red / exeoutput_update

Exeoutput content updater
1 stars 0 forks source link

Missing enc_file.php #1

Open oleteacher opened 4 years ago

oleteacher commented 4 years ago

Thank you for sharing your project, really nice of you!

Maybe I am not understanding, but seems file is missing: enc_file.php

I read your Wiki and first file spoken of is enc_file.php and not in download?

Is it missing, or do I need to create?

Thanks again,

Susan

0red commented 4 years ago

Hi my mistake in wiki.... should be enc_data.php Rg Jacek PS. in case of problems mail me :-) I'm using it from half a year to share the vital project with the team (so therefore is AES encoded :-) on the disk to prevent "easy" access to the data. I always like Your comments on the forum - I've learn a lot from them.

niedz., 17 maj 2020 o 00:43 Susan notifications@github.com napisał(a):

Thank you for sharing your project, really nice of you!

Maybe I am not understanding, but seems file is missing: enc_file.php

I read your Wiki and first file spoken of is enc_file.php and not in download?

Is it missing, or do I need to create?

Thanks again,

Susan

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/0red/exeoutput_update/issues/1, or unsubscribe https://github.com/notifications/unsubscribe-auth/AC25MBGRS33HVKSJFBZG6P3RR4JKZANCNFSM4NDDMD3Q .

oleteacher commented 4 years ago

Thank you Jacek (@0red) for explaining. Sorry for delay, been little crazy lately.

I do have some questions for you and will email you after the usa holiday weekend.

0red commented 4 years ago

ok. :-) I'm also actual working on local encrypted sqlite for exe_output - as I need a vital information served locally.... (wxwidget sqlite version with AES256 encryption) And for my project - js data file transmitted via exeoutput_update is more than 100Mb (compressed ~12Mb) I'm trying to make some database locally... You can check it also (now in dev but stabile state) https://github.com/0red/sqlite_encryped_for_js_php just copy dll exe to the exeoutput fire dir

\AppData\Local\ExeOutput\UserApplication\{APP GUID} and then to your php code the php.... personally I'm using php as the js backend so in js console in Chrome (or exeOutput put sql('Select * from Cars;') and You will see the answer :-) Have a nice day Ja(cek) niedz., 24 maj 2020 o 07:39 Susan napisał(a): > Thank you Jacek (@0red ) for explaining. Sorry > for delay, been little crazy lately. > > I do have some questions for you and will email you after the usa holiday > weekend. > > — > You are receiving this because you were mentioned. > Reply to this email directly, view it on GitHub > , > or unsubscribe > > . >
meetshah8530 commented 4 years ago

Hey @0red Please teach me how to use this mainly that htaccess part please help me

0red commented 4 years ago

htaccess it the part of apache server configuration part --> https://httpd.apache.org/docs/2.4/howto/htaccess.html I'm using it to "hide" the ^pmo.log|pmo_ver.txt|pmo_dat.txt|pmo_dat3.txt files from the webuser directory, also the to allow the access from other websites (Header set Access-Control-Allow-Origin "*") What You only need is to copy htaccess as .htaccess for Your apache server

In details: Header set Access-Control-Allow-Origin "*" --> allow the cross domain js http request <Files ~ "^.(htaccess|htpasswd)$"> --> normal part --> hide .htaccess and .htpasswd files deny from all order deny,allow Require all denied <Files ~ "^pmo.log|pmo_ver.txt|pmo_dat.txt|pmo_dat3.txt$"> --> hide 4 files deny from all order deny,allow Require all denied

czw., 1 paź 2020 o 10:31 meetshah8530 notifications@github.com napisał(a):

Hey @0red https://github.com/0red Please teach me how to use this mainly that htaccess part please help me

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/0red/exeoutput_update/issues/1#issuecomment-701979426, or unsubscribe https://github.com/notifications/unsubscribe-auth/AC25MBGAUJY4GWCA46RBP33SIQ45BANCNFSM4NDDMD3Q .

meetshah8530 commented 4 years ago

Setting the local PC directory $up_dir='C:\Users\\AppData\Local\ExeOutput\UserApplication{APP GUID}'."\";

What in case of portable software running from pendrive/USB

Can you provide your Gmail or Something so that i can contact sir.

meetshah8530 commented 4 years ago

i am not getting this usage part also brother can you please make a video tutorial believe me you will be helping lot of people thanks in advance

0red commented 4 years ago

For portable storage please look at https://www.exeoutput.com/help/output/advancedoptions/ Portable Version --> create topology relative to the .exe file so something like '.\ExeOutput\UserApplication{APP GUID}'."\"; should work. Or get the actual folder directly from PHP similar to shown on (https://www.exeoutput.com/help/scripting/addscript/)[https://www.exeoutput.com/help/scripting/addscript/] You need to get HEPHPDataPath full list https://www.exeoutput.com/help/working-with-php/globalvariables/#list-of-pre-defined-global-variables

for details refer exeout() function in enc_data.php exo_getglobalvariable("HEPHPDataPath",0)

0red commented 3 years ago

Please find some step by step explanation in new wiki page. I hope it will explain all aspects and help You and others in update implementation.