Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I would like to practice web design by myself. I have not had any problem at the moment to practice css, javascript and html. The problem starts when I try to practice PHP and SQL, to do this i believe that a server is necessary. I would like to know if there is any way to create a local loop or private server that can simulate a server to test my private web page?
To give further information my pc runs on windows, for this I would have predilection to make this server without the need of installing a virtual machine.
Thanks in advance.
XAMPP is the most common package for this.
http://www.apachefriends.org/index.html
1 Just download and install wampserver http://sourceforge.net/projects/wampserver/
2 Make sure you do not install it in your "Program Files" directory. You could use the C:\wamp
3 Put all your files in installationDirectory/www
That's all you need
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I built a small app for myself but now I'd like to host it somewhere for others to use too.
Is there any cheap options to host php+mongo stack without renting an expensive VPS?
Your best best would require you to still roll your own server and set it up. But the two hosting services that come to mind are Linode and Digital Ocean.
https://www.linode.com/
https://www.digitalocean.com/
I have used both and they can be very affordable. The downside is that you have to do your own setup and config. They do provide lots of tools to help out with that. Scripts you can run and pre-made images.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm new to subversion control. I'm working on a PHP project in my localhost and I want to share my work with another person from another system so that he can also make changes to the same project. I wanted to use TortoiseSVN for this. Do I need a server for storing my repository? How can I do this? Can anybody suggest me a good tutorial (video may be) so that I can do it myself. I'm sorry if this is an off topic. But I searched a lot for this but couldn't come up with something that fits me.
TortoiseSVN is client, in order to share repository in Net, you must to use server (own or 3-rd party)
There are a lot of (free and not-free) SCM-hostings in the world
Easiest and fastest and easily understood way to have http-based repository on Windows host is VisualSVN Server
In terms of manageability, accessibility and added (on top of pure repository) functionality SVN-hosting is better way (checked and confirmed by my own experience)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have a sharing hosting, and obviously I don't have any SCM (Source Control Management) on it, but having to deploy every small changes here and there every now and then is frustrating.
Does anybody know a better way than using FTP or cPanel File Manager?
I would prefer not having to deploy every changed file manually.
The best solution would be to have some free SCM that I can run in a shared hosting, perhaps a PHP web application that does the same/similar thing to SVN
Consider using git-ftp: it allows you to use Git to manage your project on your development machines and use plain old FTP for deploying the changes to the shared hosting. git-ftp is smart to do only minimal transfers, delete files and directories when they are deleted in your repository etc.
Subversion, git and mercurial are all free, can't get much cheaper than that and all support having hooks that will push changes, (by various mechanisms), to multiple locations.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have a Apache/PHP web server. Is there any web based management tool to configure Apache server? I need to use this to configure httpd.conf file.
Webmin will do this: http://www.webmin.com/. Plus you can use it to configure a whole host of other services: bind, mail, mysql, etc.
You are looking for cPanel at http://cpanel.net/ . You will be able to manage all server services, however Webmin is good alternative too.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a PHP Sandbox, something like JSFiddle is to JS?
If you are just looking for an online site to play around with PHP code, try
http://phpfiddle.org/
http://ideone.com/
https://codeanywhere.net/
http://www.tehplayground.com/
http://sandbox.onlinephpfunctions.com/
http://codepad.org/
https://eval.in/
https://implode.io/ (permits attaching a version of the Laravel framework)
The most sophisticated is:
http://3v4l.org/
It lets you test your code in all PHP versions starting from PHP4.
If you want something for your local environment, the Runkit extension aims to provide a PHP Sandbox:
Instantiating the Runkit_Sandbox class creates a new thread with its own scope and program stack. Using a set of options passed to the constructor, this environment may be restricted to a subset of what the primary interpreter can do and provide a safer environment for executing user supplied code.
If you dont want to use Runkit but still want a PHP Console on your server, try
Jordi Boggiano's Blog - PHP Console in Your Browser
http://github.com/seldaek/php-console