User bmb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T15:43:42Zhttp://stackoverflow.com/feeds/user/5298http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1867373/recursive-modrewrite-for-search-engine-friendly-urls/1868818#18688180Answer by bmb for Recursive mod_rewrite for search engine friendly urlsbmb2009-12-08T18:11:38Z2009-12-08T23:16:30Z<p>I copied the solution from that other question and modified it like this:</p>
<pre><code>RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*/)?([^/]+)/([^/]+) $1?$2=$3&%1 [L]
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^.*$ index.php?%1 [L]
</code></pre>
<p>It does nearly the same thing, except in the first rule, the first match is optional and in the second rule, the match is on whatever is left after all the other pairs are matched.</p>
<p>For an odd number of parameters, the first parameter is ignored.</p>
<p>One note, if you expect to have a lot of parameters, you may have to change some settings.</p>
<p>Add something like this to your .htaccess file</p>
<pre><code>RewriteOptions MaxRedirects=20
</code></pre>
<p>and something like this to your apache conf file</p>
<pre><code>LimitInternalRecursion 20
</code></pre>
<p>Instead of "20" pick whatever number of recursions (pairs) you need to allow (the default is 10).</p>
http://stackoverflow.com/questions/116736/what-event-to-trigger-javascript-form-field-validation-and-formatting5What Event to Trigger Javascript Form Field Validation and Formatting?bmb2008-09-22T18:50:24Z2009-11-20T21:43:52Z
<p>Let me first say, we validate every field on the server side, so this a question
about client-side usability.</p>
<p>What is the conventional wisdom on <em>exactly when</em> to validate and format html form input fields using javascript?</p>
<p>As an example, we have a phone number field. We allow numbers, spaces, parentheses, and hyphens. We want the field to have ten digits. Also, we want the field to look like (123) 456-7890, even if the user doesn't type it that way.</p>
<p>It seems like we can</p>
<ul>
<li>Validate and format it when the user
exits the field.</li>
<li>Validate and format
on every character entered.</li>
<li>Intercept keystrokes and prevent the
user from entering characters that are wrong.</li>
<li>Some combination of the above (e.g.
format on entry and validate on exit, prevent on entry and format on exit, etc.)</li>
<li>[<strong>Added</strong>] Wait and do all the validation and formatting when the user clicks submit.</li>
</ul>
<p>I've seen it done all of these ways, but I can't find information about what
is best (or even generally accepted) from a usability perspective, and more importantly, why. </p>
<p>[<strong>Edit</strong>: Some clarification]</p>
<p>We are absolutely not enforcing any format standards. When I say format, I mean we'll use javascript to rewrite things so they look nice. If the user types 1234567890, we'll change it to (123) 456-7890. There are no "formatting rules" that can fail.</p>
<p>I distinguish this from validation because if they don't type enough numbers, we have to make them fix it.</p>
<p>I guess I should rephrase the question as "what is the conventional wisdom on exactly when to validate and exactly when to format...?</p>
<p>Good info in the answers so far!</p>
<p>--<br />
bmb</p>
http://stackoverflow.com/questions/116736/what-event-to-trigger-javascript-form-field-validation-and-formatting/1773424#17734240Answer by bmb for What Event to Trigger Javascript Form Field Validation and Formatting?bmb2009-11-20T21:43:52Z2009-11-20T21:43:52Z<p>By far the best answer so far was not an answer but a comment (see above.) I'm adding it as an answer in case anyone misses it in the comment.</p>
<p>See the following article on A List Apart.</p>
<p><a href="http://www.alistapart.com/articles/inline-validation-in-web-forms/" rel="nofollow">Inline Validation in Web Forms by Luke Wroblewski</a> </p>
http://stackoverflow.com/questions/1758580/port-checking-from-php/1758706#17587062Answer by bmb for Port checking from phpbmb2009-11-18T20:07:21Z2009-11-18T20:28:42Z<p>You can put code in a php script to open a connection to a specific hostname (or IP address) and port.
If you know the expected response, you should be able to tell if you are getting a connection. If you get something like "Connection refused", then either you are being blocked, or the destination host is not accepting connections on that port.</p>
<p>This example uses IP address 192.0.2.0 and port 995. Replace these with whatever you want to test.</p>
<pre><code><?php
echo "\nOpening connection\n\n";
$fp = fsockopen("192.0.2.0", 995, $errno, $errstr);
if (!$fp) {
echo "ERROR: $errno - $errstr\n";
} else {
echo fread($fp, 1024);
fclose($fp);
}
?>
</code></pre>
<p>You can also send data to the server using</p>
<pre><code>fwrite($fp, "blah blah blah\r\n");
</code></pre>
<p>There is more information about <a href="http://php.net/manual/en/function.fsockopen.php" rel="nofollow">fsockopen here</a>.</p>
http://stackoverflow.com/questions/1634511/how-to-redirect-all-web-traffic-to-a-specific-page/1634647#16346471Answer by bmb for How to redirect all web traffic to a specific page?bmb2009-10-28T01:11:16Z2009-10-28T01:11:16Z<p>If your host runs Apache and supports .htaccess, add this line to your .htaccess file</p>
<pre><code>ErrorDocument 404 /index.htm
</code></pre>
<p>It does not require mod_rewrite. It does assume that only files that are <em>not</em> found will redirect to index.htm.</p>
http://stackoverflow.com/questions/1587059/bash-find-highest-numbered-filename-in-a-directory-where-names-start-with-digits/1587142#15871420Answer by bmb for BASH: Find highest numbered filename in a directory where names start with digits (ls, sed)bmb2009-10-19T05:51:11Z2009-10-19T05:51:11Z<p>Do you need the whole LIST?</p>
<p>If not</p>
<pre><code>LAST=`exec ls $MY_DIR | sed 's/\([0-9]\+\).*/\1/g' | sort -n | tail -1`
</code></pre>
<p>will give you just the 005 part and </p>
<pre><code>printf "%03d" `expr 1 + $LAST`
</code></pre>
<p>will print the next number in the sequence.</p>
http://stackoverflow.com/questions/1580539/really-basic-modrewrite-question/1580617#15806172Answer by bmb for REALLY basic mod_rewrite question...bmb2009-10-16T21:48:37Z2009-10-16T21:59:11Z<p>Generally, people who use mod_rewrite use the terminology like this:</p>
<p>I want mod_rewrite to rewrite A to be B.</p>
<p>What this means is that any request from the outside world for page A gets rewritten to file B on the server.</p>
<p>You want the outside world to see URLs that look like</p>
<p>A) <code>http://example.com/ford/explorer</code></p>
<p>but your web server wants them to look like</p>
<p>B) <code>http://example.com/page.php?type=ford&model=explorer</code></p>
<p>I would say you want to rewrite (A) to look like (B), or you want to rewrite the semantic URL into a query string URL.</p>
<p>Since all the links on your page are clicked on by the user and/or requested by the browser, you want them to look like (A). This includes links that javascript uses in window.location. They can and should look like (A).</p>
http://stackoverflow.com/questions/1569066/awk-command-to-accept-two-variables-as-parameters-and-return-a-value/1569241#15692411Answer by bmb for awk command -to accept two variables as parameters and return a valuebmb2009-10-14T21:57:01Z2009-10-14T22:36:07Z<p>I apologize that I can't really determine what your script is trying to do, so I can't debug it properly. I think maybe you have nested quotes or something else is going on.</p>
<p>I think the one-liner below will do what you want.</p>
<pre><code>#!/bin/bash
grep "^$1 $2" /export/home/user/command_file.txt | awk '{print $3}'
</code></pre>
<p>Edit</p>
<p>Okay thanks to others for pointing out what you were trying to do with the -v options.</p>
<p>Your code is missing a $ on the echo GET_VALUE command, and you have a letter l instead of a pipe |. Plus there are other typos as well.</p>
<p>I think this works</p>
<pre><code>READ_FILE=/export/home/user/command_file.txt
awk -v var1=$1 -v var2=$2 '$1 ~ var1 && $2 ~ var2; /^var1 var2/' $READ_FILE | awk '{print $3}'
</code></pre>
<p>but I prefer the grep command above as it requires no extra effort to pass the command line variables to awk.</p>
http://stackoverflow.com/questions/1441458/how-could-i-attach-a-piece-of-get-post-data-to-every-single-request-coming-into-t/1484720#148472011Answer by bmb for How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?bmb2009-09-27T23:04:55Z2009-09-27T23:10:27Z<p>If I understand correctly, your app has two modes. Let's call
them red and blue. User opens window 1 and selects red. User
then opens window 2 and selects blue. If you merely used
sessions, then if the user goes back to window 1 and clicks
anything, the result would be blue because the previous click
was blue, even though window 1 is red.</p>
<p>I suggest using mod_rewrite (or an equivalent on non-Apache
servers) to modify the URL to indicate the mode.</p>
<p>Incoming request for </p>
<pre><code>example.com/red/yourscript ==> example.com/yourscript?mode=red
example.com/blue/yourscript ==> example.com/yourscript?mode=blue
</code></pre>
<p>If all the links and forms on your page are relative and not
absolute, the URLs should have the mode info in them.</p>
<p>That is, if the page URL is</p>
<pre><code>example.com/red/yourscript
</code></pre>
<p>then links on the page that look like this</p>
<pre><code><form action="anotherscript">
</code></pre>
<p>will have a URL of</p>
<pre><code>example.com/red/anotherscript
</code></pre>
<p>Another way would be to use subdomains</p>
<pre><code>red.example.com/yourscript ==> example.com/yourscript
blue.example.com/yourscript ==> example.com/yourscript
</code></pre>
<p>You would not need mod_rewrite if you configure your server to serve both subdomains from the same real location.</p>
<p>Using the subdomains would allow you to extract the mode from
the http_referer field of each incoming request and you
wouldn't need to add the query string. </p>
<p>Lastly, add absolute links to explicitly change the mode.</p>
<pre><code><a href="http://example.com/red/changemode">Click here to go to RED mode</a>
<a href="http://example.com/blue/changemode">Click here to go to BLUE mode</a>
</code></pre>
http://stackoverflow.com/questions/1478993/modrewrite-if-else-type-rewriterule/1479971#14799710Answer by bmb for mod_rewrite : if / else type RewriteRulebmb2009-09-25T23:31:17Z2009-09-25T23:36:33Z<p>I would add two lines to the end of what you already have. The additional rules will convert to index.php anything that hasn't already been converted to process.php.</p>
<pre><code>RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(4[^/]*)$ /process.php?variable=$1 [L]
RewriteCond %{SCRIPT_FILENAME} !process\.php
RewriteRule ^([^/]*)$ index.php?$1
</code></pre>
http://stackoverflow.com/questions/1469164/one-liner-to-convert-two-newlines-to-one/1469192#14691923Answer by bmb for One-liner to convert two newlines to one?bmb2009-09-24T00:12:09Z2009-09-24T00:12:09Z<pre><code>fmt | sed '/^$/d'
</code></pre>
<p>The fmt command will wrap lines at 75 characters, so use fmt -w [WIDTH] to set longer lines.</p>
http://stackoverflow.com/questions/1461966/double-request-from-mod-rewrite/1469132#14691320Answer by bmb for Double request from mod-rewritebmb2009-09-23T23:56:21Z2009-09-23T23:56:21Z<p>As I understand it, the NS flag (suggested in another answer) on a rule makes it evaluate as "if I am being called a second time, ignore me". The trouble is, by then it's too late since the hook has already been called. I believe this will be a problem no matter what you do in mod_rewrite. You can detect the second request, but I don't know of any way to <em>prevent</em> the second request.</p>
<p>My best suggestion is to put the detection in your handler before your (expensive) code and exit if it's being run a second time. You could have mod_rewrite append something to the URL so you'd know when it's being called a second time.</p>
<p>However...</p>
<p>If your (expensive) code is being called on every request, it's also being called on images, css files, favicons, etc. Do you really want that? Or is that possibly what you are seeing as the second call?</p>
http://stackoverflow.com/questions/1376502/get-fields-in-a-pdf-file-using-php/1413857#14138572Answer by bmb for Get fields in a PDF file using PHPbmb2009-09-12T00:30:05Z2009-09-12T00:30:05Z<p>If you are willing to use a command line tool, see</p>
<p><a href="http://www.accesspdf.com/pdftk/" rel="nofollow">http://www.accesspdf.com/pdftk/</a></p>
<p>The pdftk command can generate an FDF file from a PDF form file.</p>
<p>pdftk <em>formfile.pdf</em> generate_fdf</p>
<p>The form fields are the portion of the output that looks like</p>
<pre><code>...
<< /T(f1-1) /V(text of field) >>
<< /T(f1-2) /V(text of another field) >>
...
</code></pre>
http://stackoverflow.com/questions/1411221/htaccess-regular-expression-dont-follow-pattern/1411500#14115001Answer by bmb for htaccess regular expression - dont follow patternbmb2009-09-11T15:09:02Z2009-09-11T15:09:02Z<p>For readability and debuggability, I recommend you separate some of your rules.</p>
<pre><code># Rewrite the special case
RewriteRule ^view/file/(rest of rule)
# Skip these
RewriteRule ^index\.php$ - [L]
RewriteRule ^robots\.txt$ - [L]
RewriteRule ^(.*)\.(js|css)$ - [L]
# Main rule
RewriteRule ^(.*)$ /index.php/$1 [L]
</code></pre>
http://stackoverflow.com/questions/1376607/how-can-i-suppress-stdout-temporarily-in-a-perl-program/1376645#13766450Answer by bmb for How can I suppress STDOUT temporarily in a Perl program?bmb2009-09-04T00:19:26Z2009-09-04T00:19:26Z<pre><code>open my $saveout, ">&STDOUT";
open STDOUT, '>', "/dev/null";
(do your other stuff here)
open STDOUT, ">&", $saveout;
</code></pre>
http://stackoverflow.com/questions/1313702/gcc-compiler-advantage/1313703#13137033Answer by bmb for gcc compiler advantagebmb2009-08-21T18:47:59Z2009-08-21T19:14:32Z<p>The GNU Compiler Collection are the compilers used in GNU/Linux systems. I don't know that they compete with Turbo C or Visual C, which I think only run on DOS/Windows systems.</p>
<p>The main advantage to a user is that GCC can be installed on (and is sometimes distributed with) nearly every GNU/Linux system and can be used to build packages that are distributed as source.</p>
<p>I'm sure there are advantages that programmers would recognize, but maybe that's a topic for stackoverflow.com.</p>
<p>[Edit]
Now that this question has been migrated, see Michael Kohne's answer for some advantages to programmers.</p>
http://stackoverflow.com/questions/1292044/how-to-pass-http-www-domainname-com-as-variable-in-htaccess/1297072#12970720Answer by bmb for How to pass http://www.domainname.com as variable in htaccess?bmb2009-08-18T23:17:09Z2009-08-18T23:17:09Z<p>Your example will look at this query string:</p>
<pre><code>link-10-www.domain.com/click.htm
</code></pre>
<p>and assign</p>
<pre><code>$1 = 10
$2 = www.domain.com/click
</code></pre>
<p>and rewrite to </p>
<pre><code>link.php?id=10&link=www.domain.com/click
</code></pre>
<p>If that is not happening, I would check whether you have a file called link.php. Also, you have four w's in your example (wwww.mysite.com).</p>
<p>If you have a file called link.php, can you tell whether it gets called? Since it is being passed a link, perhaps it is redirecting to "www.domain.com/click" and that file doesn't exist?</p>
<p>Hard to tell without knowing more.</p>
http://stackoverflow.com/questions/1267631/htaccess-directory-to-file-redirect-problem/1275171#12751710Answer by bmb for htaccess directory to file redirect problembmb2009-08-13T23:12:10Z2009-08-13T23:12:10Z<p>The initial problem with your rules is that the RewriteRule with (.*) will match everything.</p>
<p>If you do not want it to match a URL with a slash in it (such as users/bob), try ^([^/]*)$</p>
<p>Secondly, after a URL is rewritten, the new URL goes through your rules again. If you want to avoid matching something that has already been rewritten once, you should add a condition like</p>
<pre><code>RewriteCond %{REQUEST_URI} !\.php
</code></pre>
http://stackoverflow.com/questions/1264374/if-project-is-open-source-do-you-bother-looking-at-the-sources/1268142#12681420Answer by bmb for If project is open source do you bother looking at the sources?bmb2009-08-12T19:12:55Z2009-08-12T19:12:55Z<p>We use some open source packages for our commercial application. I always download and build from source.</p>
<ul>
<li><p>If our hosting platform changes in
the future, it might change to
something that does not have a
precompiled binary. I want to be
able to use the same package/version
on the new platform.</p></li>
<li><p>If the package goes dormant or
becomes unsupported, I want to be
able to apply a change or fix if
absolutely necessary.</p></li>
<li><p>If something is going wrong on the
server (memory leak, CPU spike,
etc.), I want to be able to add
logging or instrumentation code to
identify or eliminate the package as
the source of the problem.</p></li>
</ul>
http://stackoverflow.com/questions/1255496/forward-all-incoming-qmail-vpopmail-emails-to-a-program-on-linux/1257471#12574711Answer by bmb for forward all incoming qmail / vpopmail emails to a program on linuxbmb2009-08-10T22:02:24Z2009-08-10T22:02:24Z<p>Use procmail if it is installed on your system. Put these lines in a .procmailrc file in the home directory of the user who receives the e-mail.</p>
<pre><code>:0
| /path/to/your/program
</code></pre>
<p>Or you can instead use a .forward file containing</p>
<pre><code>"|/path/to/your/program"
</code></pre>
<p>Procmail has the advantage that it allows you to deal with more complicated filtering if your application ever requires it.</p>
<p>Your program will read the headers and body of the e-mail from stdin.</p>
http://stackoverflow.com/questions/1243474/apache-modrewrite-affecting-files-inside-sub-folder/1247473#12474730Answer by bmb for apache mod_rewrite affecting files inside sub folderbmb2009-08-07T23:39:25Z2009-08-07T23:39:25Z<p>If you add this rewrite condition before your rules, it will only apply the rules if the request is <em>not</em> for a real file.</p>
<pre><code>RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/\.]+)/([^/\.]+)/?$ page.php?p=$1&name=$2 [NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/\.]+)/?$ page.php?name=$1 [NC,L]
</code></pre>
http://stackoverflow.com/questions/1239003/ghostscript-pdf-merging-losing-editable-fields/1241516#12415160Answer by bmb for GhostScript PDF Merging (Losing Editable Fields)bmb2009-08-06T21:14:36Z2009-08-06T21:14:36Z<p>Ghostscript is doing the equivalent of printing, so you will lose the editable fields.</p>
<p>I recommend <a href="http://www.accesspdf.com/pdftk/" rel="nofollow">pdftk</a>. I'm not sure what you mean by "merge" but pdftk can concatenate multiple separate PDF files into a single PDF file, or it can use background/watermark to overlay one page on another.</p>
http://stackoverflow.com/questions/1226408/creating-a-game-schedule-with-php-harder-than-i-thought/1236145#12361450Answer by bmb for Creating a game schedule with PHP _ Harder than I thoughtbmb2009-08-05T22:41:32Z2009-08-05T22:41:32Z<p>Does <a href="http://stackoverflow.com/questions/658727/how-can-i-generate-a-round-robin-tournament-in-php-and-mysql/658786#658786">this</a> question have the answer you want?</p>
http://stackoverflow.com/questions/1229922/is-my-htaccess-file-causing-multiple-calls-to-one-page/1236037#12360371Answer by bmb for Is my htaccess file causing multiple calls to one page?bmb2009-08-05T22:09:51Z2009-08-05T22:09:51Z<p>Those mod_rewrite conditions and rules will not cause a script to be called more than once. The rules themselves can be called multiple times. Every time a URL is successfully rewritten into a new request, the new request will invoke the rules again. However, this will stop as soon as a "real" resource (script, webpage, etc.) is identified and retrieved a single time.</p>
<p>Are there other references on your page that would make another request? For instance an IMG tag will cause a browser to make another request. Those requests will cause the rules to be run again. It looks like something with a dot (e.g. picture.jpg) will not match your rules, but something else might.</p>
<p>Other things to look for are CSS and scripts that are referenced. </p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409971#40997146Answer by bmb for What's your most controversial programming opinion?bmb2009-01-03T22:08:16Z2009-08-05T19:10:57Z<p><strong>Pagination is never what the user wants</strong></p>
<p>If you start having the discussion about where to do pagination, in the database, in the business logic, on the client, etc. then you are asking the wrong question. If your app is giving back more data than the user needs, figure out a way for the user to narrow down what they need based on real criteria, not arbitrary sized chunks. And if the user really does want all those results, then <em>give them all the results.</em> Who are you helping by giving back 20 at a time? The server? Is that more important than your user?</p>
<p>[EDIT: clarification, based on comments] </p>
<p>As a real world example, let's look at <em>this</em> Stack Overflow question. Let's say I have a controversial programming opinion. Before I post, I'd like to see if there is already an answer that addresses the same opinion, so I can upvote it. The only option I have is to click through every page of answers.</p>
<p>I would prefer one of these options:</p>
<ol>
<li><p>Allow me to search through the answers (a way for me to narrow down what I need based on real criteria).</p></li>
<li><p>Allow me to see all the answers so I can use my browser's "find" option (give me all the results).</p></li>
</ol>
<p>The same applies if I just want to find an answer I previously read, but can't find anymore. I don't know when it was posted or how many votes it has, so the sorting options don't help. And even if I did, I still have to play a guessing game to find the right page of results. The fact that the answers are paginated and I can directly click into one of a dozen pages <em>is no help at all</em>.</p>
<p>--<br />
bmb</p>
http://stackoverflow.com/questions/1234320/the-best-way-to-represent-key-value-pairs-in-html-class-names/1235017#12350170Answer by bmb for The Best Way To Represent key/value Pairs In HTML Class Namesbmb2009-08-05T18:43:52Z2009-08-05T18:43:52Z<p>Could you surround the object in question with a div or span? Then use the id and/or class attributes to store the name-value pairs and access them with parent property.</p>
<pre><code><span id="foo_bar_baz" class="bish_bash_bosh"><p id="someid"></span>
</code></pre>
<p>This allows you to do whatever you want to the original object.</p>
http://stackoverflow.com/questions/1223028/what-is-a-good-method-for-inventing-a-command-name/1223501#12235012Answer by bmb for What is a good method for inventing a command name?bmb2009-08-03T17:16:28Z2009-08-03T17:24:25Z<p>To check the availability of command names, I suggest looking for all two-letter filenames that are in the directories in your path. You can use a script like this</p>
<pre><code>for item in `echo $PATH | sed 's/:/ /g'` ; do
ls -1d $item/??
done
</code></pre>
<p>It won't show builtins in your shell (like "do" as you mentioned) but it's a good start.</p>
<p>Change ?? to ??? for three-letter files, etc.</p>
<p>I'm going to vote for qp (quick package?) since it's easy to pronounce, easy to type, and easy to remember where the keys are on the keyboard.</p>
http://stackoverflow.com/questions/9545/who-in-the-software-world-do-you-admire-the-most/1210687#12106870Answer by bmb for Who in the software world do you admire the most?bmb2009-07-31T04:27:46Z2009-07-31T04:27:46Z<p>The <a href="http://en.wikipedia.org/wiki/Locus%5FComputing%5FCorporation" rel="nofollow">smartest people</a> you've never heard of. Nothing made me a better programmer than always being around people who are are smarter than me.</p>
http://stackoverflow.com/questions/1106377/detect-when-browser-receives-file-download/1106630#11066300Answer by bmb for Detect when browser receives file downloadbmb2009-07-09T21:48:31Z2009-07-09T21:48:31Z<p>If you don't want to generate and store the file on the server, are you willing to store the status, e.g. file-in-progress, file-complete? Your "waiting" page could poll the server to know when the file generation is complete. You wouldn't know for sure that the browser started the download but you'd have some confidence.</p>
<p>--<br />
bmb </p>
http://stackoverflow.com/questions/169713/whats-the-toughest-bug-you-ever-found-and-fixed/1041158#10411580Answer by bmb for What's the toughest bug you ever found and fixed?bmb2009-06-24T21:41:57Z2009-06-24T21:41:57Z<p>Years ago I spent several days trying to track down and fix a small bug in dbx, the text-based debugger on AIX. I don't remember the exact bug. What made it tough was I was using the installed dbx to debug the dev version of dbx I was working on. It was very tough to keep track of where I was. More than once, I prepared to leave for the day and exited dbx twice (the dev version and the installed version) only to see that I was <em>still</em> running inside dbx, sometimes two or more levels "deep".</p>
<p>--<br />
bmb</p>
http://stackoverflow.com/questions/1867373/recursive-modrewrite-for-search-engine-friendly-urls/1869342#1869342Comment by bmb on Recursive mod_rewrite for search engine friendly urlsbmb2009-12-09T00:00:51Z2009-12-09T00:00:51ZGumbo, I think your rule that does the work should have 'L' instead of 'N' and no slash before the $4: <code>RewriteRule ^([^/]+)/([^/]+)(/(.*))?$ $4?$1=$2 [L,QSA]</code>http://stackoverflow.com/questions/1867373/recursive-modrewrite-for-search-engine-friendly-urls/1868818#1868818Comment by bmb on Recursive mod_rewrite for search engine friendly urlsbmb2009-12-08T23:17:46Z2009-12-08T23:17:46ZGumbo, lol. I guess I could have been clearer. I hope the new edit addresses your question.http://stackoverflow.com/questions/1867373/recursive-modrewrite-for-search-engine-friendly-urls/1868818#1868818Comment by bmb on Recursive mod_rewrite for search engine friendly urlsbmb2009-12-08T20:22:17Z2009-12-08T20:22:17ZdGreaves, 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.http://stackoverflow.com/questions/1758580/port-checking-from-php/1758760#1758760Comment by bmb on Port checking from phpbmb2009-11-18T23:20:40Z2009-11-18T23:20:40Zpowtac, 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 <i>can</i> be contacted in safe mode.http://stackoverflow.com/questions/1758580/port-checking-from-php/1758760#1758760Comment by bmb on Port checking from phpbmb2009-11-18T23:01:47Z2009-11-18T23:01:47Zpowtac, 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.http://stackoverflow.com/questions/1758580/port-checking-from-php/1758760#1758760Comment by bmb on Port checking from phpbmb2009-11-18T22:04:38Z2009-11-18T22:04:38ZI think you mean "safe mode". Are you sure it prevents calling services on other servers?http://stackoverflow.com/questions/1668941/how-to-use-rewriterule-to-redirect-to-a-php-file-in-the-same-folder/1669007#1669007Comment by bmb on How to use rewriterule to redirect to a php file in the same folder?bmb2009-11-03T17:48:50Z2009-11-03T17:48:50Zjeph 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."http://stackoverflow.com/questions/1663932/apache-modrewrite-and-php-get-arrays/1663942#1663942Comment by bmb on Apache mod_rewrite and PHP GET Arraysbmb2009-11-02T22:56:43Z2009-11-02T22:56:43Zmike, it is possible if you use something like the technique in this answer: <a href="http://stackoverflow.com/questions/117931/apache-modrewrite-one-rule-for-any-number-of-possibilities/119306#119306" rel="nofollow" title="apache modrewrite one rule for any number of possibilities">stackoverflow.com/questions/117931/…</a>http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409971#409971Comment by bmb on What's your most controversial programming opinion?bmb2009-10-23T22:01:22Z2009-10-23T22:01:22ZThorbjørn Ravn Andersen, that helps a little, but it would still be tedious if you want to use your browser's "find" function.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/409971#409971Comment by bmb on What's your most controversial programming opinion?bmb2009-10-17T15:04:06Z2009-10-17T15:04:06Ztsilb, 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?http://stackoverflow.com/questions/1580539/really-basic-modrewrite-questionComment by bmb on REALLY basic mod_rewrite question...bmb2009-10-17T04:09:58Z2009-10-17T04:09:58Zjohn, 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. http://stackoverflow.com/questions/1580539/really-basic-modrewrite-question/1580548#1580548Comment by bmb on REALLY basic mod_rewrite question...bmb2009-10-16T22:25:37Z2009-10-16T22:25:37ZI see why the OP is confused. Different people refer to it different ways.http://stackoverflow.com/questions/1580539/really-basic-modrewrite-question/1580548#1580548Comment by bmb on REALLY basic mod_rewrite question...bmb2009-10-16T21:52:53Z2009-10-16T21:52:53Zseengee, I would not refer to "<a href="http://mysite.com/ford/explorer"" rel="nofollow">mysite.com/ford/explorer"</a>; as the "mod_rewritten" version. After a URL has been "mod_rewritten", I would say it looks like "<a href="http://mysite.com/page.php?type=ford&model=explorer"" rel="nofollow">mysite.com/page.php?type=ford&model=explorer&…</a>;. I have always used the mod_rewrite words from the server's perspective.http://stackoverflow.com/questions/1575333/ie6-how-to-get-inline-base64-images-to-work-with-ie6Comment by bmb on IE6: How to get inline base64 images to work with IE6?bmb2009-10-15T22:53:45Z2009-10-15T22:53:45ZArjan 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.http://stackoverflow.com/questions/1569066/awk-command-to-accept-two-variables-as-parameters-and-return-a-value/1569241#1569241Comment by bmb on awk command -to accept two variables as parameters and return a valuebmb2009-10-15T04:59:05Z2009-10-15T04:59:05ZDennis 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.