Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Which is better? To have php cache through my server or installing a cache plugin (wordpress).
Synergy is the key to making a site load quickly. Browser Cache, Compressed Images and loading Java Script last are probably the most advantageous, will yield the biggest return for your time.
W3 Total Cache is a plug in trusted for improving the performance of many WordPress sites. You will need to spend some time learning about the plugin's features but it will defiantly get you going in the right direction.
However, I would start with Google's Page Speed Insights to give yourself a baseline as you make changes via W3 Total Cache.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I am working on an android application that uploads a file to my server and then gets a string response. The String requires modification before presenting to the user.Should the modification be done on the server or the phone...Which is faster?
Server is something you control. If it's slow, upgrade it. But you cannot control devices and there are plethora of them, some are high-end some are low-end.
So basically you cannot expect any processing to be fast on the device side because their performance is not uniform.
Having said that, I would suggest moving as much processing as possible to server side. A good app is light but rich. Just like Google. It's just a text field on client but behind the screen it is powered by thousands of servers.
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.
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.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I am working on a PHP script where I release updates or fixes every few months and at present I am manually keeping record of version for example Product Name v1.7 or Product Name v2.2 and so on. I use PHPStorm for web development and wanted to know how do companies/people keep track of their version, do they also name and maintain it manually or is this an inbuilt feature in IDEs that can help keep track of this,
For example Wordpress, 3.7, 3.8 and many other open source/commercial products. I will really appreciate some feedback on this.
If you are using any version control like Git or SVN it's possible.
You can use a commit message including name and version number of product. Later you can list all commits with the commit message.
Browse Version history
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Particularly, for PHP development, which one performs better? I'd like to deploy a Zend Framework 1.X app on the chosen platform. Which one makes this easier/possible?
One thing I particularly love about Pagodabox is how they "force" you to use git (or some other version control system). I know you probably wouldn't use either GAE of PB for trivial projects, so you're probably already using some version control system. But I still think that's a nice touch of them. Plus it makes deploying that much easier.