Host PHP site on Dropbox [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 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.

Related

Why PHP built-in web server should not be used on a public network? [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 2 years ago.
Improve this question
I've been reading about PHP document in https://www.php.net/manual/en/features.commandline.webserver.php and was wondering why built-in web server should not be used on a public network?
Is it because of the security issues?
If yes, is there any example or details about this?
From the documentation:
The web server runs only one single-threaded process, so PHP
applications will stall if a request is blocked.
Also, it won't restart by itself if for a reason or another the process crashes.
In a pinch, it's a good tool, but it's definitely not be used on a public network.

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.

Doing PHP through dropbox, and new to programming. How do I set up? [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 7 years ago.
Improve this question
I bought space from dropbox for personal use, and I found out they have a public folder where I can share my files like a website. I wanted to learn PHP save saving my files into my dropbox folder, and this will not require me any FTP.
I don't know much about website programming. I have some background in technical programming for work. But that's it. I tried to follow this page, but I really don't understand them. I have also viewed this youtube page, but it's not window based, and I got stuck on using composer. I followed as best as I could, but all the samples in the SDK never shows up correctly. Anyone with any other sources to help me get started on setting up PHP through my dropbox? Thanks in advance.

What to use to make a cloud-powered app [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've made an android app that let you save some data locally (for example: photos). Now i would like to create a web service that will automatically backup the data and later let the user to check them on a web application (eventually coded with PHP).
I know PHP for server side, and some python. Should i create a Rest-full api with php using a cms like described here or should i use Google Cloud Platform? Which is more convenient?
The application should:
Authenticate the user,
Automatically backup the data,
Let the user
access the data on a web application
Personally I find Parse to be really useful, powerful and affordable. In the scope of developing apps for local businesses we still haven't paid a dime and it has saved us a ton of development time. www.parse.com

Add online folders to website [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 9 years ago.
Improve this question
I'm hoping add folders to my website, that users can access with the same flexibility as Windows Explorer / Dropbox etc (ideally anyway).
I'm on a hosted Unix platform at the moment so can edit htaccess for browse ability & security but that has it's limitations in terms of ease of usability.
Has anyone recommendations as to a direction I should go in in terms of scripting or even third party hosted/cloud solutions? I may need portability to Windows (IIS) platform at some stage but its not a key consideration.
Thanks
This is called webdav. Works with apache and iis. There is no caching and windows support isn't that great but it works. If i remember correctly, there is no local caching.

Categories