bmb

1,008
reputation
806 views

Registered User

name bmb
member for 1 year
seen 49 mins ago
website
location San Diego, CA USA
age 46
Software Engineer
Software Development Manager
48m
comment Recursive mod_rewrite for search engine friendly urls
Gumbo, okay, if you say so. It doesn't work for me.
20h
comment Recursive mod_rewrite for search engine friendly urls
Gumbo, I think your rule that does the work should have 'L' instead of 'N' and no slash before the $4: RewriteRule ^([^/]+)/([^/]+)(/(.*))?$ $4?$1=$2 [L,QSA]
21h
comment Recursive mod_rewrite for search engine friendly urls
Gumbo, lol. I guess I could have been clearer. I hope the new edit addresses your question.
21h
revised Recursive mod_rewrite for search engine friendly urls
added 67 characters in body
22h
revised Recursive mod_rewrite for search engine friendly urls
added 40 characters in body
22h
accepted Recursive mod_rewrite for search engine friendly urls
23h
revised Recursive mod_rewrite for search engine friendly urls
deleted 59 characters in body; deleted 166 characters in body
23h
revised Recursive mod_rewrite for search engine friendly urls
added 304 characters in body
1d
revised Recursive mod_rewrite for search engine friendly urls
added 223 characters in body
1d
comment Recursive mod_rewrite for search engine friendly urls
dGreaves, I'm not sure what you want it to do with an odd number of parameters. Change the ^$ to ^.*$ on the last line and at least it won't error out.
1d
answered Recursive mod_rewrite for search engine friendly urls
Nov
20
answered What Event to Trigger Javascript Form Field Validation and Formatting?
Nov
19
accepted Port checking from php
Nov
18
comment Port checking from php
powtac, I don't see how that relates to calling services on other servers. I don't think fopen is relevant, there are no local files involved, and my test shows other servers can be contacted in safe mode.
Nov
18
comment Port checking from php
powtac, I have just run a test and I am able to call fsockopen with safe mode on. Also, I can call file_get_contents on a URL successfully. I don't see where in the documentation you link to it says that safe mode prevents calling services on other servers.
Nov
18
comment Port checking from php
I think you mean "safe mode". Are you sure it prevents calling services on other servers?
Nov
18
revised Port checking from php
added 14 characters in body
Nov
18
revised Port checking from php
added 200 characters in body
Nov
18
answered Port checking from php
Nov
3
comment How to use rewriterule to redirect to a php file in the same folder?
jeph perro, OP says "I would like to avoid using rewritebase to specify the folder I'm in -- the .htaccess has to work in any folder without being modified."
Nov
2
comment Apache mod_rewrite and PHP GET Arrays
mike, it is possible if you use something like the technique in this answer: stackoverflow.com/questions/117931/…
Nov
2
awarded  Good Answer
Oct
28
answered How to redirect all web traffic to a specific page?
Oct
23
comment What’s your most controversial programming opinion?
Thorbjørn Ravn Andersen, that helps a little, but it would still be tedious if you want to use your browser's "find" function.
Oct
19
answered BASH: Find highest numbered filename in a directory where names start with digits (ls, sed)
Oct
17
accepted REALLY basic mod_rewrite question…
Oct
17
comment What’s your most controversial programming opinion?
tsilb, then "allow the user to narrow down what they need based on real criteria". The point here is not that subsets are always bad, it's that pagination is not a method of subsetting that helps anyone. And huge server loads? Boo hoo. Did you build your app to make your server happy? Or your users?
Oct
17
comment REALLY basic mod_rewrite question…
john, it seems like your edit asks an entirely different question. There are many ways to exclude specific files, types of files, or URLs from being rewritten. I suggest you search the questions already posted, or ask a new one with specifics of your problem.
Oct
16
comment REALLY basic mod_rewrite question…
I see why the OP is confused. Different people refer to it different ways.
Oct
16
revised REALLY basic mod_rewrite question…
deleted 1 characters in body; added 12 characters in body
Oct
16
comment REALLY basic mod_rewrite question…
seengee, I would not refer to "mysite.com/ford/explorer"; as the "mod_rewritten" version. After a URL has been "mod_rewritten", I would say it looks like "mysite.com/page.php?type=ford&model=explorer&…;. I have always used the mod_rewrite words from the server's perspective.
Oct
16
answered REALLY basic mod_rewrite question…
Oct
15
comment IE6: How to get inline base64 images to work with IE6?
Arjan van Bentem, sometimes an application needs to generate an image on the fly. In such a case, it is sometimes easier to inline the image rather than creating a file and sending a link.
Oct
15
comment awk command -to accept two variables as parameters and return a value
Dennis Williamson, thanks. Good catches. I probably should have just stuck with my original with grep. I think that's the better way to go anyway.
Oct
15
comment awk command -to accept two variables as parameters and return a value
Note this still has the OP's typo with the missing $ on the echo command.
Oct
14
revised awk command -to accept two variables as parameters and return a value
added 360 characters in body; added 3 characters in body; added 113 characters in body; added 50 characters in body
Oct
14
answered awk command -to accept two variables as parameters and return a value
Oct
9
comment What’s your most controversial programming opinion?
Ortzinator, I would agree with you if I thought the number was really 99%. But since my (controversial) contention is that pagination is "never" what the user wants, then I think helping the server helps no one. However, users who don't want all the results don't have to get them. Then everyone is happy.
Sep
30
comment How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?
Martin Spamer, yes, it will work even if the application is stateful.
Sep
29
awarded  Nice Answer
Sep
27
revised How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?
added 227 characters in body
Sep
27
answered How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?
Sep
25
revised mod_rewrite : if / else type RewriteRule
added 50 characters in body
Sep
25
answered mod_rewrite : if / else type RewriteRule
Sep
25
comment Can I used mod_rewrite to change file extensions? .jpeg to .jpg for example
Ben S, isn't the entire point of mod_rewrite to serve the same content on different URLs? What makes this generally bad practice?
Sep
25
comment What’s your most controversial programming opinion?
tuinstoel, don't blame XML files for a missing or poorly designed data access layer.
Sep
25
comment What’s your favorite “programmer ignorance” pet peeve?
It forces you to ask yourself "why am I doing all that on one line?"
Sep
24
comment One-liner to convert two newlines to one?
+1 nice! This doesn't have the line length limit that my answer has.
Sep
24
comment One-liner to convert two newlines to one?
Neither of these solutions converts "\n" to " "
Sep
24
comment One-liner to convert two newlines to one?
acrosman, I tried w/o using sed. I couldn't find an option to fmt that would remove the blank line.