User Mez - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:29:56Zhttp://stackoverflow.com/feeds/user/20010http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805802/php-convert-unicode-codepoint-to-utf-8/1805845#18058450Answer by Mez for PHP: Convert unicode codepoint to UTF-8Mez2009-11-26T21:54:41Z2009-11-26T21:54:41Z<pre><code>$utf8string = html_entity_decode(preg_replace("/U\+([0-9A-F]{4})/", "&#\\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#18039500Answer by Mez for Image upload - Latin chars problemMez2009-11-26T14:22:53Z2009-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#18038570Answer by Mez for can I do a regex search/replace in vs.net?Mez2009-11-26T14:07:16Z2009-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#18038211Answer by Mez for modify sql file on using command line on unixMez2009-11-26T13:59:38Z2009-11-26T13:59:38Z<pre><code>sed -e 's/xx_\([a-z]\)/\u\1/' < old.sql > new.sql
</code></pre>
http://stackoverflow.com/questions/1781307/website-hacking-why-it-is-always-possible-to-do/1796478#17964782Answer by Mez for Website hacking - Why it is always possible to do?Mez2009-11-25T11:55:39Z2009-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#17963750Answer by Mez for Regex Problem (newbie)Mez2009-11-25T11:32:38Z2009-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#17891114Answer by Mez for simple xml objectMez2009-11-24T10:10:42Z2009-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->profile->preferredUsername; // (garfx)
$_SESSION[email] = (string)$xml->profile->verifiedEmail;
$_SESSION[givenName] = (string)$xml->profile->name->givenName;
$_SESSION[lastName] = (string)$xml->profile->name->familyName;
</code></pre>
http://stackoverflow.com/questions/1788871/curl-error-when-using-curloptfollowlocation/1788891#17888911Answer by Mez for cURL Error when using CURLOPT_FOLLOWLOCATIONMez2009-11-24T09:21:57Z2009-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#17888571Answer by Mez for How to create Menu in linux mintMez2009-11-24T09:13:02Z2009-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#17823710Answer by Mez for PHP GET question - calling from a POST callMez2009-11-23T10:51:41Z2009-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><script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-XXXXX-1");
pageTracker._setDomainName("example.com");
pageTracker._trackPageview("/checkout/login/");
} catch(err) {}
</script>
</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#17542330Answer by Mez for Controller folders and the new Autoloader in Zend FrameworkMez2009-11-18T07:36:35Z2009-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/<module>/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-headers2PHPUnit - Unit Testing with items that need to send headersMez2008-10-10T06:01:46Z2009-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#16974370Answer by Mez for Cannot import django.coreMez2009-11-08T18:28:22Z2009-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#16803600Answer by Mez for GTK+ Startup Notification IconMez2009-11-05T12:48:37Z2009-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#16692021Answer by Mez for Edit Django User admin templateMez2009-11-03T18:19:59Z2009-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-1Answer by Mez for curl not storing cookiesMez2009-11-03T18:08:06Z2009-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#16227882Answer by Mez for Bug in a PHP regexMez2009-10-26T02:04:34Z2009-10-30T09:21:02Z<pre><code>echo preg_match('/(?<=^|[^0-9])([0-9)+)(?=[^0-9]).*(?<=[^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#16358592Answer by Mez for django model objects to a python listMez2009-10-28T08:34:21Z2009-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)
>>> from mysite_org.videos.models import Video
>>> url_list = [v.url for v in Video.objects.all()]
>>> 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#16359061Answer by Mez for PHP editors for UbuntuMez2009-10-28T08:45:14Z2009-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#16329371Answer by Mez for Redirecting all uri's to script possibly with htaccessMez2009-10-27T18:56:05Z2009-10-27T18:56:05Z<p>.htaccess;-</p>
<pre><code><IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /htdocs/nexus.php [L]
</IfModule>
</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#15943111Answer by Mez for Design of an Alternative (Fluent?) Interface for Regular ExpressionsMez2009-10-20T12:37:54Z2009-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])*(?:(?:(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t]"
+ ")+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:"
+ "\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:("
+ "?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ "
+ "\\t]))*\"(?:(?:\\r\\n)?[ \\t])*))*@(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\0"
+ "31]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\"
+ "](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+"
+ "(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:"
+ "(?:\\r\\n)?[ \\t])*))*|(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z"
+ "|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)"
+ "?[ \\t])*)*\\<(?:(?:\\r\\n)?[ \\t])*(?:@(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\"
+ "r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?["
+ " \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)"
+ "?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t]"
+ ")*))*(?:,@(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?["
+ " \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*"
+ ")(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t]"
+ ")+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*)"
+ "*:(?:(?:\\r\\n)?[ \\t])*)?(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+"
+ "|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r"
+ "\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:"
+ "\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t"
+ "]))*\"(?:(?:\\r\\n)?[ \\t])*))*@(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031"
+ "]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\]("
+ "?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?"
+ ":(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?"
+ ":\\r\\n)?[ \\t])*))*\\>(?:(?:\\r\\n)?[ \\t])*)|(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?"
+ ":(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?"
+ "[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)*:(?:(?:\\r\\n)?[ \\t])*(?:(?:(?:[^()<>@,;:\\\".\\[\\] "
+ "\\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|"
+ "\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>"
+ "@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\""
+ "(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*))*@(?:(?:\\r\\n)?[ \\t]"
+ ")*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\\"
+ "\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?"
+ ":[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\["
+ "\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*|(?:[^()<>@,;:\\\".\\[\\] \\000-"
+ "\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|("
+ "?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)*\\<(?:(?:\\r\\n)?[ \\t])*(?:@(?:[^()<>@,;"
+ ":\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[(["
+ "^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\""
+ ".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\"
+ "]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*(?:,@(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\"
+ "[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\"
+ "r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] "
+ "\\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]"
+ "|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*)*:(?:(?:\\r\\n)?[ \\t])*)?(?:[^()<>@,;:\\\".\\[\\] \\0"
+ "00-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\"
+ ".|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,"
+ ";:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\"(?"
+ ":[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*))*@(?:(?:\\r\\n)?[ \\t])*"
+ "(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\"."
+ "\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t])*(?:["
+ "^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]"
+ "]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*\\>(?:(?:\\r\\n)?[ \\t])*)(?:,\\s*("
+ "?:(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\\"
+ "\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:("
+ "?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=["
+ "\\[\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t"
+ "])*))*@(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t"
+ "])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?"
+ ":\\.(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|"
+ "\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*|(?:"
+ "[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\"
+ "]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)*\\<(?:(?:\\r\\n)"
+ "?[ \\t])*(?:@(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\""
+ "()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)"
+ "?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>"
+ "@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*(?:,@(?:(?:\\r\\n)?["
+ " \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,"
+ ";:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:\\r\\n)?[ \\t]"
+ ")*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\\"
+ "\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*)*:(?:(?:\\r\\n)?[ \\t])*)?"
+ "(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\[\"()<>@,;:\\\"."
+ "\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])*)(?:\\.(?:(?:"
+ "\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z|(?=[\\["
+ "\"()<>@,;:\\\".\\[\\]]))|\"(?:[^\\\"\\r\\\\]|\\\\.|(?:(?:\\r\\n)?[ \\t]))*\"(?:(?:\\r\\n)?[ \\t])"
+ "*))*@(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])"
+ "+|\\Z|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*)(?:\\"
+ ".(?:(?:\\r\\n)?[ \\t])*(?:[^()<>@,;:\\\".\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t])+|\\Z"
+ "|(?=[\\[\"()<>@,;:\\\".\\[\\]]))|\\[([^\\[\\]\\r\\\\]|\\\\.)*\\](?:(?:\\r\\n)?[ \\t])*))*\\>(?:("
+ "?:\\r\\n)?[ \\t])*))*)?;\\s*)";
</code></pre>
<p>matches RFC compliant email addresses :D</p>
http://stackoverflow.com/questions/1593611/php-function-confusion/1593671#15936719Answer by Mez for PHP function confusionMez2009-10-20T10:17:34Z2009-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 & operator</p>
<pre><code>function changeFruit(&$fruit) {
changeAgain($fruit);
}
function changeAgain(&$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#15934700Answer by Mez for PHP Comand line script to create user passwdMez2009-10-20T09:32:13Z2009-10-20T09:32:13Z<p>Can't guarantee it'll work, but on first thoughts, my solution would be:-</p>
<pre><code><?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#15934250Answer by Mez for mysql & php - query for record with all or fewer values, but not moreMez2009-10-20T09:24:35Z2009-10-20T09:24:35Z<pre><code><?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#15877131Answer by Mez for Sanitize $_GET parameters to avoid XSS and other attacksMez2009-10-19T09:24:43Z2009-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#15876791Answer by Mez for .htaccess rules with a subdomain and two domainsMez2009-10-19T09:14:16Z2009-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#15876020Answer by Mez for Help with regular expressions (php)Mez2009-10-19T08:51:45Z2009-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#15862841Answer by Mez for 'TemplateDoesNotExist' error with creating Sitemap for Django appMez2009-10-18T23:03:54Z2009-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-commit0How do I get Bzr to run an arbitrary command on commitMez2009-10-18T22:52:43Z2009-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#15724880Answer by Mez for Deleting portion of text string in PHPMez2009-10-15T13:45:44Z2009-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#1816583Comment by Mez on Getting Unique Foreign Keys in Django?Mez2009-11-29T20:00:46Z2009-11-29T20:00:46ZThat was what I was about to put in.http://stackoverflow.com/questions/1805802/php-convert-unicode-codepoint-to-utf-8/1805845#1805845Comment by Mez on PHP: Convert unicode codepoint to UTF-8Mez2009-11-26T22:12:53Z2009-11-26T22:12:53ZNot 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#1803857Comment by Mez on can I do a regex search/replace in vs.net?Mez2009-11-26T16:39:54Z2009-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#1803821Comment by Mez on modify sql file on using command line on unixMez2009-11-26T16:38:57Z2009-11-26T16:38:57ZWell, that depends on whether you ACTUALLY meant xx_http://stackoverflow.com/questions/1803921/image-upload-latin-chars-problemComment by Mez on Image upload - Latin chars problemMez2009-11-26T14:21:14Z2009-11-26T14:21:14ZWhat version of PHP are you using?http://stackoverflow.com/questions/1796364/regex-problem-newbie/1796375#1796375Comment by Mez on Regex Problem (newbie)Mez2009-11-25T11:48:57Z2009-11-25T11:48:57Zgood point - editing
http://stackoverflow.com/questions/1789128/tcp-ip-guaranteed-delivery-questionComment by Mez on TCP IP Guaranteed delivery questionMez2009-11-24T10:21:54Z2009-11-24T10:21:54Zbelongs on serverfault really.http://stackoverflow.com/questions/1788593/php-curl-can-i-check-if-my-user-agent-is-working/1788844#1788844Comment by Mez on PHP cURl: Can I check if my user agent is working?Mez2009-11-24T09:16:54Z2009-11-24T09:16:54ZHowever, 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-localhostComment by Mez on Google Analytics Tracking Code and Document.write causing requests to localhost?Mez2009-11-23T10:54:09Z2009-11-23T10:54:09ZWhat browser are you using? Have you tried this in other browsers?http://stackoverflow.com/questions/1669104/edit-django-user-admin-template/1669169#1669169Comment by Mez on Edit Django User admin templateMez2009-11-03T18:17:41Z2009-11-03T18:17:41Zyou 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-templateComment by Mez on Edit Django User admin templateMez2009-11-03T18:07:29Z2009-11-03T18:07:29ZWhat do you mean "doesnt fit in"? Doesnt display?http://stackoverflow.com/questions/1662224/why-doesnt-this-numberformat-workComment by Mez on why doesn't this number_format work?Mez2009-11-02T16:21:03Z2009-11-02T16:21:03ZCan you provide sample data?http://stackoverflow.com/questions/834690/how-do-i-do-regex-replacement-with-numbered-groupsComment by Mez on How do I do regex replacement with numbered groups?Mez2009-10-30T19:49:51Z2009-10-30T19:49:51Zwhat language is this?http://stackoverflow.com/questions/1622750/bug-in-a-php-regex/1622788#1622788Comment by Mez on Bug in a PHP regexMez2009-10-30T09:20:53Z2009-10-30T09:20:53ZOh, wait, I see... http://stackoverflow.com/questions/1622750/bug-in-a-php-regex/1622788#1622788Comment by Mez on Bug in a PHP regexMez2009-10-29T10:02:39Z2009-10-29T10:02:39ZAre the items always space seperated?