forge

How can I solve “We were unable to obtain a LetsEncrypt SSL certificate on your server” on the forge laravel?

怎甘沉沦 提交于 2019-12-11 16:58:22
问题 My server using forge laravel(https://forge.laravel.com) When I click obtain certificate button to add new certicate like this : It does not work. There exist error like this : We were unable to obtain a LetsEncrypt SSL certificate on your server The full error like this : How can I solve this error? 来源: https://stackoverflow.com/questions/48700055/how-can-i-solve-we-were-unable-to-obtain-a-letsencrypt-ssl-certificate-on-your

Autodesk ObjectId and ElementId in dwg

旧街凉风 提交于 2019-12-11 15:06:22
问题 I am use to develop one web app using Forge API. It's working well and good. At the same time am using design automation in forge. I can able to create Package and it's working fine. I will process the dwg file using forge api preparing to viewer. I can able to view dwg in browser. My issue is I have viewer click event the event click populate the element id. However, my package I can get only the object id. element id and object id totally different. What is the conman id each object client

Laravel Forge - Node.js Websocket Timeout

邮差的信 提交于 2019-12-11 12:27:13
问题 I have a simple socket.io node server hosted on my laravel forge/digital ocean server. Everything is working find on my local machine using homestead, however I get the following error on production: http://[IP]:[PORT]/socket.io/?EIO=3&transport=polling&t=LCPeh0O net::ERR_CONNECTION_TIMED_OUT On the server I can see that the node server.js file is receiving messages from Laravel but the client can't connect for whatever reason. Is this something to do with the setup of Nginx? The

Deleting a file from bucket. Autodesk-forge

懵懂的女人 提交于 2019-12-11 06:37:10
问题 There are problem with deleting a file from wip.dm.prod bucket ("errorCode": "AUTH-012"). But I can download current file by using -x GET instead of -x DELETE. I use this tutorial -> https://developer.autodesk.com/en/docs/data/v2/reference/http/buckets-:bucketKey-objects-:objectName-DELETE/ . Attach an example below. Request curl -v https://developer.api.autodesk.com/oss/v2/buckets/wip.dm.prod/objects/de34f4c9-457c-4653-a9e4-8bbad12bf5ec.rvt -X DELETE -H "Authorization:Bearer

How to add custom environment map for background in autodesk forge?

落花浮王杯 提交于 2019-12-11 06:35:53
问题 I want to add environment map for background,I have tried viewer.setLightPreset(value) ,but I don't like the default map.I need to add custom environment map for background.I learned about Add Custom Light for the View and Data API Viewer,and added this code in my viewer Autodesk.Viewing.Private.LightPresets.push({ name: "selfEvn", path:"selfEvn", type:"logluv", tonemap:1, E_bias: -2.0, directLightColor: [0, 0.84, 0.67], ambientColor: [0.8, 0.9, 1], lightMultiplier: 0.1, bgColorGradient: [230

clipping planes in forge viewer not able to clip objects with ShaderMaterial

蓝咒 提交于 2019-12-11 04:24:43
问题 I am trying to add custom objects with THREE.ShaderMaterial in forge-viewer, I am able to add and render the objects in forge-viewer's overlayScene . I referred this blog for adding the same. The problem I am facing is: The forge-viewer's clipping planes are not able to clip the custom added objects. If I try to add same object with other material, then clipping planes are able to clip them. I have tried this. But I am getting error that Cannot resolve #include<clipping_planes_pars_vertex

Uploading Specific Vendor files with Laravel's Envoyer

本小妞迷上赌 提交于 2019-12-06 23:22:25
问题 I'm trying to upload only specific vendor files to my server using Laravel Forge. The reason is because I've edited the code in some of my dependencies, whats happening now is that certain features of my site are breaking because when I push from Envoyer to my server , Envoyer is grabbing from my GitHub repo. my GitHub repo doesn't contain a vendor directory, as it shouldn't because Iv'e added that directory to my gitignore file /vendor/* /node_modules Homestead.yaml Homestead.json .env I've

Uploading Specific Vendor files with Laravel's Envoyer

给你一囗甜甜゛ 提交于 2019-12-05 03:32:21
I'm trying to upload only specific vendor files to my server using Laravel Forge. The reason is because I've edited the code in some of my dependencies, whats happening now is that certain features of my site are breaking because when I push from Envoyer to my server , Envoyer is grabbing from my GitHub repo. my GitHub repo doesn't contain a vendor directory, as it shouldn't because Iv'e added that directory to my gitignore file /vendor/* /node_modules Homestead.yaml Homestead.json .env I've tried white listing certain folders within the directory like so: /vendor/* /node_modules Homestead

Composer hangs on “Resolving dependencies through SAT” on 4.2

删除回忆录丶 提交于 2019-12-05 00:55:34
Things I've tried: Removing everything except for Laravel (version 4.2.*) - This completes but still hangs for around 5 minutes Updating composer Removing /vendor Doing clean Laravel 4.2 install (hangs around 3 minutes) Doing clean Laravel 5 install (doesn't hang at all) Turning off xdebug completely (doesn't seem to make a difference) With all my packages, I've seen composer complete but only when I left it running overnight. I can't deploy to forge at all because it times out! This only started happening two or so weeks ago. For all looking for an answer...here's what helped increase

How can i encrypt and decrypt a pdf blob with forge and store in localStorage?

こ雲淡風輕ζ 提交于 2019-12-01 08:44:54
I've trying to encrypt a Blob of pdf file and store it in the localStorage and read and decrypt it later when i'm offline. My app is written in AngularJS and the encryption is done with forge Here is my code for downloading the pdf file: $http.get(url, { headers: { "Application-Authorization": appContext.user.token }, responseType: "blob" }).then(function(response) { backendCipherService.encryptPDF(response.data, appContext.user.password).then(function(data) { $localForage.setItem("document::" + document.documentId + "::pdf", data.json).then(function(success) { console.log("cached pdf",