Matthew

Results 52 comments of Matthew

Current solution I found was to add "/" to line 469: var destinationFile = currentFolder +"/"+ newFileName; It now works as expected.

Also having an issue. This should be fixed properly without removing spaces. I need files to remain the same since some files reference each other with relative urls. I can't...

Why did https://github.com/tomitrescak/meteor-uploads/issues/235 not work for you? You can now setup docker by mounting a directory outside of the docker to store files. That way each docker won't replace the...

Currently my workaround is as follows, its bad but works: ``` finished: function(index, fileInfo, context){ fileInfo.path = fileInfo.path.replace("//", "/"); fileInfo.url = fileInfo.url.replace("//", "/"); //will mess up http:// } ``` Bad...

Nevermind, I seem to run into lots more issues. Take a look at the solution in #220

Out of curiosity, I saw that you had the following repository: https://github.com/tomitrescak/meteor-tomi-uploads-s3. Are you going forward with that or is that also being deprecated, and how much does it depend...

@tomitrescak Please add me to the list of contributors because I think I would like to continue using the package and updating it. There is a current issue that has...

@gioboa Thanks - I didn't mean to be rude, I'd be happy to help if you point me in some right directions.

Okay, after doing a lot more reading on Qwik City specifically and cloudfare things are starting to make a lot more sense... Once I get things running I will try...

For 2. It was just the following: https://github.com/vendure-ecommerce/storefront-qwik-starter/blob/9099a34b8e8eb5677e435e3c369a8ce659cc82d7/src/routes/sign-up/index.tsx#L65C2-L71C12 ``` Account registration is not supported by the demo Vendure instance. In order to use it, please connect to your own local...