Posts by Jordan Bragon • 185 points
11 posts
-
0
votes1
answer447
viewsA: Implement permissions on a REST API Asp.net core 2.0
With some research and a lot of reading I was able to solve my problem and implement Identity in my API. First you need to change the inheritance of the context class from "Dbcontext" to…
-
0
votes1
answer447
viewsQ: Implement permissions on a REST API Asp.net core 2.0
I am implementing an API in ASP.NET Core 2.0 in which I need to implement permissions, but the forms I found (Roles, Claims, Policies) left me very confused, because the permissions structure I need…
-
1
votes0
answers21
viewsQ: Make libreoffice call by browser
I need to edit a document online. Call libreoffice from the browser and open it on the client’s machine to edit the document online. Something that resembles the online edition that exists in…
-
0
votes1
answer1369
viewsA: CSS does not load according to the route in the Standard
Problem solved. just change the href of the link tag. Before: <link href="/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">nsira o código aqui Correction: <link…
-
0
votes1
answer1369
viewsQ: CSS does not load according to the route in the Standard
I have a Blade file in which it is my base layout (which will be loaded on all pages). But according to what I set the route, the css of this page does not load. Ex.: if my route is like this:…
-
0
votes0
answers438
viewsQ: Certify PDF with Java
I am developing a GED (Electronic Document Management) system in Java Web. In this system I need to have a PDF certification feature, in which the A3 model certificate will be used. I have no idea…
-
4
votes2
answers185
viewsA: Hide pdf extension in URL
I got what I wanted. My URL was as follows: /gedphp/upload/id_do_register/file.pdf. Therefore I used the following settings: RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.pdf…
-
1
votes2
answers185
viewsQ: Hide pdf extension in URL
I need to hide the extension of the pdf file that opens on my web system. I did some research and saw that to do by htacces, but did not succeed. How can I do this?
-
2
votes1
answer6690
viewsQ: Extract PDF information via PHP position
Is it possible to extract the information according to the PDF position (x,y coordinate) in PHP? I have seen that it is possible to do this in C# using the Pdfreader class.
-
1
votes0
answers53
viewsQ: Highlight searched terms in PDF
I am developing a GED (Electronic Document Management) PHP project. In it I need to search for the PDF content and list them (so far so good), but when I open the PDF’s listed, I need to highlight…
-
8
votes2
answers11564
viewsQ: Digital Certificate with PHP
I am developing a system in which I need to implement the use of A3 digital certificate so that the documents attached to the system have legal value. How is this done? Is it possible to do it in…