Everything posted by hawkesley
-
phpmyAdmin runs very slowly
I am experiencing a very slow response with phpmyadmin. Browse a smal db of 2 tables is taking ages and often timeout. All other responses on the server are fine. Is there a utility to run to optimise mysql performance.
-
Configuring ftp on apache
Does anyone know of a laymans guide/tutorial to setting up ftp oa apche. I have a remote server and need to upload files from my development machine. The server is not hosted. Ant help appreciated.
-
Can Uniform Server run on windows server 2003?
Thanks. Turned off IIS and all is well.
-
Can Uniform Server run on windows server 2003?
Thanks. will do. do i need to turn off IIS?
-
Can Uniform Server run on windows server 2003?
I need to port my installation from windows XP workstation to a widows 2003 server (new machine). I have copied the instalation across but cant raise the apanel on localhost. I have started the server, but need to start MySql. Is there a guide as to setting up on a windows server please?
-
Virtual Host works for some not others
I have configured vitual hosts to allow access to 4 sites. The domain names of 3 are with one host and the fourth with another. I have set the domain ip to point to my server, and this works for my first 3 sites. However when I added a fourth with the different hosting company on the 26th Jan i just get the indes of my web root directory. To check whether it was the domain host i registered another domain on the host that worked for my first 3 and set the Ip to the server. The result is the same - the index. Can anyone suggest what eles I might do to sort this out. Vitual host config The last 2 sites are the problem. ##########VIRTUAL HOST SETUP########## # WWW.E-BOOKS4U.NET <VirtualHost *> ServerName www.e-books4u.net DocumentRoot /www/e-books4u </VirtualHost> ##########VIRTUAL HOST SETUP########## # WWW.CATERING4CASH.COM <VirtualHost *> ServerName www.catering4cash.com DocumentRoot /www/catering4cash </VirtualHost> ##########VIRTUAL HOST SETUP########## # WWW.HAWKESLEYPUBLISHINGSOLUTIONS.COM <VirtualHost *> ServerName www.hawkesleypublishingsolutions.com DocumentRoot /www/hawkesley </VirtualHost> ##########VIRTUAL HOST SETUP########## # WWW.KBCOACHING.CO.UK <VirtualHost *> ServerName www.KBcoaching.co.uk DocumentRoot /www/kbcoaching </VirtualHost> ##########VIRTUAL HOST SETUP########## # WWW.KBCOACHING.COM <VirtualHost *> ServerName www.kbcoaching.com DocumentRoot /www/kbcoaching </VirtualHost>
-
How to configure virtual host
- How to configure virtual host
i need to access 3 domains on my server. I went through the following set up but niether the localhost or the websites were located. Where have I gone wrong? Set up steps. I have set the dns to point at the server as follows www.e-books4u.net / ip address 217.49.159.226 and so on for the other 2. In my www folder I have set up 3 sub folders with the files in them named as follows e-books4u catering4cash hawkesley I have modified the conf file as follows NameVirtualHost * # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for requests without a known # server name. # #<VirtualHost *> # ServerAdmin webmaster@dummy-host.example.com # DocumentRoot /www/docs/dummy-host.example.com # ServerName dummy-host.example.com # ErrorLog logs/dummy-host.example.com-error_log # CustomLog logs/dummy-host.example.com-access_log common #</VirtualHost> <VirtualHost *> ServerName www.e-books4u.net DocumentRoot/www/e-books4u </VirtualHost> <VirtualHost *> ServerName www.catering4cash.com DocumentRoot/www/catering4cash </VirtualHost> <VirtualHost *> ServerName www.hawkesleypublishingsolutions.com DocumentRoot/www/hawkesley </VirtualHost> NameVirtualHost * <VirtualHost *> ServerName localhost:80 DocumentRoot /www </VirtualHost> I stopped and restarted the apache server, not the machine.- going live
Many thanks Ric- going live
I have just finished developing my application and wabt to move to a live state. I have a web domain and a server (windows pc) that I acces over the net. The application is in a folder located in www. At present I access http://'IP address'/'folder name'/ . I notice www on the udrive has a file index.php which I also have in my application. Is it safe to delete this file? I . would then replace the Ip address with my domain name so it would be http://www.'domain name'/'index.php' I realise there are other steps to running a production environment also. Is there a tutorial available? thank you - How to configure virtual host