User Antony Carthy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T06:13:40Zhttp://stackoverflow.com/feeds/user/106118http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807410/mod-rewrite-complete-befuzzlement0Mod Rewrite complete befuzzlement Antony Carthy2009-11-27T08:27:05Z2009-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#17830150Answer by Antony Carthy for PHP login authenicationAntony Carthy2009-11-23T12:58:58Z2009-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-d0Mod Rewrite ignoring -dAntony Carthy2009-11-19T07:46:04Z2009-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-issues0Mod Rewrite path issuesAntony Carthy2009-11-18T13:05:05Z2009-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 & 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-timeout0IE errors with jQuery & timeoutAntony Carthy2009-11-14T11:18:21Z2009-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 > ul > 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#17341370Answer by Antony Carthy for IE errors with jQuery & timeoutAntony Carthy2009-11-14T12:40:32Z2009-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#15770500Answer by Antony Carthy for Can somebody explain jQuery queue to me?Antony Carthy2009-10-16T09:20:39Z2009-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-contenteditable2Textarea contenteditableAntony Carthy2009-10-14T14:56:45Z2009-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><textarea id='' class='' name='notes' rows='12' cols='67' contenteditable='true' ></textarea>
</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#14867360Answer by Antony Carthy for How to make an image center (vertically & horizontally) inside a bigger divAntony Carthy2009-09-28T12:19:04Z2009-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#13612662Answer by Antony Carthy for Post your short extension functions goodies for jQuery Antony Carthy2009-09-01T08:37:24Z2009-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 & 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#13612461Answer by Antony Carthy for Post your short extension functions goodies for jQuery Antony Carthy2009-09-01T08:31:21Z2009-09-01T08:31:21Z<p><strong>Quick and easy AJAX:</strong></p>
<p>The following allow you to make anchors like </p>
<pre><code><a href='http://www.google.com/' rel='#myselector' class='ajax' />
</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#13468920Answer by Antony Carthy for Executing php from another fileAntony Carthy2009-08-28T13:10:15Z2009-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#13270980Answer by Antony Carthy for how to create rss reader with php?Antony Carthy2009-08-25T09:23:13Z2009-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-2Answer by Antony Carthy for Selecting empty text input using jQueryAntony Carthy2009-08-21T07:58:27Z2009-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-discovery1Bluetooth UUID discoveryAntony Carthy2009-08-19T08:55:21Z2009-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#12933640Answer by Antony Carthy for How do I center (vertically and horizontally) buttons in a div tag?Antony Carthy2009-08-18T11:47:39Z2009-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#12923932Answer by Antony Carthy for Using and formating an RSS feed.Antony Carthy2009-08-18T07:47:26Z2009-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-better1OSTicket - What's better?Antony Carthy2009-08-17T14:27:27Z2009-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#12883800Answer by Antony Carthy for JQuery - CSS ninja help wantedAntony Carthy2009-08-17T14:47:49Z2009-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 <=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-frequency0Mobile phone - can it programatically broadcast at a radio frequency?Antony Carthy2009-07-17T12:04:06Z2009-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#11935730Answer by Antony Carthy for PHP: Truncate HTML, ignoring tagsAntony Carthy2009-07-28T11:44:50Z2009-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><div id='x'>
<div id='y'>
<h1>Heading</h1>
500
lines
of
html
...
etc
...
</div>
</div>
</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-php0Mod rewrite most requests to index.phpAntony Carthy2009-07-20T14:17:25Z2009-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#11540810Answer by Antony Carthy for Mod rewrite most requests to index.phpAntony Carthy2009-07-20T14:57:13Z2009-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-indexed0How to request certain page elements not be indexedAntony Carthy2009-07-15T09:20:21Z2009-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-loaded3jQuery event for images loadedAntony Carthy2009-05-26T13:38:24Z2009-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#11028151Answer by Antony Carthy for jquery dynamic pagination for commentsAntony Carthy2009-07-09T09:34:38Z2009-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#10983650Answer by Antony Carthy for How can web technology be used for a C++ application GUI?Antony Carthy2009-07-08T14:14:34Z2009-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#10985330Answer by Antony Carthy for Session startAntony Carthy2009-07-08T14:42:13Z2009-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#10911501Answer by Antony Carthy for What does stdout in display_errors in phpinfo() mean?Antony Carthy2009-07-07T09:00:28Z2009-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-spacing0Why have my images got extra spacing?Antony Carthy2009-07-03T11:45:32Z2009-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#1807442Comment by Antony Carthy on Mod Rewrite complete befuzzlement Antony Carthy2009-11-27T14:05:07Z2009-11-27T14:05:07ZI 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-phpComment by Antony Carthy on rewrite code in phpAntony Carthy2009-11-23T12:24:23Z2009-11-23T12:24:23ZI'm not 100% with you... the english needs to be improved a bit.http://stackoverflow.com/questions/1761578/mod-rewrite-ignoring-d/1761667#1761667Comment by Antony Carthy on Mod Rewrite ignoring -dAntony Carthy2009-11-19T08:22:59Z2009-11-19T08:22:59ZIn 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#1761667Comment by Antony Carthy on Mod Rewrite ignoring -dAntony Carthy2009-11-19T08:18:41Z2009-11-19T08:18:41ZThat 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-dComment by Antony Carthy on Mod Rewrite ignoring -dAntony Carthy2009-11-19T08:05:42Z2009-11-19T08:05:42ZTo 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} !-dhttp://stackoverflow.com/questions/1755826/mod-rewrite-path-issues/1756066#1756066Comment by Antony Carthy on Mod Rewrite path issuesAntony Carthy2009-11-18T14:26:27Z2009-11-18T14:26:27ZYou 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#1755849Comment by Antony Carthy on Mod Rewrite path issuesAntony Carthy2009-11-18T13:54:16Z2009-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#1756021Comment by Antony Carthy on What's the difference between ++$i and $i++ in PHP?Antony Carthy2009-11-18T13:52:15Z2009-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#1756039Comment by Antony Carthy on What's the difference between ++$i and $i++ in PHP?Antony Carthy2009-11-18T13:50:12Z2009-11-18T13:50:12ZThats technically an oversimplification - think of a for loop etc.http://stackoverflow.com/questions/1755826/mod-rewrite-path-issues/1755849#1755849Comment by Antony Carthy on Mod Rewrite path issuesAntony Carthy2009-11-18T13:17:07Z2009-11-18T13:17:07Zthanks 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#1755852Comment by Antony Carthy on Mod Rewrite path issuesAntony Carthy2009-11-18T13:13:11Z2009-11-18T13:13:11Zthats 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-javascriptComment by Antony Carthy on disable all click events on page (javascript)Antony Carthy2009-11-18T13:11:44Z2009-11-18T13:11:44ZYour 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#1734004Comment by Antony Carthy on IE errors with jQuery & timeoutAntony Carthy2009-11-14T12:35:48Z2009-11-14T12:35:48ZOk I still have trouble:
setTimeout(function(theid){window.console.log(theid)}, 200, 'test');
This is outputting to the console "undefined". What am I doing wrong?http://stackoverflow.com/questions/1733974/ie-errors-with-jquery-timeout/1734004#1734004Comment by Antony Carthy on IE errors with jQuery & timeoutAntony Carthy2009-11-14T12:18:54Z2009-11-14T12:18:54ZThanks 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#1568394Comment by Antony Carthy on Textarea contenteditableAntony Carthy2009-10-15T07:28:03Z2009-10-15T07:28:03Z+1 for effort, but it's not quite what I needed... because I think what I needed is not possible.