Skip to content

Tag: php

Logging into a soap API with cURL and Laravel

I’m having some trouble with this. I am trying to login to a Soap API with SSL I have generated the .pem file and can verify it is good by doing the following The following give me HTTP/1.1 202 Accepted Now, when I essentially try to do the same thing within a laravel controller with the following, I ge…

Symfony cascade persist or merge duplication

I have a problem with the cascade persist or merge, I have an application with two entities task and table (task_implements) When I create a task I choose cultures that are linked: If the user chooses 3 cultures => 3 tasks are created If the user chooses 3 cultures then 2 vehicles => 3 tasks must be cre…

How to list files inside public folder?

I have a persistent volume defined in server under www/public/images/logo/ I want to list all the files inside that folder. So far I have done following lines with no luck. Can anybody please help ? Answer If you are want to list all files on same server then you can use php function scandir(); If you are wan…