User Ross - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T06:52:00Z http://stackoverflow.com/feeds/user/2025 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/202813/adding-values-to-a-c-array 7 Adding values to a C# array Ross 2008-10-14T21:02:58Z 2009-10-28T12:17:32Z <p>Probably a really simple one this - I'm starting out with C# and need to add values to an array, for example:</p> <pre><code>int[] terms; for(int runs = 0; runs &lt; 400; runs++) { terms[] = value; } </code></pre> <p>For those who have used PHP, here's what I'm trying to do in C#:</p> <pre><code>$arr = array(); for ($i = 0; $i &lt; 10; $i++) { $arr[] = $i; } </code></pre> <p>Thanks, Ross</p> http://stackoverflow.com/questions/607435/why-does-vim-save-files-with-a-extension 6 Why does Vim save files with a ~ extension? Ross 2009-03-03T17:56:45Z 2009-10-26T16:44:11Z <p>I've found that while using Vim on Windows Vim saves the file, a <code>.ext.swp</code> file that's deleted on closing the Vim window and a <code>.ext~</code> file. </p> <p>I assume the <code>.ext.swp</code> file is a session backup in case Vim crashes. What's the purpose of the <code>.ext~</code> file however? Is this a permanent backup file? It's annoying as I'd like to copy all the files I'm working on to my host, without these duplicates. <strong>How can I turn this off or</strong>, if it's there for a good reason, <strong>hide the files</strong>?</p> http://stackoverflow.com/questions/551734/php-not-loading-phppgsql-dll-on-windows 3 PHP not loading php_pgsql.dll on Windows Ross 2009-02-15T22:31:52Z 2009-10-08T16:48:35Z <p>PHP 5.2.8 is refusing to load <code>php_pgsql.dll</code>, with the following error:</p> <blockquote> <p>Warning: PHP Startup: Unable to load dynamic library 'D:\PHP\ext\php_pgsql.dll' - The specified module could not be found.</p> <p>in Unknown on line 0</p> </blockquote> <p>The .dll exists in PHP/ext/.</p> <p>Has anyone else had this problem with PHP on Windows before?</p> http://stackoverflow.com/questions/26947/how-to-implement-a-web-scraper-in-php/26961#26961 2 Answer by Ross for How to implement a web scraper in PHP? Ross 2008-08-25T21:34:02Z 2009-08-30T19:26:30Z <p>Here's an OK tutorial (link removed, see below) on web scraping using <code>cURL</code> and <code>file_get_contents</code>. Besure to read the next few parts as well.</p> <p>(direct hyperlink removed due to malware warnings)</p> <p><code>http://www.oooff.com/php-scripts/basic-php-scraped-data-parsing/basic-php-data-parsing.php</code></p> http://stackoverflow.com/questions/242286/what-do-you-wish-you-knew-before-you-spent-hours-trying-to-fix-a-bug-in-ie6/242748#242748 5 Answer by Ross for What do you wish you knew before you spent hours trying to fix a bug in IE6 Ross 2008-10-28T10:12:09Z 2009-08-24T17:52:51Z <p>I wish I'd known about <a href="http://www.positioniseverything.net/explorer.html" rel="nofollow">Position is Everything</a>, but specifically <a href="http://www.positioniseverything.net/explorer/peekaboo.html" rel="nofollow">the peekaboo bug</a> has always got me.</p> http://stackoverflow.com/questions/1182082/check-for-a-value-in-a-json-object 0 Check for a value in a JSON object Ross 2009-07-25T13:18:37Z 2009-07-25T14:41:00Z <p>I need to find out if an id occurs in my JSON object, for example:</p> <pre><code>{ "requested": "2009-07-25T14:12:25+01:00", "channels": [ {"id": 1, "name": "General", "created": "2009-07-25 14:00:02"} ] } </code></pre> <p>Specifically I need to check if my id (say, 2) occurs in <code>channels.</code><em><code>i</code></em><code>.id</code>. How can this be done?</p> http://stackoverflow.com/questions/1179868/rewriting-query-string-using-modrewrite 3 Rewriting query string using mod_rewrite Ross 2009-07-24T20:00:05Z 2009-07-24T20:32:13Z <p>In my MVC application I use a uri router than determines which controller and action to use and detects GET parameters from the uri. I've written it so that it will accept both these forms:</p> <pre><code>http://localhost/controller/action/param1Name/param1Value http://localhost/controller/action?param1Name=param1Value </code></pre> <p>Now what I'd like to do is use mod_rewrite to redirect the <code>?p=v</code> form to the <code>/p/v</code> form (reasoning is purely cosmetic, GET forms use the <code>?x=y</code> form). I'm completely stuck with how I'd do this however - I have an idea I need to use <code>${QUERY_STRING}</code> but I'm not sure how.</p> http://stackoverflow.com/questions/1128648/whats-a-good-way-to-manage-error-and-success-messages-and-codes/1128692#1128692 0 Answer by Ross for What's a good way to manage error and success messages and codes? Ross 2009-07-14T23:45:03Z 2009-07-14T23:45:03Z <p>Since I use a single-access-point style system that bootstraps the application and includes the correct file (it's basically a controller system) I can use:</p> <pre><code>&lt;?php try { require 'bootstrap.php'; // dispatch controller require "controllers/$controller.php"; } catch (Exception $e) { // echo info } catch (LibraryException $le) { // library specific exception } </code></pre> <p>Then when I want to throw an error I just:</p> <pre><code>throw new Exception('An error occurred.'); </code></pre> <blockquote> <p>Can someone suggest a best practice or something you are doing to be able to properly manage a large list of error and success messages through out an application.</p> </blockquote> <p>This is how I manage errors by bulk, but not how I could manage a list. I could <code>grep</code> for error messages I find, it's not really very organised though.</p> http://stackoverflow.com/questions/1128646/in-php-can-you-extend-a-class-to-the-same-name/1128650#1128650 0 Answer by Ross for In PHP can you extend a class to the same name? Ross 2009-07-14T23:32:18Z 2009-07-14T23:32:18Z <p>If you wanted to use a method/property of the original class you can extend it but you must use a different name, otherwise you'll get an error about redeclaring the class.</p> <p>Basically:</p> <pre><code>class template {} /* both fail with "cannot redeclare class template */ class template extends template {} class template {} </code></pre> http://stackoverflow.com/questions/1125678/mysql-fulltext-not-working 1 MySQL FULLTEXT not working Ross 2009-07-14T14:16:58Z 2009-07-14T16:01:28Z <p>I'm attempting to add searching support for my PHP web app using MySQL's FULLTEXT indexes.</p> <p>I created a test table (using the MyISAM type, with a single text field <code>a</code>) and entered some sample data. Now if I'm right the following query should return both those rows:</p> <pre><code>SELECT * FROM test WHERE MATCH(a) AGAINST('databases') </code></pre> <p>However it returns none. I've done a bit of research and I'm doing everything right as far as I can tell - the table is a MyISAM table, the FULLTEXT indexes are set. I've tried running the query from the prompt and from phpMyAdmin, with no luck. Am I missing something crucial?</p> <p><hr /></p> <p><strong>UPDATE:</strong> Ok, while <a href="#1125770" rel="nofollow">Cody's solution</a> worked in my test case it doesn't seem to work on my actual table:</p> <pre><code>CREATE TABLE IF NOT EXISTS `uploads` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `size` int(11) NOT NULL, `type` text NOT NULL, `alias` text NOT NULL, `md5sum` text NOT NULL, `uploaded` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; </code></pre> <p>And the data I'm using:</p> <pre><code>INSERT INTO `uploads` (`id`, `name`, `size`, `type`, `alias`, `md5sum`, `uploaded`) VALUES (1, '04 Sickman.mp3', 5261182, 'audio/mp3', '1', 'df2eb6a360fbfa8e0c9893aadc2289de', '2009-07-14 16:08:02'), (2, '07 Dirt.mp3', 5056435, 'audio/mp3', '2', 'edcb873a75c94b5d0368681e4bd9ca41', '2009-07-14 16:08:08'), (3, 'header_bg2.png', 16765, 'image/png', '3', '5bc5cb5c45c7fa329dc881a8476a2af6', '2009-07-14 16:08:30'), (4, 'page_top_right2.png', 5299, 'image/png', '4', '53ea39f826b7c7aeba11060c0d8f4e81', '2009-07-14 16:08:37'), (5, 'todo.txt', 392, 'text/plain', '5', '7ee46db77d1b98b145c9a95444d8dc67', '2009-07-14 16:08:46'); </code></pre> <p>The query I'm now running is:</p> <pre><code>SELECT * FROM `uploads` WHERE MATCH(name) AGAINST ('header' IN BOOLEAN MODE) </code></pre> <p>Which should return row 3, header_bg2.png. Instead I get another empty result set. My options for boolean searching are below:</p> <pre><code>mysql&gt; show variables like 'ft_%'; +--------------------------+----------------+ | Variable_name | Value | +--------------------------+----------------+ | ft_boolean_syntax | + -&gt;&lt;()~*:""&amp;| | | ft_max_word_len | 84 | | ft_min_word_len | 4 | | ft_query_expansion_limit | 20 | | ft_stopword_file | (built-in) | +--------------------------+----------------+ 5 rows in set (0.02 sec) </code></pre> <p>"header" is within the word length restrictions and I doubt it's a stop word (I'm not sure how to get the list). Any ideas?</p> http://stackoverflow.com/questions/1123965/good-knowledgebase-script/1124147#1124147 3 Answer by Ross for Good Knowledgebase Script Ross 2009-07-14T08:24:29Z 2009-07-14T08:24:29Z <p>I haven't found any good dedicated scripts, but could you use a wiki for this? <a href="http://www.dokuwiki.org/dokuwiki" rel="nofollow">Dokuwiki</a> would be my recommendation if you decided to go this route.</p> http://stackoverflow.com/questions/1123977/how-can-i-center-align-a-div-without-knowing-the-width/1124141#1124141 0 Answer by Ross for How can I center align a div without knowing the width? Ross 2009-07-14T08:18:09Z 2009-07-14T08:18:09Z <p>My advice is <a href="#1124005" rel="nofollow">this answer</a> - however someone commented that it wouldn't work in IE6. Here's how to make this work:</p> <pre><code>&lt;div id="container"&gt; &lt;div id="centeredBlock"&gt;centered&lt;/div&gt; &lt;/div&gt; #container { text-align: center; } #centeredBlock { margin: 0 auto; text-align: left; width: 50%; } </code></pre> http://stackoverflow.com/questions/1124031/change-color-of-link/1124125#1124125 0 Answer by Ross for Change Color of Link Ross 2009-07-14T08:14:58Z 2009-07-14T08:14:58Z <p>While you're <a href="#1124044" rel="nofollow">using the wrong selector</a> for <code>someDiv</code> you will usually need to set <code>a</code> colours separately:</p> <pre><code> #someDiv, #someDiv a { color: red; } </code></pre> http://stackoverflow.com/questions/1121445/can-anyone-explain-the-following-php-code/1121491#1121491 5 Answer by Ross for Can anyone explain the following PHP Code ? Ross 2009-07-13T19:12:06Z 2009-07-14T08:12:57Z <p>The first class method looks like it performs a MySQL query and adds a LIMIT clause for pagination. The second moves the current query onto the next record, while incrementing the pagination counters.</p> <p>In more detail, here's the first sample:</p> <ul> <li>Exit the method if the query is empty or the database connection doesn't exist.</li> <li>Free any existing query.</li> <li>If the number of records per page and page number are set: <ul> <li>Add them to the LIMIT clause of the query.</li> <li>And reset them to 0.</li> </ul></li> <li>Otherwise if records per page is set: <ul> <li>Add it to the LIMIT clause of the query.</li> <li>And reset them to 0.</li> </ul></li> <li>Run the query.</li> <li>Set the current row to 0.</li> <li>Collect errors.</li> <li>If the query failed halt with the error.</li> <li>Return the query.</li> </ul> <p>And the second:</p> <ul> <li>If the query is not set halt with an error.</li> <li>Fetch row information as an array for the current row.</li> <li>Increment the row number.</li> <li>Catch any errors.</li> <li>If the result isn't an array free/close the query.</li> <li>Otherwise return the result set.</li> </ul> http://stackoverflow.com/questions/1122523/google-using-instead-of-search-in-url-why/1122541#1122541 0 Answer by Ross for Google using # instead of search? in URL. Why? Ross 2009-07-13T22:54:20Z 2009-07-13T22:54:20Z <p>Seems <code>#q=stackoverflow</code> redirects to <code>search?q=stackoverflow&amp;cad=h</code>.</p> <p>I don't know how you're getting that however - I get the usual one.</p> http://stackoverflow.com/questions/1122418/changing-uploadmaxfilesize-on-php 0 Changing upload_max_filesize on PHP Ross 2009-07-13T22:22:47Z 2009-07-13T22:31:58Z <p>I'm using PHP 5.3.0 and have encountered something that might be a bug (in which case I'll report it) or might be me - so I'm asking to make sure.</p> <p>When running this code:</p> <pre><code>&lt;?php ini_set('upload_max_filesize', '10M'); echo ini_get('upload_max_filesize'), ", " , ini_get('post_max_size') </code></pre> <p>I end up with:</p> <pre><code>2M, 8M </code></pre> <p>This is despite my php.ini setting these higher:</p> <pre><code>upload_max_filesize = 10M post_max_size = 10M </code></pre> <p>(occuring only once)</p> <p>Because the error occurs after setting the value as well as it being set in php.ini I'm inclined to think it's a bug. Can anyone confirm or point me where I'm going wrong?</p> <p><strong>Update</strong>: Looks like restarting Apache fixed this - I always thought it didn't need to be restarted if you changed php.ini.</p> http://stackoverflow.com/questions/1122359/php-script-config-settings/1122432#1122432 0 Answer by Ross for php script Config settings Ross 2009-07-13T22:26:37Z 2009-07-13T22:26:37Z <p>It looks like you need to set /docs as the document root for this to work. E.g. <a href="http://code.google.com/p/streetwire/source/browse/trunk/docs/index.php" rel="nofollow">index.php</a> I assume you've seen <a href="http://code.google.com/p/streetwire/source/browse/trunk/INSTALL" rel="nofollow">INSTALL</a> too. </p> <p>Do you have error reporting on and set to maximum? There's a devsite constant in config that I assume gives error information too. What errors are you getting?</p> http://stackoverflow.com/questions/598552/should-i-learn-c-before-learning-c 11 Should I learn C before learning C++? Ross 2009-02-28T19:46:08Z 2009-07-13T21:51:59Z <p>I visited a university CS department open day today and in the labs tour we sat down to play with a couple of final-year projects from undergraduate students. One was particularly good - a sort of FPS asteroids game. I decided to take a peak in the <code>src</code> directory to find it was done in C++ (most of the other projects were Java 3D apps).</p> <p>I haven't done any C before but I have looked through some C code before. From what I saw in the .cpp code in this game it didn't look very different.</p> <p>I'm interested in learning either C or C++ but will probably learn the other later on. <strong>Is there any advantage to me learning one before the other</strong> and <strong>if so, which one?</strong></p> http://stackoverflow.com/questions/1120893/tools-to-highlight-deprecated-functions-in-php4-sources/1121789#1121789 0 Answer by Ross for Tools to highlight deprecated functions in PHP4 sources? Ross 2009-07-13T20:15:54Z 2009-07-13T20:15:54Z <p>The <a href="http://docs.php.net/manual/en/appendices.php" rel="nofollow">appendices of the manual</a> contain some migration information but I don't think it contains what you're looking for.</p> <p>One way (which might be inaccurate but could be used) I thought of was the news.txt included in each PHP download. I'm <a href="http://github.com/rmasters/php-news-parser" rel="nofollow">writing a script</a> atm that parses this file and checking for deprecated functions could be something I could add. I am working on another project atm but I'd like to add functionality for this in the larger rebuilt version.</p> http://stackoverflow.com/questions/1121359/uploading-image-not-working/1121430#1121430 1 Answer by Ross for Uploading Image not Working Ross 2009-07-13T19:00:13Z 2009-07-13T19:00:13Z <p>Are all these files the same type? Can you give us a <code>var_dump</code> of the variables when uploading a few files? Are the variables for all uploads empty or just some?</p> <p>For example, this code:</p> <pre><code>&lt;?php print_r($_FILES); ?&gt; &lt;html&gt;&lt;body&gt; &lt;form action="test.php" method="post" enctype="multipart/form-data"&gt; &lt;input name="upload[]" type="file" /&gt;&lt;br /&gt; &lt;input name="upload[]" type="file" /&gt;&lt;br /&gt; &lt;input name="upload[]" type="file" /&gt;&lt;br /&gt; &lt;input type="submit" value="Upload" /&gt; &lt;/form&gt; &lt;/body&gt;&lt;/html&gt; </code></pre> <p>Returns this output:</p> <pre><code>Array ( [upload] =&gt; Array ( [name] =&gt; Array ( [0] =&gt; IMG_0005.jpg [1] =&gt; IMG_0249.jpg [2] =&gt; IMG_0007.JPG ) (...snip...) [size] =&gt; Array ( [0] =&gt; 1776529 [1] =&gt; 1902522 [2] =&gt; 798008 ) ) ) </code></pre> <p>Remember to check <code>$_FILES['name']['error']</code> for each file.</p> http://stackoverflow.com/questions/1121280/how-to-let-curl-use-same-cookie-as-the-browser-from-php/1121323#1121323 1 Answer by Ross for How to let Curl use same cookie as the browser from PHP Ross 2009-07-13T18:44:08Z 2009-07-13T18:44:08Z <p>From <a href="http://php.net/curl%5Fsetopt" rel="nofollow"><code>curl_setopt</code></a>:</p> <blockquote> <p>By default, libcurl always stores and loads all cookies, independent if they are session cookies or not.</p> </blockquote> <p>However you may need to set cookies directly, which can be done using:</p> <pre><code>curl_setopt($ch, CURLOPT_COOKIE, 'foo=bar'); </code></pre> <p>Which is the same as the Set-Cookie HTTP header. Check you're not using <code>curl_setopt($ch, CURLOPT_COOKIESESSION, true)</code> as this will make libcurl ignore some cookies.</p> http://stackoverflow.com/questions/1120660/looking-for-an-ebook-based-on-html-and-possible-with-css/1120677#1120677 1 Answer by Ross for Looking for an ebook based on HTML (and possible with CSS) Ross 2009-07-13T16:46:31Z 2009-07-13T16:46:31Z <p>I don't have any ebooks but I have to recommend <a href="http://htmldog.com" rel="nofollow">HTMLDog</a> very highly. It is the best HTML and CSS reference I know of. Along with <a href="http://w3schools.com" rel="nofollow">W3Schools</a> you've got enough information to be going with. I'll look for some in my archived folder though.</p> http://stackoverflow.com/questions/546621/how-should-i-be-implementing-my-acl-in-a-web-application 1 How should I be implementing my ACL in a web application? Ross 2009-02-13T16:34:07Z 2009-06-19T19:29:00Z <p>I've been thinking about the web app I'm about to begin developing and wondering whether my usual approach could be improved.</p> <p>In my last few apps I've created a table (see below) of roles (such as <code>CREATE POST</code>, <code>EDIT POST</code> etc.) which each have a bitfield applied to them so I can simply assign a user certain rights in registration and check them later on (e.g. <code>$user-&gt;hasRight(CREATE_POST)</code>).</p> <p>I'm wondering if there's a better approach to this. It's certainly confusing when the rights aren't specifically linked to the user (I could have a table where each right is a boolean column but that only sounds like a small improvement) - and what happens if I change some around?</p> <p>I'm not looking to use standard libraries (the app itself is a learning experience for me: using postgresql, git etc.) although I'm perfectly happy to take inspiration from them to construct my own - so if there's something special you think I should take a look at please say so :)</p> http://stackoverflow.com/questions/236979/parsing-css-by-regex 2 Parsing CSS by regex Ross 2008-10-25T20:32:48Z 2009-06-18T13:18:56Z <p>I'm creating a CSS editor and am trying to create a regular expression that can get data from a CSS document. This regex works if I have one property but I can't get it to work for all properties. I'm using preg/perl syntax in PHP.</p> <h3>Regex</h3> <pre><code>(?&lt;selector&gt;[A-Za-z]+[\s]*)[\s]*{[\s]*((?&lt;properties&gt;[A-Za-z0-9-_]+)[\s]*:[\s]*(?&lt;values&gt;[A-Za-z0-9#, ]+);[\s]*)*[\s]*} </code></pre> <h3>Test case</h3> <pre><code>body { background: #f00; font: 12px Arial; } </code></pre> <h3>Expected Outcome</h3> <pre><code>Array( [0] =&gt; Array( [0] =&gt; body { background: #f00; font: 12px Arial; } [selector] =&gt; Array( [0] =&gt; body ) [1] =&gt; Array( [0] =&gt; body ) [2] =&gt; font: 12px Arial; [properties] =&gt; Array( [0] =&gt; font ) [3] =&gt; Array( [0] =&gt; font ) [values] =&gt; Array( [0] =&gt; 12px Arial [1] =&gt; background: #f00 ) [4] =&gt; Array( [0] =&gt; 12px Arial [1] =&gt; background: #f00 ) ) ) </code></pre> <h3>Real Outcome</h3> <pre><code>Array( [0] =&gt; Array ( [0] =&gt; body { background: #f00; font: 12px Arial; } [selector] =&gt; body [1] =&gt; body [2] =&gt; font: 12px Arial; [properties] =&gt; font [3] =&gt; font [values] =&gt; 12px Arial [4] =&gt; 12px Arial ) ) </code></pre> <p>Thanks in advance for any help - this has been confusing me all afternoon!</p> http://stackoverflow.com/questions/1011635/where-do-you-get-the-logos-for-the-technologies-or-tools-you-use/1011659#1011659 0 Answer by Ross for Where do you get the logos for the technologies or tools you use? Ross 2009-06-18T09:15:54Z 2009-06-18T09:15:54Z <p>I also had this issue - I was trying to find the small-version of the Skype logo for a button. I eventually had to resort to Google images as the Skype website didn't offer the small-version. Even then these were fairly low quality images (fortunately I was scaling the image down to ~20px) however.</p> http://stackoverflow.com/questions/1011508/corner-images-using-css 1 Corner images using CSS Ross 2009-06-18T08:38:52Z 2009-06-18T08:59:28Z <p>I have a relatively simple design that is puzzling me. It has 4 large images that need to be stuck to the top left, right and bottom left, right corners. The images are quite large and the content container overlaps them. A little something like this:</p> <p><img src="http://www.kalleload.net/uploads/nizyjc/zxyagpfrmjqe.png" alt="Structure" /></p> <p>My problem is that my implementation works fine in all major browsers except IE8 (which I was just starting to respect). Is there a better way I can do this?</p> <p>I'm using the following markup at the moment:</p> <pre><code>&lt;div class="corner-top"&gt; &lt;div&gt;&lt;img src="./images/top-left-corner.png" /&gt;&lt;/div&gt; &lt;/div&gt; &lt;div class="corner-bottom"&gt; &lt;img src="./images/bottom-left-corner.png" /&gt; &lt;/div&gt; &lt;div id="container"&gt; .... &lt;/div&gt; #container { margin: 60px auto; width: 488px; } .corner-top { background: url('./images/top-right-corner.png') top right no-repeat; height: 356px; min-width: 868px; overflow: hidden; position: absolute; top: 0; width: 100%; z-index: -20; } .corner-top div { min-width: 868px; } .corner-bottom { background: url('./images/bottom-right-corner.png') bottom right no-repeat; bottom: 0; height: 325px; min-width: 868px; overflow: hidden; position: absolute; width: 100%; z-index: -20; } .corner-bottom div { min-width: 868px; } </code></pre> http://stackoverflow.com/questions/987474/are-there-alternatives-to-cssdoc/1011526#1011526 1 Answer by Ross for Are there alternatives to CSSDoc? Ross 2009-06-18T08:43:42Z 2009-06-18T08:43:42Z <p><a href="http://www.cssdocumentor.com/" rel="nofollow">CSSDocumentor</a> looks similar to what you mention, although it doesn't have any IDE support yet. I can't find any alternatives either.</p> http://stackoverflow.com/questions/992565/why-isnt-this-rewrite-rule-working 0 Why isn't this rewrite rule working? Ross 2009-06-14T10:09:03Z 2009-06-14T13:58:33Z <p>I'm using the following code in my .htaccess:</p> <pre><code>Options +FollowSymlinks RewriteEngine On RewriteCond %{REQUEST_FILENAME}.php -f RewriteCond %{REQUEST_URI} !/$ RewriteRule (.*) $1\.php [L] RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)/$ /$1 [R=301,L] # Special rewrite rules # ideas/&lt;id&gt; RewriteRule ^ideas/([0-9]+)$ idea\?id=$1 # users/&lt;name&gt; RewriteRule ^users/(.+)$ users\?name=$1 </code></pre> <p>The ideas/ rule works fine, as I'd expect it to, but the users/ rule doesn't seem to. It gives me a HTTP 500 error and the Apache log says it's exceeded the amount of redirects available:</p> <blockquote> <p>[Sun Jun 14 10:58:39 2009] [error] [client 127.0.0.1] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: <a href="http://localhost/users" rel="nofollow">http://localhost/users</a></p> </blockquote> <p>The url I'm testing it on is /users/ross, which should work fine. /ideas/1 definitely does work fine.</p> http://stackoverflow.com/questions/992565/why-isnt-this-rewrite-rule-working/992873#992873 0 Answer by Ross for Why isn't this rewrite rule working? Ross 2009-06-14T13:58:33Z 2009-06-14T13:58:33Z <p>Adding a / before the files fixed this:</p> <pre><code>RewriteRule ^ideas/([0-9]+)$ ideas?id=$1 RewriteRule ^users/(.+)$ users?name=$1 </code></pre> <p>to:</p> <pre><code>RewriteRule ^ideas/([0-9]+)$ /ideas?id=$1 RewriteRule ^users/(.+)$ /users?name=$1 </code></pre> http://stackoverflow.com/questions/967254/dead-directories-in-mercurial 1 'Dead' directories in Mercurial Ross 2009-06-08T22:05:56Z 2009-06-09T08:13:50Z <p>In my Hg repository (at Google Code) I have a directory that shouldn't be there. Basically I decided to move everything into a sub-directory (I had everything in the root), which worked fine but now there's a couple of 'dead' directories. Its my understanding HG works off files rather than tracking directories so I think that's what's happening.</p> <p><strong>Example</strong></p> <p>Original directory structure:</p> <pre><code>/ - includes/ - bootstrap - index </code></pre> <p>Change made and pushed (this is what I see in my working copy, which is up-to-date):</p> <pre><code>/ - project/ - includes/ - bootstrap - index </code></pre> <p>Result (this is what I see on the remote repo):</p> <pre><code>/ - includes/ - project/ - includes/ - bootstrap - index </code></pre> <p>This only occurs on the remote repository, my working copy is fine. I've seen that the <code>push</code> command can run remote commands at the remote repo - could there be something I could run using that?</p> http://stackoverflow.com/questions/1179868/rewriting-query-string-using-modrewrite/1179902#1179902 Comment by Ross on Rewriting query string using mod_rewrite Ross 2009-07-24T21:49:03Z 2009-07-24T21:49:03Z It still doesn't want to work on my platform but if it's working for you I'll mark it as answered. I decided to change where I use a form into some hyperlinks anyway). Thanks http://stackoverflow.com/questions/1179868/rewriting-query-string-using-modrewrite/1179902#1179902 Comment by Ross on Rewriting query string using mod_rewrite Ross 2009-07-24T20:14:18Z 2009-07-24T20:14:18Z That's some crazy regex-fu :) It doesn't seem to work for me though - the GET params in the url stay as they are. http://stackoverflow.com/questions/1179868/rewriting-query-string-using-modrewrite/1179883#1179883 Comment by Ross on Rewriting query string using mod_rewrite Ross 2009-07-24T20:07:40Z 2009-07-24T20:07:40Z If it can't be done then yeah I'll take this approach. Would still be nice if it's possible though. http://stackoverflow.com/questions/25305/for-those-that-demand-those-elusive-badges/1146799#1146799 Comment by Ross on For those that demand those elusive badges Ross 2009-07-18T13:32:09Z 2009-07-18T13:32:09Z This was built a long long time before rounded corners :) Also you can't use styling on stackoverflow. I'll be upgrading the code soon as uvshock.co.uk is expiring. http://stackoverflow.com/questions/1125872/valid-html-and-the-number-of-td-elements/1125893#1125893 Comment by Ross on Valid HTML and the number of TD elements Ross 2009-07-14T14:49:26Z 2009-07-14T14:49:26Z Really though? Say I have 3 columns - a row identifier and 2 attributes, and the 2nd attribute isn't applicable for one row - a colspan doesn't seem very semantic (same value for two rows to me). http://stackoverflow.com/questions/1125678/mysql-fulltext-not-working/1125770#1125770 Comment by Ross on MySQL FULLTEXT not working Ross 2009-07-14T14:37:13Z 2009-07-14T14:37:13Z Thanks, I didn't realise about the 50% rule :) http://stackoverflow.com/questions/3947/music-to-listen-to-while-coding/26386#26386 Comment by Ross on Music to listen to while coding Ross 2009-07-14T08:25:50Z 2009-07-14T08:25:50Z Damn all you Dido haters :) http://stackoverflow.com/questions/1122418/changing-uploadmaxfilesize-on-php/1122435#1122435 Comment by Ross on Changing upload_max_filesize on PHP Ross 2009-07-13T22:30:07Z 2009-07-13T22:30:07Z Update: This does affect it (changes them to 10) so this method works. I'm still quite confused as to why it's not working in php.ini or using ini_set. http://stackoverflow.com/questions/1122418/changing-uploadmaxfilesize-on-php/1122435#1122435 Comment by Ross on Changing upload_max_filesize on PHP Ross 2009-07-13T22:28:28Z 2009-07-13T22:28:28Z No, this is my own Apache/PHP instance on my machine (which is Windows if it's relevant). I'll try adding those to the Apache config. http://stackoverflow.com/questions/1120660/looking-for-an-ebook-based-on-html-and-possible-with-css/1120677#1120677 Comment by Ross on Looking for an ebook based on HTML (and possible with CSS) Ross 2009-07-13T16:52:30Z 2009-07-13T16:52:30Z It wasn't my preferred site either. HTMLDog has a great beginners tutorial at <a href="http://htmldog.com/guides/htmlbeginner/gettingstarted/" rel="nofollow">htmldog.com/guides/htmlbeginner/&hellip;</a>, I couldn't find a HTML ebook however, sorry. http://stackoverflow.com/questions/1106755/should-i-use-googles-jsapi-in-production-code/1106780#1106780 Comment by Ross on Should I use Google's JSAPI in production code? Ross 2009-07-09T22:53:48Z 2009-07-09T22:53:48Z Does it also take advantage of browser pipelining since it's on another server? (possibly the wrong term) http://stackoverflow.com/questions/1010810/what-would-you-do-if-you-just-had-this-code-dumped-in-your-lap Comment by Ross on What would you do if you just had this code dumped in your lap? Ross 2009-06-18T09:18:26Z 2009-06-18T09:18:26Z I saw &quot;global&quot; and laughed. Sorry man :) http://stackoverflow.com/questions/1011508/corner-images-using-css/1011558#1011558 Comment by Ross on Corner images using CSS Ross 2009-06-18T09:10:28Z 2009-06-18T09:10:28Z This was the method I used first, I couldn't find a way to make the bottom corners stick to the bottom on large resolution monitors however - the content's pretty short. http://stackoverflow.com/questions/992565/why-isnt-this-rewrite-rule-working/992743#992743 Comment by Ross on Why isn't this rewrite rule working? Ross 2009-06-14T13:55:52Z 2009-06-14T13:55:52Z The plural bit was a mistake, I've corrected that since. Changing the redirects to point to the files directly works however (although I'd be interested in finding out why it doesn't obey the earlier rules). http://stackoverflow.com/questions/992565/why-isnt-this-rewrite-rule-working/992572#992572 Comment by Ross on Why isn't this rewrite rule working? Ross 2009-06-14T12:05:07Z 2009-06-14T12:05:07Z Updated the question.