Howto Server

How do you host a server on battlefield 1942?
I wanna know howto run a server and be able to play in it.

press the o butten

Please help im trying to set up a local testing server in dreamweaver cs3, but i cant seem to figure out howto
My site is going to be called http://www.lotsoffun.com/ Ive chosen the following in the advanced tab, category Testing Server: server module: PHP MySQL Access: Local/Network Testing server folder: C:\Documents and Settings\Adam\My Documents\LotsOfFun\ Problem: i type in the URL prefix http://localhost/lotsoffun/ then i click on Test URL it then comes up with Dreamweaver cannot use the prefix you entered to display live data (HTTP errror: 12029) please help ive been tryin to figure this out for about 3 days now. thanks

It looks like you're trying to access the local version of your files directly, instead of through a web server. That won't work... especially if you'll be building a dynamic site with scripts and databases to store info. You'll need to install a web server and scripting language. You'll most likely also want the a database server. The commonly used by most major applications like content management systems and shopping carts is PHP and MySQL. While there ARE software bundles that install all these for you at once, I wouldn't recommend them. First, if (when) something doesn't behave the way you expect, you're not as familiar with all the installation options as you should be. Second, the bundles usually give you the latest versions of the software, which is NOT necessarily what you want... it's better to mimic as closely as possible the versions that are being used on your remote server. Here are some links (things should be installed in this order--all are free)... Apache (the web server) http://httpd.apache.org/ MySQL Community Edition (the database server) http://dev.mysql.com/ PHP http://php.net

howto to build a mail server use postfix ,uw-imapd and ipopd, squirrelmail ?
step by step please..

squirrelmail is best mail server.

Just trying to set up a server using Apache HTTP Server 2.2.?
Im trying to follow this "HowTo" http://lifehacker.com/software/feature/geek-to-live--how-to-set-up-a-personal-home-web-server-124212.php And i got to step #2 so i can acses my music but i cant figur out step #3 i get lost trying to set up the pasword. If anyone knows anythig that might help me figur this out that would be graet. Just doing for the fun of it miht try to figur out how to host a web page on it wusing MS Word. But fist i must figur this out so its protected.

Let's make this real easy: 1. Open My Computer. 2. Double-click the C: drive icon to open it. 3. Create a new folder named ApacheDocs. 4. We will now create the user name NewUserName: htpasswd -c "C:\ApacheDocs\passwords.txt" NewUserName 5. We will now set the path to the passwords file: AuthType Basic AuthName "This is a private area, please log in" AuthUserFile "c:\ApacheDocs\passwords.txt" AuthGroupFile /dev/null require valid-user Follow the rest of the instructions as provided.

what are proxy severs which sites offer them and howto use it if ur using a LAN.?
what is meant by the error 404 forbidden and 403 forbidden is it possible for the user controlling the main server on the LAN to stop what i am downloading and view the data transections such as this ques and my emails?? (ans all or any one of them)

The error you got i.e. 404 forbidden and 403 forbidden means... that the server or proxy servr through which you go.. is not allowing your target computer access.... and yes it is possible for the user controlling the main server on the LAN to stop wht you are downloading.. and view the data transactions such as this questions and emails... if he wish to do this intentionally.... this is because your pc may be connected to a network that is connected to an ISP ( Internet Service Provider ) server ... which broughts you an internet connections... then all of your internet traffic from your computer.. to another pc.. goes through the server.... you can get a list of proxy servers... by searching the same material from website like google... and once you get the proxy server ip address and port number .. then go to INTERNET EXPLORER--> TOOLS --> INTERNET OPTIONS--> CONNECTONS --> LAN SETTINGS --> JUST select the check box.. or proxy server and enter the ip address and port number out there.. then you might access the material on net .. for which you have been denied access... hope you might have got the answer.... bye

Howto use "tail -f" to watch gzipped logs?
I have a Linux server and my log files are gzipped like so: username.Aug-2006.gz username.Sep-2006.gz If I used SSH to log in and I wanted to watch my logs live what command would I use? I have read that "tail -f" would work for uncompressed logs. Is this possible with compressed logs?

A compressed log is probably just there for archival uses, not actually being used. You could try it on a compressed logfile, and yes the command is "tail -f" (tail, show last 10 lines, -f, follow). Most active log files will not be compressed.

proxy server question?
it won't work on my computer. i used the instructions from here http://www.ghacks.net/2006/05/01/howto-watch-abc-tv-streams-outside-the-usa/ but my internet won't connect when i do that. help please?

If you are behind proxy, all you need to know is the address and port number of the host. Configure this in your Control Panel > Internet Options > Connections > LAN Settings. Access to outside sites is controlled by the proxy server. If you are unable to access some sites, it might be due to the reason that the network admin blocked the site. If you are still unable to access local sites (intranet) or remote sites (internet), contact your network administrator. They know exactly what to do since they are the one who implemented your custom connection settings.

Howto use .htaccess to rewrite a subdomain to a different domain?
Hi Guys I run a forum that has two different addresses pointing to the one page. Basically I want to write a htaccess file but can't figure out where to start. My host has given me a subdomain ie: http://subdomain.hostdomain.com. Can I write a htaccess file that will rewrite all the sublinks under http://subdomain.hostdomain.com to point to http://www.mynewdomainname.com. http://subdomain.hostdomain.com and http://www.mynewdomainname.com point to the exact same spot on the host server but http://subdomain.hostdomain.com is now obsolete and I would like to have it all point to http://www.mynewdomainname.com. Hope this makes sense. :o)

Probably. If the server's running apache, try using mod_rewrite.

how can download a site that is filtered?
my software is webzip.if u know better tell me & howto break filter.if uknow filter server tell me......

It is probably filtered for a reason. Either at work or at school. Best to save such web srufing for yoru own personal time at home.

Javascript how to make a message appear, disappear, and then reappear?
Hey Everyone, What i am trying to do is basically i have an update script where someone fills out the information an clicks update. It updates the database an a message appears below saying You have updated the form! However, now i am trying to make it so that every time you click the update button the message will come up an then disappear after 10 seconds. Here is a link to the script i am using to update http://www.captain.at/howto-ajax- form-post-request.php if you click submit on the example an wait 10 seconds you will see a message under server response. An here is how i was trying to make the message disappear The message will appear an disappear fine. I just cant make it reappear. Thanks to all who help, Rach

use timer event. setTimeout("do_something_one_second_from_now();", 1000); in the handler do_something_one_second_from_now() { // ... setTimeout("do_something_one_second_from_now();", 1000); } you make the thing appear or disappear end then reschedule again by calling setTimeout again. see : http://www.unix.com.ua/orelly/web/jscript/ch10_03.html section Timer events.