User Antony Carthy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T06:13:40Z http://stackoverflow.com/feeds/user/106118 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807410/mod-rewrite-complete-befuzzlement 0 Mod Rewrite complete befuzzlement Antony Carthy 2009-11-27T08:27:05Z 2009-11-27T21:27:57Z <p>Hi Guys,</p> <p>Here is my .htaccess file</p> <pre><code>Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteRule subpage\?sid /index.php [R=301,L,NC] </code></pre> <p>My request is <em><a href="http://example.com" rel="nofollow">http://example.com</a></em>/subpage?sid</p> <p>It keeps returning 404 Not Found, rather than redirecting to index.php</p> <p>I have tried not escaping the ? and changing the request to <em><a href="http://example.com" rel="nofollow">http://example.com</a></em>/subpage\?sid </p> <p>I have tried loads of things to try get this working but am now stumped, so brought it to SO to see if anyone could help.</p> http://stackoverflow.com/questions/1782845/php-login-authenication/1783015#1783015 0 Answer by Antony Carthy for PHP login authenication Antony Carthy 2009-11-23T12:58:58Z 2009-11-23T12:58:58Z <p>You need to call session_start(); on the first line of each page.</p> http://stackoverflow.com/questions/1761578/mod-rewrite-ignoring-d 0 Mod Rewrite ignoring -d Antony Carthy 2009-11-19T07:46:04Z 2009-11-19T12:30:01Z <p>After a day or two, I am still fighting with Mod Rewrite. It seems that 60% of my development time is spent battling the server.</p> <p>My current URL structure is such that all <a href="http://example.com/xyz" rel="nofollow">http://example.com/xyz</a> and <a href="http://example.com/xyz/abc" rel="nofollow">http://example.com/xyz/abc</a> should be handled by index.php. The problem is I have a <a href="http://example.com/admin/" rel="nofollow">http://example.com/admin/</a> section, which is a <em>real directory</em> which I need to be accessible via HTTP request (it's the CMS directory)</p> <p>When I try to browse to the CMS <a href="http://example.com/admin/" rel="nofollow">http://example.com/admin/</a>, It changes my URL to <a href="http://example.com/admin/?n=admin" rel="nofollow">http://example.com/admin/?n=admin</a> and returns a 404. My index.php is receiving n=admin as it's argument.</p> <p>What I cant understand is why these two conditions are being ignored:</p> <pre><code>RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !^admin(?:\/)?$ </code></pre> <p>And why I'm getting that redirect to <a href="http://example.com/admin/?n=admin" rel="nofollow">http://example.com/admin/?n=admin</a> (Rather than just stopping at <a href="http://example.com/admin/" rel="nofollow">http://example.com/admin/</a>.</p> <pre><code>Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !^admin(?:\/)?$ # allow access to certain subdirectories. RewriteRule ^admin(?:\/)?$ /admin/ [L,NC] # redirect all old URLs to new pages (or 404 sitemap page if no analog?). RewriteRule ^company/about(?:\/)?$ /company [R=301,L,NC] # catch any others and try to serve them right RewriteRule ^/?(.+).html$ /$1 [R=301,L] RewriteRule ^/?([0-9]+)(?:\/)?$ /index.php?p=$1 [L] RewriteRule ^/?([-a-zA-Z0-9_+]+)(?:\/)?$ /index.php?n=$1 [L] RewriteRule ^/?([-a-zA-Z0-9_+]+)/([-a-zA-Z0-9_+]+)(?:\/)?$ /index.php?n=$2 [L] </code></pre> <p>Can anyone offer any ideas or point out any flaws in the .htaccess?</p> http://stackoverflow.com/questions/1755826/mod-rewrite-path-issues 0 Mod Rewrite path issues Antony Carthy 2009-11-18T13:05:05Z 2009-11-19T05:07:45Z <p>I have successfully created rewrite rules to handle URLs like</p> <p><a href="http://example.com/xyz" rel="nofollow">http://example.com/xyz</a></p> <p><a href="http://example.com/xyz/" rel="nofollow">http://example.com/xyz/</a></p> <p><a href="http://example.com/xyz/abc" rel="nofollow">http://example.com/xyz/abc</a></p> <p><a href="http://example.com/xyz/abc/" rel="nofollow">http://example.com/xyz/abc/</a></p> <p>Here is the mod rewrite &amp; regex:</p> <pre><code>Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^/?([0-9]+)(?:\/)?$ /index.php?p=$1 [L] RewriteRule ^/?([-a-zA-Z0-9_+]+)(?:\/)?$ /index.php?n=$1 [L] RewriteRule ^/?([-a-zA-Z0-9_+]+)/([-a-zA-Z0-9_+]+)(?:\/)?$ /index.php?n=$2 [L] </code></pre> <p>This works great, but the problem is that when I go to <a href="http://example.com/xyz/abc" rel="nofollow">http://example.com/xyz/abc</a>, my script gets the correct input (n=abc) but the paths are messed up, so all relative URLs in my code are broken, as they are now relative to xyz instead of the root. </p> <p>Is there a way around this at all? As you can see above I have tried to redirect to /index.php to force the path to be correct. My brain is fried after a long day of regex and code, so I hope it's not something disastrously trivial.</p> http://stackoverflow.com/questions/1733974/ie-errors-with-jquery-timeout 0 IE errors with jQuery & timeout Antony Carthy 2009-11-14T11:18:21Z 2009-11-14T12:40:32Z <p>In a jquery hover event I use the following code to drop down a menu: </p> <pre><code>clearTimeout(hTimeout); $('#lowermenu').queue('fx', []); $('#menucenter .current').removeClass('current'); $(this).children('a').addClass('current'); dTimeout = setTimeout(function($item){slidelower($item)}, 200, $(this)); // This is the bad line function slidelower($li) { $li.addClass('dropping'); $lowermenu = $li.children('ul').clone(); $('#lowermenu:not(:animated)').empty().append($lowermenu).slideDown(); $('#lowermenu &gt; ul &gt; li:not(:animated)').hover(function() { $(this).children('ul:hidden').css('top', 'auto').slideDown(); }, function() { $(this).children('ul:visible').slideUp(); }); } </code></pre> <p>I get the following error:</p> <p>Webpage error details</p> <p>User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.3; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.3; OfficeLivePatch.0.0) Timestamp: Sat, 14 Nov 2009 11:12:46 UTC</p> <p>Message: 'undefined' is null or not an object</p> <p>Line: 81</p> <p>Char: 25</p> <p>Code: 0</p> <p>URI: [the url was here]</p> <p>I suspect that it's caused by the setTimeout - I am passing in a third parameter as an argument for the anonymous function. That anonymous function calls a function with a closure.</p> <p>Can anyone help?</p> http://stackoverflow.com/questions/1733974/ie-errors-with-jquery-timeout/1734137#1734137 0 Answer by Antony Carthy for IE errors with jQuery & timeout Antony Carthy 2009-11-14T12:40:32Z 2009-11-14T12:40:32Z <p>OK, I found the problem. setTimeout in IE doesnt support the additional parameters:</p> <p><a href="https://developer.mozilla.org/en/window.setTimeout" rel="nofollow">https://developer.mozilla.org/en/window.setTimeout</a></p> <p>Mission aborted.</p> http://stackoverflow.com/questions/1058158/can-somebody-explain-jquery-queue-to-me/1577050#1577050 0 Answer by Antony Carthy for Can somebody explain jQuery queue to me? Antony Carthy 2009-10-16T09:20:39Z 2009-10-16T09:20:39Z <p>Is it possible to have animations run in realtime such that the animation function returns only after the animation is completed?</p> <p>I have a problem with the logic for a complicated menu, where if a menu is sliding up and it receives a mouseover event and tries to slide down, but both events contradict each other and it ends up getting very broken. How do I get around this?</p> http://stackoverflow.com/questions/1566859/textarea-contenteditable 2 Textarea contenteditable Antony Carthy 2009-10-14T14:56:45Z 2009-10-15T07:31:06Z <p>I am trying to make a textarea content editable and I am failing. I am using this code: </p> <pre><code>&lt;textarea id='' class='' name='notes' rows='12' cols='67' contenteditable='true' &gt;&lt;/textarea&gt; </code></pre> <p>I am expecting a result like <a href="http://html5demos.com/contenteditable" rel="nofollow">http://html5demos.com/contenteditable</a></p> <p>Does anyone have an idea why it's not working?</p> <p><strong>Edit:</strong></p> <p>I am doing this because I am trying to do a oneliner to add a control to a form in which (HTML) formatted content can be pasted and retain its formatting. I am trying to do this without fuss and without javascript code. It appears this is not possible. I will close this question in a day if no further input to the contrary is added.</p> http://stackoverflow.com/questions/388180/how-to-make-an-image-center-vertically-horizontally-inside-a-bigger-div/1486736#1486736 0 Answer by Antony Carthy for How to make an image center (vertically & horizontally) inside a bigger div Antony Carthy 2009-09-28T12:19:04Z 2009-09-28T12:19:04Z <p>I cannot get this centering working with the following: the .galleryimage class is applied to the , and the contains the actual image.</p> <pre><code>.galleryimage { width: 204px; height: 204px; background-color: #929292; float: left; margin-left: 24px; text-align: center; line-height: 204px; display: block; } .galleryimage img { vertical-align: middle; } </code></pre> <p>The image centers horizontally, thanks to text-align: center;, but does not change its vertical alignment no matter what I try. Any help would be greatly appreciated.</p> http://stackoverflow.com/questions/433044/post-your-short-extension-functions-goodies-for-jquery/1361266#1361266 2 Answer by Antony Carthy for Post your short extension functions goodies for jQuery Antony Carthy 2009-09-01T08:37:24Z 2009-09-01T08:37:24Z <p>Interprets absolute URLs on the page as external links, and sets them to open in a new tab and to have friendly title &amp; class for specific styling.</p> <pre><code>$("#content [href^='http']:not(a:has('img'))").each(function(){$(this).attr("target", "_blank").addClass("external").attr("title", "External Link to " + $(this).attr("href"))}); </code></pre> http://stackoverflow.com/questions/433044/post-your-short-extension-functions-goodies-for-jquery/1361246#1361246 1 Answer by Antony Carthy for Post your short extension functions goodies for jQuery Antony Carthy 2009-09-01T08:31:21Z 2009-09-01T08:31:21Z <p><strong>Quick and easy AJAX:</strong></p> <p>The following allow you to make anchors like </p> <pre><code>&lt;a href='http://www.google.com/' rel='#myselector' class='ajax' /&gt; </code></pre> <p>which do an AJAX query on the <code>href</code> URL and inject the result into the first element defined by the selector in the anchor's <code>rel</code> attribute.</p> <pre><code>// Allow hrefs with the class 'ajax' and a rel attribute set with a selector to load content via ajax into the selected element. $('.ajax').unbind('click').click ( function(e) { $($(this).attr('rel')).load($(this).attr("href")); e.preventDefault(); } ); </code></pre> http://stackoverflow.com/questions/1346708/executing-php-from-another-file/1346892#1346892 0 Answer by Antony Carthy for Executing php from another file Antony Carthy 2009-08-28T13:10:15Z 2009-08-28T13:10:15Z <p>Since you wish to edit the script before using it, the only way to do this practially is to use:</p> <pre><code>eval($string); </code></pre> <p>I'm sure I don't need to tell you not to do this with user input if you value security at all.</p> http://stackoverflow.com/questions/1327071/how-to-create-rss-reader-with-php/1327098#1327098 0 Answer by Antony Carthy for how to create rss reader with php? Antony Carthy 2009-08-25T09:23:13Z 2009-08-25T09:23:13Z <p>Try an RSS parser, which can also cache the feed to save everyone time and money:</p> <p><a href="http://lastrss.oslab.net/" rel="nofollow">http://lastrss.oslab.net/</a></p> http://stackoverflow.com/questions/1299424/selecting-empty-text-input-using-jquery/1310601#1310601 -2 Answer by Antony Carthy for Selecting empty text input using jQuery Antony Carthy 2009-08-21T07:58:27Z 2009-08-21T07:58:27Z <p>Am I right that the :empty filter is made for this job?</p> <pre><code>$('input[type=text]:empty').doStuff(); </code></pre> http://stackoverflow.com/questions/1298600/bluetooth-uuid-discovery 1 Bluetooth UUID discovery Antony Carthy 2009-08-19T08:55:21Z 2009-08-19T10:14:41Z <p>Does anyone know how a bluetooth device could pick up the discoverable devices' device IDs in range? </p> <p>I am ideally looking for the simplest solution that involves the smallest implimentation of the bluetooth protocols. </p> <p>A starting point would be good, I just wish to create a device that can store all the device ids of nearby bluetooth devices with minimal power consumption, preferably just using radio frequencies and not SDP and whatever else.</p> <p>If you can't help me with this, please can you help me find good reading material for low level bluetooth (step by step) communication. The reading online is so high level that I cant work out what is actually sent, when.</p> http://stackoverflow.com/questions/1293310/how-do-i-center-vertically-and-horizontally-buttons-in-a-div-tag/1293364#1293364 0 Answer by Antony Carthy for How do I center (vertically and horizontally) buttons in a div tag? Antony Carthy 2009-08-18T11:47:39Z 2009-08-18T11:47:39Z <p>set the margins around the object to take up the rest of the space. If you want to center a 50px by 50px div in a 100px by 100px div, then you will set a margin of 25px around the 50px div.</p> http://stackoverflow.com/questions/1292298/using-and-formating-an-rss-feed/1292393#1292393 2 Answer by Antony Carthy for Using and formating an RSS feed. Antony Carthy 2009-08-18T07:47:26Z 2009-08-18T07:47:26Z <p>Try an RSS parser, which also caches the feed to save everyone time and money:</p> <p><a href="http://lastrss.oslab.net/" rel="nofollow">http://lastrss.oslab.net/</a></p> <p>And a ticker or scroller - a decent one can be found here: </p> <p><a href="http://www.dynamicdrive.com/dynamicindex17/rsspausescroller/" rel="nofollow">http://www.dynamicdrive.com/dynamicindex17/rsspausescroller/</a></p> http://stackoverflow.com/questions/1288243/osticket-whats-better 1 OSTicket - What's better? Antony Carthy 2009-08-17T14:27:27Z 2009-08-17T16:43:28Z <p>What is the best open source customer support / staff management / job management software out there?</p> <p>We are using OSTicket right now, which has some serious shortcomings.</p> <p>Anyone used anything better?</p> http://stackoverflow.com/questions/1288045/jquery-css-ninja-help-wanted/1288380#1288380 0 Answer by Antony Carthy for JQuery - CSS ninja help wanted Antony Carthy 2009-08-17T14:47:49Z 2009-08-17T14:47:49Z <p>To achieve the curved 'buttons' on the slider, the script uses CSS property border-radius, which is not supported in &lt;=ie6. The blue bar is easy enough to fix, just give it a fixed height and a line height.</p> http://stackoverflow.com/questions/1142853/mobile-phone-can-it-programatically-broadcast-at-a-radio-frequency 0 Mobile phone - can it programatically broadcast at a radio frequency? Antony Carthy 2009-07-17T12:04:06Z 2009-08-05T15:32:36Z <p>Is it possible to make a cell phone transmit arbitrary radio waves at a certain frequency? Or does the Mobile OS only allow higher level access?</p> <p>If the answer is 'no' as I expect it is, is there any way to make a phone talk to another electronic device remotely without handshakes and the like?</p> http://stackoverflow.com/questions/1193500/php-truncate-html-ignoring-tags/1193573#1193573 0 Answer by Antony Carthy for PHP: Truncate HTML, ignoring tags Antony Carthy 2009-07-28T11:44:50Z 2009-07-28T11:44:50Z <p>This is very difficult to do without using a validator and a parser, the reason being that imagine if you have</p> <pre><code>&lt;div id='x'&gt; &lt;div id='y'&gt; &lt;h1&gt;Heading&lt;/h1&gt; 500 lines of html ... etc ... &lt;/div&gt; &lt;/div&gt; </code></pre> <p>How do you plan to truncate that and end up with valid HTML?</p> <p>After a brief search, I found <a href="http://www.the-art-of-web.com/php/truncate/" rel="nofollow">this link</a> which could help.</p> http://stackoverflow.com/questions/1153868/mod-rewrite-most-requests-to-index-php 0 Mod rewrite most requests to index.php Antony Carthy 2009-07-20T14:17:25Z 2009-07-20T14:57:13Z <pre><code>Options +FollowSymlinks RewriteEngine On RewriteBase / ##RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !\.(js|ico|gif|jpg|png|css)$ [NC] RewriteCond %{REQUEST_FILENAME} !^index.php [NC] RewriteCond %{REQUEST_FILENAME} !^$ [NC] RewriteCond %{REQUEST_FILENAME} !-d ## RewriteRule ^/([a-zA-Z_+-]+).php$ index.php?p=%1 [R=301] ## RewriteRule ^/?([-a-zA-Z0-9_+]+)$ index.php?p=$1 [R=301,L] ## RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php?b={REQUEST_FILENAME} RewriteRule * index.php?p={REQUEST_FILENAME} [R=301,L] </code></pre> <p>Above you can see my attempts to redirect any request that is not an existing directory, is not index.php and is not a static resource to redirect to index.php?p=<em>resourcename</em> </p> <p>I am not having any luck. Basically the purpose of this is to redirect static and old urls to new ones as I have just rewritten an old site.</p> <p>The PHP will handle the redirect logic.</p> <p>At the moment this code causes an internal server error, I assume because it is caught in a redirect loop. What have I done wrong? My brain is fried after a long day.</p> http://stackoverflow.com/questions/1153868/mod-rewrite-most-requests-to-index-php/1154081#1154081 0 Answer by Antony Carthy for Mod rewrite most requests to index.php Antony Carthy 2009-07-20T14:57:13Z 2009-07-20T14:57:13Z <p>This code eventually solved my problem.</p> <p>Thanks for the help, though.</p> <pre><code>Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !index.php RewriteRule ^/?([-a-zA-Z0-9_+]+).php$ /$1 [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^/?([-a-zA-Z0-9_+]+)$ index.php?p=$1 [L] </code></pre> http://stackoverflow.com/questions/1130308/how-to-request-certain-page-elements-not-be-indexed 0 How to request certain page elements not be indexed Antony Carthy 2009-07-15T09:20:21Z 2009-07-15T09:30:56Z <p>Essentially I would like to specify an element to be ignored by search engines. If I reference pornography from an academic standpoint, I don't want Google to list my site under porn searches, for instance, but would like it to index the rest of the page.</p> <p>Is this possible? I'm sure I have come across a method of including meta data into one's html to achieve this.</p> <p>I have tried to find this on the web, but have been unsuccessful. I can't make sense of <a href="http://microformats.org/wiki/robots-exclusion" rel="nofollow">this page</a>, since I don't know if because it's a draft specification it is not recognised by crawl bots.</p> http://stackoverflow.com/questions/910727/jquery-event-for-images-loaded 3 jQuery event for images loaded Antony Carthy 2009-05-26T13:38:24Z 2009-07-10T15:08:12Z <p>Is it possible to detect when all images are loaded via a jQuery event?</p> <p>Ideally, there should be a </p> <pre><code>$(document).idle(function() { } </code></pre> <p>or</p> <pre><code>$(document).contentLoaded(function() { } </code></pre> <p>But I can't find such a thing. </p> <p>I thought of attaching an event like this:</p> <pre><code>$(document).ready(function() { var imageTotal = $('img').length; var imageCount = 0; $('img').load(function(){if(++imageCount == imageTotal) doStuff();}); } </code></pre> <p>But will this break if an image fails to load? It's critically important for the method to be called, and at the right time.</p> http://stackoverflow.com/questions/1102757/jquery-dynamic-pagination-for-comments/1102815#1102815 1 Answer by Antony Carthy for jquery dynamic pagination for comments Antony Carthy 2009-07-09T09:34:38Z 2009-07-09T09:34:38Z <p>Your question doesn't make much sense and is very jumbled.</p> <p>You can either load the entire list when the page first loads, and use jquery to paginate it by hiding the extra entries, which will work fine for lists with a few pages worth of content.</p> <p>The other option is to use AJAX to fetch the next or previous page when the appropriate link is clicked. </p> <p>There are plenty of pagination add ons for jquery. <a href="http://plugins.jquery.com/project/pagination" rel="nofollow">Maybe check them out</a>.</p> <p>Don't use a POST request to get the next page as it looks like you might be, unless you are just using the wrong terminology.</p> http://stackoverflow.com/questions/1097969/how-can-web-technology-be-used-for-a-c-application-gui/1098365#1098365 0 Answer by Antony Carthy for How can web technology be used for a C++ application GUI? Antony Carthy 2009-07-08T14:14:34Z 2009-07-09T09:10:01Z <p>As a sideline, I have built an effictive application using an IE form control, basically embedding a web browser into my app, which served my purposes at the time.</p> <p>Edit: </p> <p><a href="http://msdn.microsoft.com/en-ca/library/aa770041%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-ca/library/aa770041(VS.85).aspx</a></p> <p><a href="http://stackoverflow.com/questions/tagged/mshtml">http://stackoverflow.com/questions/tagged/mshtml</a></p> http://stackoverflow.com/questions/1097341/session-start/1098533#1098533 0 Answer by Antony Carthy for Session start Antony Carthy 2009-07-08T14:42:13Z 2009-07-08T14:42:13Z <p>Unintuitively, you have to start the session on EVERY PHP page on which you are using it. Hope that helps.</p> http://stackoverflow.com/questions/1091106/what-does-stdout-in-displayerrors-in-phpinfo-mean/1091150#1091150 1 Answer by Antony Carthy for What does stdout in display_errors in phpinfo() mean? Antony Carthy 2009-07-07T09:00:28Z 2009-07-07T09:08:11Z <p>stdout is the output stream that is used for normal output. echo "hello worl"; outputs to stdout. You can also log to file, or output to stderr. I don't think stderr is useful in the web context, but I could be wrong.</p> <p><a href="http://us3.php.net/manual/en/wrappers.php.php" rel="nofollow">http://us3.php.net/manual/en/wrappers.php.php</a></p> http://stackoverflow.com/questions/1079002/why-have-my-images-got-extra-spacing 0 Why have my images got extra spacing? Antony Carthy 2009-07-03T11:45:32Z 2009-07-04T04:16:42Z <p>Can anyone tell me what is causing the space below the images? There seems to be extra padding in the divs with the red border relating to the images. I cant find this spacing in firebug at all. </p> <p>Baffled.</p> <p><img src="http://antony.co.za/so.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1807410/mod-rewrite-complete-befuzzlement/1807442#1807442 Comment by Antony Carthy on Mod Rewrite complete befuzzlement Antony Carthy 2009-11-27T14:05:07Z 2009-11-27T14:05:07Z I can't use just QUERY_STRING for complicated reasons, but your answer does make sense. The following Still gives me 404: RewriteCond %{THE_REQUEST} subpage\?sid$ RewriteRule ^.*$ /index.php [R=301,L,NC] http://stackoverflow.com/questions/1782808/rewrite-code-in-php Comment by Antony Carthy on rewrite code in php Antony Carthy 2009-11-23T12:24:23Z 2009-11-23T12:24:23Z I'm not 100% with you... the english needs to be improved a bit. http://stackoverflow.com/questions/1761578/mod-rewrite-ignoring-d/1761667#1761667 Comment by Antony Carthy on Mod Rewrite ignoring -d Antony Carthy 2009-11-19T08:22:59Z 2009-11-19T08:22:59Z In fact, this should work, but doesn't: RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d [OR] RewriteCond %{REQUEST_FILENAME} ^admin(?:\/)?$ RewriteRule ^(.?)$ $1 [L] http://stackoverflow.com/questions/1761578/mod-rewrite-ignoring-d/1761667#1761667 Comment by Antony Carthy on Mod Rewrite ignoring -d Antony Carthy 2009-11-19T08:18:41Z 2009-11-19T08:18:41Z That would suggest that this would work: RewriteCond %{REQUEST_FILENAME} -f RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{REQUEST_FILENAME} ^admin(?:\/)?$ RewriteRule ^(.?)$ $1 [L] But it doesnt? http://stackoverflow.com/questions/1761578/mod-rewrite-ignoring-d Comment by Antony Carthy on Mod Rewrite ignoring -d Antony Carthy 2009-11-19T08:05:42Z 2009-11-19T08:05:42Z To Sum up my question, I cant access a directory that exists on the server, because the mod rewrite is redirecting me. This should not happen because I set RewriteCond %{REQUEST_FILENAME} !-d http://stackoverflow.com/questions/1755826/mod-rewrite-path-issues/1756066#1756066 Comment by Antony Carthy on Mod Rewrite path issues Antony Carthy 2009-11-18T14:26:27Z 2009-11-18T14:26:27Z You and Welbog both had nice answers. Gave the accepted one to you as the underdog points wise. Thanks. http://stackoverflow.com/questions/1755826/mod-rewrite-path-issues/1755849#1755849 Comment by Antony Carthy on Mod Rewrite path issues Antony Carthy 2009-11-18T13:54:16Z 2009-11-18T13:54:16Z @pekka I unfortunately need to use this URL structure due to project requirements, but I do agree a different delimiter would be more appropriate. http://stackoverflow.com/questions/1756015/whats-the-difference-between-i-and-i-in-php/1756021#1756021 Comment by Antony Carthy on What's the difference between ++$i and $i++ in PHP? Antony Carthy 2009-11-18T13:52:15Z 2009-11-18T13:52:15Z -1 because it doesn't explain the way it works. http://stackoverflow.com/questions/1756015/whats-the-difference-between-i-and-i-in-php/1756039#1756039 Comment by Antony Carthy on What's the difference between ++$i and $i++ in PHP? Antony Carthy 2009-11-18T13:50:12Z 2009-11-18T13:50:12Z Thats technically an oversimplification - think of a for loop etc. http://stackoverflow.com/questions/1755826/mod-rewrite-path-issues/1755849#1755849 Comment by Antony Carthy on Mod Rewrite path issues Antony Carthy 2009-11-18T13:17:07Z 2009-11-18T13:17:07Z thanks for your input... I kind of hope there is a way around it. Please let me know if you have reading that positively identifies this as the case and I will accept this answer. http://stackoverflow.com/questions/1755826/mod-rewrite-path-issues/1755852#1755852 Comment by Antony Carthy on Mod Rewrite path issues Antony Carthy 2009-11-18T13:13:11Z 2009-11-18T13:13:11Z thats kind of the reverse of what I want - it needs to be using the root. http://stackoverflow.com/questions/1755815/disable-all-click-events-on-page-javascript Comment by Antony Carthy on disable all click events on page (javascript) Antony Carthy 2009-11-18T13:11:44Z 2009-11-18T13:11:44Z Your way should work. I just executed it on this page with firebug console and it worked. http://stackoverflow.com/questions/1733974/ie-errors-with-jquery-timeout/1734004#1734004 Comment by Antony Carthy on IE errors with jQuery & timeout Antony Carthy 2009-11-14T12:35:48Z 2009-11-14T12:35:48Z Ok I still have trouble: setTimeout(function(theid){window.console.log(theid)}, 200, 'test'); This is outputting to the console &quot;undefined&quot;. What am I doing wrong? http://stackoverflow.com/questions/1733974/ie-errors-with-jquery-timeout/1734004#1734004 Comment by Antony Carthy on IE errors with jQuery & timeout Antony Carthy 2009-11-14T12:18:54Z 2009-11-14T12:18:54Z Thanks meder, your answer helped, but I wasnt able to pass a usable object through, even trying many permutations of that method. Thank you, though. http://stackoverflow.com/questions/1566859/textarea-contenteditable/1568394#1568394 Comment by Antony Carthy on Textarea contenteditable Antony Carthy 2009-10-15T07:28:03Z 2009-10-15T07:28:03Z +1 for effort, but it's not quite what I needed... because I think what I needed is not possible.