How to remotely update Symfony FW applications? [closed] - php

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I have a reseller hosting and I create hosting space for my customers. All hosting includes the same PHP applications written in Symfony FW.
Everything is good so far, but there is a point where I get stuck.
How to remotely update?
Is there a bundle or method for this action? If yes, what is it?

are you want to update Symfony frameworks remotely?
if you like pull-based strategy so you can create an endpoint for yourself and return versioning as a result and set a crontab inside of your hostings to call that endpoint and check if the version has been changed so run composer update Symfony/* in that directory.. or for a push-based strategy you can add endpoints in your Symfony hosting app and call it from outside.

Related

Homestead and Laravel [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 months ago.
Improve this question
I'm looking for some assistance. I'd like to use PHP to build a web-based health system. Laravel is something I'm familiar with. I'm still confused about the difference between homestead and Laravel. Could someone please explain and advise me on which one to use? Thank you.
Homestead is a vagrant box configured specifically configured to locally develop Laravel applications. Laravel is a MVC framework written in php.

Developing PHP Custom Application Setup Environment [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I Have Created PHP Custom Application, want to make a UI for Setup the project in User System without touching and configuring the code.
As of Now, I am Calling a Php File Writing the complete Script(DB creation, and table Creation, Loading the Content in Table, creating Config File etc.)
It`s Working File. if there is an other solution please Share.
Thanks.
During the installation, create a particular file.
In the index.php, check if this file exists before proceeding. If it does, installation has been run before and you can proceed. If it doesn't, the application is not installed yet.

monitoring Requests in php [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I have a project in PHP and it works as a REStFull service, an android application constantly request some functions, I want to know, from the server side, How could I see all the petitions?
the PHP project is in a hosting.
If you are after activity log, your web server can provide that (Apache or Nginx) for example, otherwise, you will have to implement your own logging strategy in PHP (https://github.com/Seldaek/monolog can help you)
If you want to go further, you can use logstash alongside Kibana and Elastic to get you a nice representation of your service's behaviour.
https://www.elastic.co/products/logstash
If logging your Rest service is very costly in term of performance, www.gearman.org is a very good option to easily bring some asynchronousity in your application.

Host PHP site on Dropbox [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I use DB on regular basis to host static sites for clients so that it makes easy to change anything and ask to client check. I use 'Public' folder to do that. Colloboration with client becomes super fast and easy.
Now I researched a lot on google on hosting php site there. But didn't found anything. I need to upload small changes to server to show client and the process is again and again.
What you guys recommend as a good solution?
Set up some automatic deployment to a server that your client can access. Use version control for your changes. When you merge into a specific branch, your script can automatically do the deployment for you.

Method for common Single Sign On (SSO) for Yii and core PHP Projects [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have two projects, one developed in YII and another developed in core PHP. I got the best way to solve it using
https://simplesamlphp.org/
But I don't have access to the server where my project are hosted because I need to setup SimpleSAMLphp on my server. So I am searching for alternatives and I got another way but I am only able to implement that only if both projects are on Yii:
http://www.yiiframework.com/wiki/135/single-sign-on-across-multiple-subdomains
I have tried some others too but unsuccessfully, so please help in my problem with best solution. Thank you in advance.

Categories