User Mez - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:29:56Z http://stackoverflow.com/feeds/user/20010 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1805802/php-convert-unicode-codepoint-to-utf-8/1805845#1805845 0 Answer by Mez for PHP: Convert unicode codepoint to UTF-8 Mez 2009-11-26T21:54:41Z 2009-11-26T21:54:41Z <pre><code>$utf8string = html_entity_decode(preg_replace("/U\+([0-9A-F]{4})/", "&amp;#\\1;", $string), ENT_NOQUOTES, 'UTF-8'); </code></pre> <p>is probably the simplest solution.</p> http://stackoverflow.com/questions/1803921/image-upload-latin-chars-problem/1803950#1803950 0 Answer by Mez for Image upload - Latin chars problem Mez 2009-11-26T14:22:53Z 2009-11-26T14:22:53Z <p>This is generally down to the underlying filesystem.</p> <p>What filesystem do you have underneath this?</p> http://stackoverflow.com/questions/1803805/can-i-do-a-regex-search-replace-in-vs-net/1803857#1803857 0 Answer by Mez for can I do a regex search/replace in vs.net? Mez 2009-11-26T14:07:16Z 2009-11-26T14:07:16Z <p>If it's just a certain word:-</p> <pre><code>s/\[someWord\]/[SomeWord]/ </code></pre> <p>But it might just be better to use a replace function</p> <p>If it's anything in square brackets.</p> <pre><code>s/\[[a-zA-Z]+\]/[\u\1]/ </code></pre> http://stackoverflow.com/questions/1803780/modify-sql-file-on-using-command-line-on-unix/1803821#1803821 1 Answer by Mez for modify sql file on using command line on unix Mez 2009-11-26T13:59:38Z 2009-11-26T13:59:38Z <pre><code>sed -e 's/xx_\([a-z]\)/\u\1/' &lt; old.sql &gt; new.sql </code></pre> http://stackoverflow.com/questions/1781307/website-hacking-why-it-is-always-possible-to-do/1796478#1796478 2 Answer by Mez for Website hacking - Why it is always possible to do? Mez 2009-11-25T11:55:39Z 2009-11-25T11:55:39Z <p>It's not possible to make anything 100% secure. </p> <p>All that can be done is to make something hard enough to break into, that the time and effort spent doing so makes it not worth doing.</p> http://stackoverflow.com/questions/1796364/regex-problem-newbie/1796375#1796375 0 Answer by Mez for Regex Problem (newbie) Mez 2009-11-25T11:32:38Z 2009-11-25T11:49:13Z <pre><code>#http://[-a-zA-Z0-9]+\.[-a-zA-Z0-9]+\.[-a-zA-Z]+/\w+\.html# </code></pre> http://stackoverflow.com/questions/1789083/simple-xml-object/1789111#1789111 4 Answer by Mez for simple xml object Mez 2009-11-24T10:10:42Z 2009-11-24T10:16:10Z <p>SimpleXML elements can be used as strings, but you need to "cast" them to a string.</p> <p>Casting in PHP is done by prefixing the data type to a value, </p> <p>so for example,</p> <pre><code>$foo = 1; $bar = (string)$foo; </code></pre> <p>Would make <code>$bar</code> be a string containing the character "1".</p> <p>The solution for the above would be:-</p> <pre><code>$xml = new SimpleXMLElement($auth_info); $_SESSION[userName] = (string)$xml-&gt;profile-&gt;preferredUsername; // (garfx) $_SESSION[email] = (string)$xml-&gt;profile-&gt;verifiedEmail; $_SESSION[givenName] = (string)$xml-&gt;profile-&gt;name-&gt;givenName; $_SESSION[lastName] = (string)$xml-&gt;profile-&gt;name-&gt;familyName; </code></pre> http://stackoverflow.com/questions/1788871/curl-error-when-using-curloptfollowlocation/1788891#1788891 1 Answer by Mez for cURL Error when using CURLOPT_FOLLOWLOCATION Mez 2009-11-24T09:21:57Z 2009-11-24T09:21:57Z <p>This is because your setup has either safe mode or open_basedir settings in the php.ini.</p> <p>You need to change these settings in the php.ini to do this.</p> http://stackoverflow.com/questions/1788829/how-to-create-menu-in-linux-mint/1788857#1788857 1 Answer by Mez for How to create Menu in linux mint Mez 2009-11-24T09:13:02Z 2009-11-24T09:13:02Z <p>Linux Mint is based on Ubuntu, which uses the freedesktop.org standard for it's Menus.</p> <p>You can find the latest spec for the free desktop menu standard <a href="http://standards.freedesktop.org/menu-spec/latest/" rel="nofollow">here</a> </p> http://stackoverflow.com/questions/1782310/php-get-question-calling-from-a-post-call/1782371#1782371 0 Answer by Mez for PHP GET question - calling from a POST call Mez 2009-11-23T10:51:41Z 2009-11-23T10:51:41Z <p>You can specify an abritrary URL when you add your GA code. For example, all our different checkout pages go through validate.php, so this is the URL that the person would see, however, we put in some extra code to give a specific tracking URL to google.</p> <p>For example:-</p> <pre><code>&lt;script type="text/javascript"&gt; try { var pageTracker = _gat._getTracker("UA-XXXXX-1"); pageTracker._setDomainName("example.com"); pageTracker._trackPageview("/checkout/login/"); } catch(err) {} &lt;/script&gt; </code></pre> <p>Would make google track this as being <code>/checkout/login/</code> even though the page in the browser actually shows <code>/validate.php</code></p> <p>You can output (as we do) this page variable from different PHP variables</p> <pre><code>$searchterm = $_POST['search']; echo 'pageTracker._trackPageview("/search/' . urlencode($searchterm) . '");'; </code></pre> http://stackoverflow.com/questions/1754221/controller-folders-and-the-new-autoloader-in-zend-framework/1754233#1754233 0 Answer by Mez for Controller folders and the new Autoloader in Zend Framework Mez 2009-11-18T07:36:35Z 2009-11-18T07:36:35Z <p>I haven't actually seen anything use <code>application/controllers</code> before</p> <p>Generally, stuff would go into <code>application/modules/&lt;module&gt;/controllers/</code> where "generic" controllers would go into the <code>default</code> module</p> <p>You might get a better answer if the above is incorrect if you mention what versions your transitioning between, and how you're trying to call the controller?</p> http://stackoverflow.com/questions/190292/phpunit-unit-testing-with-items-that-need-to-send-headers 2 PHPUnit - Unit Testing with items that need to send headers Mez 2008-10-10T06:01:46Z 2009-11-09T13:39:01Z <p>I'm currently working with PHPUnit to try and develop tests alongside what I'm writing, however, I'm currently working on writing the Session Manager, and am having issues doing so...</p> <p>The constructor for the Session handling class is</p> <pre><code>private function __construct() { if (!headers_sent()) { session_start(); self::$session_id = session_id(); } } </code></pre> <p>However, as PHPUnit sends out text before it starts the testing, any testing on this Object returns a failed test, as the HTTP "Headers" have been sent...</p> http://stackoverflow.com/questions/1697253/cannot-import-django-core/1697437#1697437 0 Answer by Mez for Cannot import django.core Mez 2009-11-08T18:28:22Z 2009-11-08T18:28:22Z <p>You probably have a file/folder called django somewhere in your path, that isn't the actual path.</p> <p>try this</p> <pre><code>import sys sys.path </code></pre> <p>And then check everything in that output to see if there is a file/folder called django(.py) somewhere.</p> <p>If so, change the path (<code>sys.path = ['/path/to/directory/below/django/install'] + sys.path</code>) or move/rename the file.</p> http://stackoverflow.com/questions/1680311/gtk-startup-notification-icon/1680360#1680360 0 Answer by Mez for GTK+ Startup Notification Icon Mez 2009-11-05T12:48:37Z 2009-11-05T12:48:37Z <p>This normally happens automatically when calling the <code>gtk.main()</code> function</p> http://stackoverflow.com/questions/1669104/edit-django-user-admin-template/1669202#1669202 1 Answer by Mez for Edit Django User admin template Mez 2009-11-03T18:19:59Z 2009-11-03T18:19:59Z <p>Have a look at</p> <p><code>django/contrib/admin/templates/admin/auth/user/</code></p> <p>This <em>should</em> contain a couple of templates for modifying the users.</p> <p>You can override these by copying them to <code>TEMPLATE_DIR/admin/auth</code> and then changing them.</p> <p>Also, have a look @ <code>django/contrib/admin/templates/admin/change_form.html</code> </p> <p>This is the file you'd copy and change (to <code>TEMPLATE_DIR/admin/auth/user/</code>) to override the change form for that model.</p> http://stackoverflow.com/questions/1669103/curl-not-storing-cookies/1669118#1669118 -1 Answer by Mez for curl not storing cookies Mez 2009-11-03T18:08:06Z 2009-11-03T18:08:06Z <p>Curl doesn't parse Javascript, therefore the cookies wont ever be set. </p> http://stackoverflow.com/questions/1622750/bug-in-a-php-regex/1622788#1622788 2 Answer by Mez for Bug in a PHP regex Mez 2009-10-26T02:04:34Z 2009-10-30T09:21:02Z <pre><code>echo preg_match('/(?&lt;=^|[^0-9])([0-9)+)(?=[^0-9]).*(?&lt;=[^0-9])\1(?=[^0-9]|$)/', "1 2 3 1 4"); </code></pre> <p>Will match for any repeated number in the sequence, and echo 1 if there is something repeated, 0 if not.</p> <p>(Original version just looked for something repeated after each other, this matches repeated anywhere in the string)</p> http://stackoverflow.com/questions/1635842/django-model-objects-to-a-python-list/1635859#1635859 2 Answer by Mez for django model objects to a python list Mez 2009-10-28T08:34:21Z 2009-10-28T08:46:28Z <pre><code>server_ips = [i.ip for i in AlarmServer.objects.all()] </code></pre> <p>Should work (I just added a space). I've tried this as below</p> <pre><code>mez@stupor % ./manage.py shell Python 2.5.2 (r252:60911, Oct 5 2008, 19:24:49) [GCC 4.3.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) &gt;&gt;&gt; from mysite_org.videos.models import Video &gt;&gt;&gt; url_list = [v.url for v in Video.objects.all()] &gt;&gt;&gt; url_list [u'http://media.mysite.org/videos/sblug_jan2009.flv', u'http://media.mysite.org/videos/sblug_feb2009.flv', u'http://media.mysite.org/videos/phpwm_mar2009.flv', u'http://media.mysite.org/videos/sblug_may2009.flv', u'http://media.mysite.org/videos/sblug_june2009.flv', u'http://media.mysite.org/videos/sblug_sep2009.flv', u'http://media.mysite.org/videos/bugjam-oct-2009.flv'] </code></pre> http://stackoverflow.com/questions/1635848/php-editors-for-ubuntu/1635906#1635906 1 Answer by Mez for PHP editors for Ubuntu Mez 2009-10-28T08:45:14Z 2009-10-28T08:45:14Z <p><a href="http://kate-editor.org/" rel="nofollow">kate</a> is a pretty good editor, I've always preferred it over <a href="http://projects.gnome.org/gedit/" rel="nofollow">gedit</a>.</p> <p>There's also <a href="http://www.scintilla.org/" rel="nofollow">scintilla</a> and <a href="http://www.geany.org/" rel="nofollow">geany</a></p> http://stackoverflow.com/questions/1632899/redirecting-all-uris-to-script-possibly-with-htaccess/1632937#1632937 1 Answer by Mez for Redirecting all uri's to script possibly with htaccess Mez 2009-10-27T18:56:05Z 2009-10-27T18:56:05Z <p>.htaccess;-</p> <pre><code>&lt;IfModule mod_rewrite.c&gt; RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /htdocs/nexus.php [L] &lt;/IfModule&gt; </code></pre> <p>And the filename that was actually called should be available as <code>$_SERVER['REQUEST_URI']</code></p> http://stackoverflow.com/questions/1579023/design-of-an-alternative-fluent-interface-for-regular-expressions/1594311#1594311 1 Answer by Mez for Design of an Alternative (Fluent?) Interface for Regular Expressions Mez 2009-10-20T12:37:54Z 2009-10-20T12:37:54Z <p>In answer to the last part of the question (for Kudos)</p> <pre><code>private static final String pattern = "(?:(?:\\r\\n)?[ \\t])*(?:(?:(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t]" + ")+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:" + "\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(" + "?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ " + "\\t]))*\"(?:(?:\\r\\n)?[ \\t])*))*@(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\0" + "31]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\" + "](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+" + "(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:" + "(?:\\r\\n)?[ \\t])*))*|(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z" + "|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)" + "?[ \\t])*)*\\&lt;(?:(?:\\r\\n)?[ \\t])*(?:@(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\" + "r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[" + " \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)" + "?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t]" + ")*))*(?:,@(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[" + " \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*" + ")(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t]" + ")+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*)" + "*:(?:(?:\\r\\n)?[ \\t])*)?(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+" + "|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r" + "\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:" + "\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t" + "]))*\"(?:(?:\\r\\n)?[ \\t])*))*@(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031" + "]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](" + "?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?" + ":(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?" + ":\\r\\n)?[ \\t])*))*\\&gt;(?:(?:\\r\\n)?[ \\t])*)|(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?" + ":(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?" + "[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)*:(?:(?:\\r\\n)?[ \\t])*(?:(?:(?:[^()&lt;&gt;@,;:\\\".\\[\\] " + "\\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|" + "\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;" + "@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"" + "(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*))*@(?:(?:\\r\\n)?[ \\t]" + ")*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\\" + "\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?" + ":[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[" + "\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*|(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-" + "\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(" + "?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)*\\&lt;(?:(?:\\r\\n)?[ \\t])*(?:@(?:[^()&lt;&gt;@,;" + ":\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([" + "^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\"" + ".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\" + "]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*(?:,@(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\" + "[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\" + "r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] " + "\\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]" + "|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*)*:(?:(?:\\r\\n)?[ \\t])*)?(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\0" + "00-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\" + ".|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@," + ";:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?" + ":[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*))*@(?:(?:\\r\\n)?[ \\t])*" + "(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\"." + "\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[" + "^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]" + "]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*\\&gt;(?:(?:\\r\\n)?[ \\t])*)(?:,\\s*(" + "?:(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\\" + "\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(" + "?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[" + "\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t" + "])*))*@(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t" + "])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?" + ":\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|" + "\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*|(?:" + "[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\" + "]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)*\\&lt;(?:(?:\\r\\n)" + "?[ \\t])*(?:@(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"" + "()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)" + "?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;" + "@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*(?:,@(?:(?:\\r\\n)?[" + " \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@," + ";:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t]" + ")*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\\" + "\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*)*:(?:(?:\\r\\n)?[ \\t])*)?" + "(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\"." + "\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:" + "\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[" + "\"()&lt;&gt;@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])" + "*))*@(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])" + "+|\\Z|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\" + ".(?:(?:\\r\\n)?[ \\t])*(?:[^()&lt;&gt;@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z" + "|(?=[\\[\"()&lt;&gt;@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*\\&gt;(?:(" + "?:\\r\\n)?[ \\t])*))*)?;\\s*)"; </code></pre> <p>matches RFC compliant email addresses :D</p> http://stackoverflow.com/questions/1593611/php-function-confusion/1593671#1593671 9 Answer by Mez for PHP function confusion Mez 2009-10-20T10:17:34Z 2009-10-20T10:17:34Z <p>When you pass something that is not an object to a function in PHP, php makes a copy of that to use within the function.</p> <p>To make it not use a copy, you need to tell PHP you are passing a reference.</p> <p>This is done with the &amp; operator</p> <pre><code>function changeFruit(&amp;$fruit) { changeAgain($fruit); } function changeAgain(&amp;$fruit) { $fruit = "Orange"; } $fruit = "Apple"; changeFruit($fruit); echo $fruit; </code></pre> <p>It would be more sensible, and better practice, to use return values of the functions (as this makes things easier to read)</p> <pre><code>function changeFruit($fruit) { return changeAgain($fruit); } function changeAgain($fruit) { // do something more interesting with$fruit here $fruit = "Orange"; return $fruit; } $fruit = "Apple"; $fruit = changeFruit($fruit); echo $fruit </code></pre> http://stackoverflow.com/questions/1593429/php-comand-line-script-to-create-user-passwd/1593470#1593470 0 Answer by Mez for PHP Comand line script to create user passwd Mez 2009-10-20T09:32:13Z 2009-10-20T09:32:13Z <p>Can't guarantee it'll work, but on first thoughts, my solution would be:-</p> <pre><code>&lt;?php $fp = popen("/usr/bin/passwd " . $user, "w"); fwrite($fp, $password . "\n"); fwrite($fp, $password . "\n"); fclose($fp); </code></pre> http://stackoverflow.com/questions/1593358/mysql-php-query-for-record-with-all-or-fewer-values-but-not-more/1593425#1593425 0 Answer by Mez for mysql & php - query for record with all or fewer values, but not more Mez 2009-10-20T09:24:35Z 2009-10-20T09:24:35Z <pre><code>&lt;?php $boxes = array( array( 'apples', 'oranges' ), array( 'grapes', ), array( 'apples', 'oranges', 'grapes' ), array( 'apples', 'oranges', 'grapes', 'pears', 'bananas' ) ); $search = array( 'apples', 'oranges', 'grapes' ); foreach ($boxes AS $box) { $notinsearch = array_diff($box, $search); if (empty($notinsearch)) { print_r($box); } } </code></pre> http://stackoverflow.com/questions/1587695/sanitize-get-parameters-to-avoid-xss-and-other-attacks/1587713#1587713 1 Answer by Mez for Sanitize $_GET parameters to avoid XSS and other attacks Mez 2009-10-19T09:24:43Z 2009-10-19T09:24:43Z <pre><code>$page = preg_replace('/[^-a-zA-Z0-9_]/', '', $_GET['page']); </code></pre> <p>Is probably the quickest way to sanitize this, this will take anything and make sure that it only contains letters, numbers, underscores or dashes.</p> http://stackoverflow.com/questions/1545052/htaccess-rules-with-a-subdomain-and-two-domains/1587679#1587679 1 Answer by Mez for .htaccess rules with a subdomain and two domains Mez 2009-10-19T09:14:16Z 2009-10-19T09:14:16Z <pre><code>RewriteCond %{HTTP_HOST} !^([^.]+\.)example\.com$ [NC] RewriteCond %{HTTPS}s ^on(s)| RewriteRule ^ http%1://www.example.com%{REQUEST_URI} [L,R=301] </code></pre> <p>Should solve your problem :D</p> http://stackoverflow.com/questions/1585914/help-with-regular-expressions-php/1587602#1587602 0 Answer by Mez for Help with regular expressions (php) Mez 2009-10-19T08:51:45Z 2009-10-19T08:51:45Z <pre><code>/[\x{4e00}-\x{9fa5}][.\s]*\[\/m\][\x{4e00}-\x{9fa5}]/um </code></pre> http://stackoverflow.com/questions/1586273/templatedoesnotexist-error-with-creating-sitemap-for-django-app/1586284#1586284 1 Answer by Mez for 'TemplateDoesNotExist' error with creating Sitemap for Django app Mez 2009-10-18T23:03:54Z 2009-10-18T23:03:54Z <p>This is because it's not finding the default templates.</p> <p>Make sure 'django.template.loaders.app_directories.load_template_source' is in your TEMPLATE_LOADERS setting, and also make sure that django.contrib.sitemaps is in your INSTALLED_APPS</p> http://stackoverflow.com/questions/1586261/how-do-i-get-bzr-to-run-an-arbitrary-command-on-commit 0 How do I get Bzr to run an arbitrary command on commit Mez 2009-10-18T22:52:43Z 2009-10-18T22:59:24Z <p>I need the ability to run an arbitrary command when I try and commit to a bazaar branch.</p> <p>This command should return 0 on success, or any other code on failure, and if the command fails, bzr should refuse to commit.</p> <p>I want to do this for running test suites mainly, however, there are also other things (for example, checking whether there is a freeze on the branch that is trying to be committed, etc etc) that I'd like to be able to do</p> http://stackoverflow.com/questions/1572459/deleting-portion-of-text-string-in-php/1572488#1572488 0 Answer by Mez for Deleting portion of text string in PHP Mez 2009-10-15T13:45:44Z 2009-10-15T13:45:44Z <p>Can you not just check whether the field is "blank" in the code before you get to trying to display it? or put in some logic to not output that if it's blank, don't output it?</p> http://stackoverflow.com/questions/1816572/getting-unique-foreign-keys-in-django/1816583#1816583 Comment by Mez on Getting Unique Foreign Keys in Django? Mez 2009-11-29T20:00:46Z 2009-11-29T20:00:46Z That was what I was about to put in. http://stackoverflow.com/questions/1805802/php-convert-unicode-codepoint-to-utf-8/1805845#1805845 Comment by Mez on PHP: Convert unicode codepoint to UTF-8 Mez 2009-11-26T22:12:53Z 2009-11-26T22:12:53Z Not in my tests it doesn't. It converts the code as shown in the Q to a HTML entity... THEN decodes the html entity. http://stackoverflow.com/questions/1803805/can-i-do-a-regex-search-replace-in-vs-net/1803857#1803857 Comment by Mez on can I do a regex search/replace in vs.net? Mez 2009-11-26T16:39:54Z 2009-11-26T16:39:54Z /me doesn't know vs.net well enough to give you something specific fo ti - I just know that's a valid PCRE. Which did you use? http://stackoverflow.com/questions/1803780/modify-sql-file-on-using-command-line-on-unix/1803821#1803821 Comment by Mez on modify sql file on using command line on unix Mez 2009-11-26T16:38:57Z 2009-11-26T16:38:57Z Well, that depends on whether you ACTUALLY meant xx_ http://stackoverflow.com/questions/1803921/image-upload-latin-chars-problem Comment by Mez on Image upload - Latin chars problem Mez 2009-11-26T14:21:14Z 2009-11-26T14:21:14Z What version of PHP are you using? http://stackoverflow.com/questions/1796364/regex-problem-newbie/1796375#1796375 Comment by Mez on Regex Problem (newbie) Mez 2009-11-25T11:48:57Z 2009-11-25T11:48:57Z good point - editing http://stackoverflow.com/questions/1789128/tcp-ip-guaranteed-delivery-question Comment by Mez on TCP IP Guaranteed delivery question Mez 2009-11-24T10:21:54Z 2009-11-24T10:21:54Z belongs on serverfault really. http://stackoverflow.com/questions/1788593/php-curl-can-i-check-if-my-user-agent-is-working/1788844#1788844 Comment by Mez on PHP cURl: Can I check if my user agent is working? Mez 2009-11-24T09:16:54Z 2009-11-24T09:16:54Z However, this won't check that the UA he's set in his PHP code is valid... at all... http://stackoverflow.com/questions/1759271/google-analytics-tracking-code-and-document-write-causing-requests-to-localhost Comment by Mez on Google Analytics Tracking Code and Document.write causing requests to localhost? Mez 2009-11-23T10:54:09Z 2009-11-23T10:54:09Z What browser are you using? Have you tried this in other browsers? http://stackoverflow.com/questions/1669104/edit-django-user-admin-template/1669169#1669169 Comment by Mez on Edit Django User admin template Mez 2009-11-03T18:17:41Z 2009-11-03T18:17:41Z you probably need to add it in TEMPLATE_DIR/admin/auth/user if it's only specific to a certain user ;) http://stackoverflow.com/questions/1669104/edit-django-user-admin-template Comment by Mez on Edit Django User admin template Mez 2009-11-03T18:07:29Z 2009-11-03T18:07:29Z What do you mean &quot;doesnt fit in&quot;? Doesnt display? http://stackoverflow.com/questions/1662224/why-doesnt-this-numberformat-work Comment by Mez on why doesn't this number_format work? Mez 2009-11-02T16:21:03Z 2009-11-02T16:21:03Z Can you provide sample data? http://stackoverflow.com/questions/834690/how-do-i-do-regex-replacement-with-numbered-groups Comment by Mez on How do I do regex replacement with numbered groups? Mez 2009-10-30T19:49:51Z 2009-10-30T19:49:51Z what language is this? http://stackoverflow.com/questions/1622750/bug-in-a-php-regex/1622788#1622788 Comment by Mez on Bug in a PHP regex Mez 2009-10-30T09:20:53Z 2009-10-30T09:20:53Z Oh, wait, I see... http://stackoverflow.com/questions/1622750/bug-in-a-php-regex/1622788#1622788 Comment by Mez on Bug in a PHP regex Mez 2009-10-29T10:02:39Z 2009-10-29T10:02:39Z Are the items always space seperated?