View Single Post
Old 04-30-2005, 02:36 PM   #18 (permalink)
arch13
Loves my girl in thongs
 
arch13's Avatar
 
Location: North of Mexico, South of Canada
Quote:
Originally Posted by Silvy
Not being disrespectful, but this is a case where the last part really is the most important so I removed most of the quote to get to the good stuff :



Very close! You see, the file_exists function looks for files relative to it's own location. Since brewery.php is in www/brewery/ the above file_exists will look for www/brewery/imgs/brewery_1.jpg
What we need is it to look for 1 directory higher than itself.

This can be done in one of 3 ways:
By using the full path of the file (so it looks for an absolute path, instead of a relative path.) (file_exists("/var/www/localhost/http/whatever/www/img/brewery_1.jpg")
By using a relative path, but to look one dir higher (file_exists("../imgs/brewery_1.jpg")
By using a global directive to point to the file locations.

This one should be relatively easy to grasp so we're going to do this the most elegant way (via the global constant).
Since all images are always located in www/imgs let's have index.php set the image_path constant:
(put this in the top-section of index.php, makes it easier to find later)
PHP Code:
<?php
define 
('IMAGE_FS_PATH''/var/www/img/');  //this should be the full filesystem path to your images
define ('IMAGE_WWW_PATH''img/');  //this should be the path relative to the URL.  (so it will expand to http://www.arch13.com/img/ etc)
?>
Then, change the $base statement, the first file_exists statement, and the echo statement in brewery.php to use the new paths:
PHP Code:
$base "brewery_";   //like you said
file_exists(IMAGE_FS_PATH.$base.$id.'jpg'//this expands into '/var/www/img/brewery_1.jpg
echo "<img src='".IMAGE_WWW_PATH.$base.$id".jpg'>";  this expands into imgs/brewery_1.jpgwhich will allow the browser to find it relative to "http://www.arch13.com" 
And leave the rest of the code as-is.

Does it work now?
Nope
I see two problems going on here, and I'm trying to see how we can fix them.
The first is actually straight foreward, but I almost didn't spot it.
We can't have $base= "brewery_"; like I suggested. It needs to be just "brewery" since the base statment is also used for finding the paths. Throwing in the underscore to makes the images work but makes the file paths not work.
Perhaps
file_exists(IMAGE_FS_PATH.$base._$id.'jpg';
But that screws up the code (I tried it). It parse errors like so:
Parse error: parse error, unexpected T_VARIABLE in /homepages/6/d93661089/htdocs/brewery_test.php on line 52
Line 52 was if(file_exists(IMAGE_FS_PATH.$base._$id.'jpg'; )) { , so that was a bad idea on my part to try.

Honestly, It's simplest for me to just change the image names to brewery1.jpg, since that should make the code work. I'll try it right now before continuing this post...
Nope

Okay, here are lines 49-59 of brewery.php that don't want to co-operate


PHP Code:
<?php 
$base 
'brewery_';   //only for images if they are called brewery1.jpg etc.
$id $_REQUEST['id2'];
if(
file_exists(IMAGE_FS_PATH.$base.$id.'jpg')) {  //this expands into '/var/www/img/brewery_1.jpg 
echo "<img src='".IMAGE_WWW_PATH.$base.$id'.jpg'>";  this expands into imgs/brewery_1.jpg, which will allow the browser to find it relative to "http://www.arch13.com" 
} elseif(file_exists($id.".php")) {
include(
$id.".php");
} else {
echo 
"<img src='brewerysplash.jpg'>";
}
?>
I set
PHP Code:
<?php
define 
('IMAGE_FS_PATH''/img/');  //this should be the full filesystem path to your images
define ('IMAGE_WWW_PATH''img/');  //this should be the path relative to the URL.  (so it will expand to http://www.arch13.com/img/ etc)
?>
Before the body html in index.php right under my javascripts, is that an okay position?

The system path is correct, as the php install is supposed to see my / as the root and works in all instances I've used it as such. It's not parse erroring, brewery_test is, so I assume it's working fine.

I have two copies of every image in the /imgs/brewery folder. One of each named brewery_1.jpg and one of each named brewery1.jpg. The file_exists is seeing neither right now.

Any suggestions?
The file I have been playing with is
www.arch13.com/index.php?id=brewery_test
__________________
Seen on an employer evaluation:

"The wheel is turning but the hamsters dead"
____________________________
Is arch13 really a porn diety ? find out after the film at 11.
-Nanofever
arch13 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