sir.harpreet Posted December 1, 2006 Share Posted December 1, 2006 hi all..[b]this is a charitable work that I am doing for a church..I am not a PHP professional..[/b]I am a Business Analsyt, basically, One church has approached me and have me to develop a library management system.. i am not charging any money from them or anyone associated and have agreed to develop it for free..I am okkie with all the coding, database development and everything.. i have chosen php for development.. [b]and this is the FIRST time i am using it.[/b]My PROBLEM is: I can develop the application but i am not aware of how to run it.. in other words, i do not know how to upload it on a server. plz tell me should i develop the system on server which will host it or shall i develop it on any Pc and then later copy everything on the server.. ooh yes and that reminds me.. can i copy everything (source code-php & DB) and paste on the server.plz help me in this....my email id is [email protected]thanks a lot Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/ Share on other sites More sharing options...
Maxraid Posted December 1, 2006 Share Posted December 1, 2006 You have to develop it on your own computer and later upload it to the hosted server.You upload the files with a ftp-client, thats the software you use to connect to the hosted server, the database is working a bit different the easiets way is probably to write a sql script and run it on the server, but if your hosted server has phpmyadmin it will be a great help for you. 8) Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133367 Share on other sites More sharing options...
Perad Posted December 1, 2006 Share Posted December 1, 2006 The easiest way is to install apache, mysql and php on your computer. This will make your computer a web server and thus make development very fast. The second way is to get a web host that has php and mysql. You can then update stuff as you go along. The problem with this is that development is slow as you have wait for it to upload before you fix errors.To upload data you can use IE6 or a more advanced ftp client. Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133369 Share on other sites More sharing options...
edg322 Posted December 1, 2006 Share Posted December 1, 2006 Does your web host offer any kind of support? Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133370 Share on other sites More sharing options...
projectshifter Posted December 1, 2006 Share Posted December 1, 2006 [quote author=Perad link=topic=116968.msg476935#msg476935 date=1164978376]The easiest way is to install apache, mysql and php on your computer. This will make your computer a web server and thus make development very fast. The second way is to get a web host that has php and mysql. You can then update stuff as you go along. The problem with this is that development is slow as you have wait for it to upload before you fix errors.To upload data you can use IE6 or a more advanced ftp client.[/quote]Gross... don't advocate the use of IE for FTP! Just go to www.easyphp.org and it sets it all up for you, makes it pretty easy instead of having to setup apache, php and mysql (which can be very difficult for those who are inexperienced). Then all you have to do is develop it :) Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133378 Share on other sites More sharing options...
Daniel0 Posted December 1, 2006 Share Posted December 1, 2006 For development I would setup my own localhost web server. Then install a version control server (such as Subversion (SVN)) on the remote computer, and the client on your local computer. Then when you finish something commit it to the repository. Version control makes you able to roll-back changes and is especially effective when multiple users are developing on the same project. When you have a finished version you need to get it to the remote server. For that you can use FTP (File Transfer Protocol) or if you and the server uses Linux and you have a shell account on the remote server then you could use scp. FTP would probably be easiest though. Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133399 Share on other sites More sharing options...
sir.harpreet Posted December 2, 2006 Author Share Posted December 2, 2006 AWESOME GUYS!!!Thanks a lot for ur comments..so now i get a picture of how to do the things...the best option that looks to me is that to create an application on a computer then later make it a web server...meanwhile ill also try easyphp.. as suggested by projectshifter.. to make my local pc a webserver to run a php application - i need three things -apache, php and mysql.. right??? ill install these three ..but is there any specific order of doing that or any particular way of collaborating them??ill appreciate if you can tell me the proper order--like step wise or any site where there would be proper steps..thanks a lot guys...take care Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133846 Share on other sites More sharing options...
trq Posted December 2, 2006 Share Posted December 2, 2006 Easyphp installs all of those for you. Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133856 Share on other sites More sharing options...
fert Posted December 2, 2006 Share Posted December 2, 2006 if you are doing them individually install apache first and then php and mysql last. Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133857 Share on other sites More sharing options...
jsladek Posted December 2, 2006 Share Posted December 2, 2006 Just installed easyphp on a virtualPC on my laptop due to this thread. That really was EASY. It installs in about 1 min or so (approx 30mins total time from download to happy). I had to change a line in the apache config so it will listen on the ip and now I can get to it with my laptop browser. I can't wait to play some more... This will be a good testing server for my laptop! Glad I read this thread.-John Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133867 Share on other sites More sharing options...
sir.harpreet Posted December 2, 2006 Author Share Posted December 2, 2006 i tried EasyPHP.. it gave me an error.. Apache servr cannot be runned.. another web server use the web portwhat to do now???????? Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133914 Share on other sites More sharing options...
Maxraid Posted December 2, 2006 Share Posted December 2, 2006 U have to go to the apache configuration file and change the port that it is listening on, u will find the file in this directiv of ur apache installation \Apache Software Foundation\Apache2.2\conf there will be a file called httpd.conf open it in a normal texteditor and the settings will be in line 53 and 142 change it to a port which is not in use by other programs Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133917 Share on other sites More sharing options...
Azu Posted December 2, 2006 Share Posted December 2, 2006 Make the php files on your computer and upload them to your server via [url=https://addons.mozilla.org/firefox/684/]FireFTP[/url] on Firefox.NEVER use something as unholy as ie when you are doing work for a church! Quote Link to comment https://forums.phpfreaks.com/topic/29092-church-work-help-plz/#findComment-133983 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.