View Single Post
Old 11-03-2003, 12:09 AM   #7 (permalink)
Latch
In Your Dreams
 
Latch's Avatar
 
Location: City of Lights
First of all.. great idea seretogis!

Quote:
Originally posted by spived2
Is there a way to test php code without having to upload it to a server? Like a program for a virtual enviroment or something
<--Php newbie
You can run a http server with php on your own system, so you can test from your home system (don't even need to be connected to the net).

Windows:
HTTP Server:
I recommend Apache. Windows 2000 and XP comes with IIS (Microsoft's Web Server), but as I've never used PHP w/ it, I won't talk about it. As gigawatz said, it is a good quick 'n dirty test enviroment. Google for IIS+PHP if you want to try that. You can get the latest version of Win32 Binaries for Apache at:

http://www.apache.org/dyn/closer.cgi...inaries/win32/

I suggest a 2.x version. At the time of this writing, apache_2.0.48-win32-x86-no_ssl.msi would be appropriate for you. Use the .exe version if you don't have the MSI installer (chances are you already do. XP, 2K, and ME comes with it).

Note: If you're using XP, you need to have XP SP1 installed.

PHP:
You can get PHP from:
http://www.php.net/downloads.php

At the time of this writing, the latest stable version is 4.3.3. You can get it here:

http://www.php.net/get/php-4.3.3-ins.../from/a/mirror

Setup:
Once you install those two programs (apache first, then PHP), edit your apache configuration and add this:

ScriptAlias /php/" c:/path-to-php-dir/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"

Then start the Apache service and you should be able to run PHP scripts with no problems.

Other:
There are distributions out there that install everything for you in one big go (and usually come with MySQL, a Database Management System). I've never tried these, so can't verify how good they are. I don't have any links, but I'm guessing you could google for them. Also, below's some links with more indepth insturctions on setting up Apache/PHP/MySQL. Good luck!

http://www.coe.uncc.edu/~asingh/setup_apm.htm
http://www.weberdev.com/ViewArticle.php3?ArticleID=86


Linux
HTTP Server:
Once again, Apache 2.x is recommended. You can get it from:
http://httpd.apache.org/download.cgi

Just chose one of the Unix sources.

PHP:
You can get PHP from: http://www.php.net/downloads.php.

Just choose one of the sources.

Other:
You may want to install MySQL as well. Setting up Apache/PHP on Linux can be a pain, but not too bad. Below are some sites that give you good insturctions on how to do it. These may also go through installing other stuff, like SSL.

http://www.weberdev.com/ViewArticle.php3?ArticleID=378
http://www.devshed.com/Server_Side/P...inglySeamless/
http://www.linuxguruz.com/z.php?id=3...p+mysql+apache


General Links:
The following link(s) will give you setup/install instructions for either Linux or Windows.

http://www.php.net/manual/en/install.apache2.php


OK. That's it. Good Luck. If anyone has anything to add to this or thinks should be changed, just reply to the thread and I'll add it in.

Last edited by Latch; 11-04-2003 at 04:06 PM..
Latch is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360