User troelskn - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T11:41:50Zhttp://stackoverflow.com/feeds/user/18180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces/1821612#18216121Answer by troelskn for Is there a well-established naming convention for PHP namespaces?troelskn2009-11-30T18:42:38Z2009-11-30T18:42:38Z<p>I don't think you can say there is anything well established at this point, but there is an RFC discussing it for PEAR2: <a href="http://wiki.php.net/pear/rfc/pear2%5Fnaming%5Fstandards" rel="nofollow">http://wiki.php.net/pear/rfc/pear2%5Fnaming%5Fstandards</a></p>
<p>My take is that namespaces are a form of variables, and therefore should follow the same convention as they do. I genereally prefer <code>lowercase_underscore</code> for free variables (As opposed to object members), so the most natural for my taste would be <code>namespace\ClassName</code>. This also matches the most prevalent conventions from other languages. On the other hand, the same argument could be made for pre-5.3 pseudo-namespaces, but here the de-facto standard seems to be using CamelCase.</p>
http://stackoverflow.com/questions/1816051/wildcard-replace-in-php/1816307#18163076Answer by troelskn for Wildcard replace in PHPtroelskn2009-11-29T18:29:01Z2009-11-30T09:39:43Z<p>You say that you are not going to parse xml and then goes on to show an xml example. That's a bit confusing.</p>
<p>Now, the reason why you can't use regular expressions to parse xml, is that they aren't contextual. Therefore there are a whole class of problems that regular expressions can't be used for. This includes nested tags (Whether they are xml or not), so keep that in mind.</p>
<p>That out of the way, you should be using <code>preg</code> - not <code>ereg</code>. <code>ereg</code> is a lesser used, slower and now deprecated type of regular expressions. Just forget about it.</p>
<p>In pcre (Perl Compatible Regular Expressions), which is the language that preg uses, a <code>.</code> (dot) is a wildcard, that matches any single character (Except newline). You can put a quantifier after a match. A quantifier can be an explicit range of numbers, such as <code>{1,3}</code> (meaning at least one, but up to 3) or you can use one of the short hand symbols, such as <code>+</code> (Short for <code>{1,}</code>, meaning at least one) or <code>*</code> (Meaning any number, including zero). With this knowledge, you can match anything with <code>.*</code>.</p>
<p>By default, expressions will match the largest possible pattern (Known as being greedy). You can change this with the <code>?</code> modifier. Thus <code>.*?</code> will match anything, but take the shortest possible pattern. This can then be used to match any delimited value like follows:</p>
<pre><code>~<foo>.*?</foo>~
</code></pre>
<p>Note that I'm using <code>~</code> as the delimiter here to avoid having to escape <code>/</code> in the expression. The standard is to use <code>/</code> as delimiter, in which case the expression would have looked like this:</p>
<pre><code>/<foo>.*?<\/foo>/
</code></pre>
<p>In general, the above is bad practise, since it's much better to match a negated character class than a dot, but to keep things simple for you, just ignore this until you get the basics under your skin. It'll work in most cases. In particular, since the <code>.</code> doesn't match newlines, this won't work if the content contains a newline character. If you need this you can do one of two things: Either you add a <a href="http://www.php.net/manual/en/reference.pcre.pattern.modifiers.php" rel="nofollow">modifier</a> to the expression, or, you replace the <code>.</code> with a character class, that includes newlines. For example <code>[\s\S]</code> (Meaning a whitespace character <em>or</em> a non-whitespace character, which is the same as anything). This is how the expression would look then:</p>
<pre><code>~<foo>.*?</foo>~s
</code></pre>
<p>Or:</p>
<pre><code>~<foo>[\s\S]*?</foo>~
</code></pre>
<p>To put all this to work, let's pass it to the <code>preg_replace</code> function:</p>
<pre><code>echo preg_replace('~<foo>.*?</foo>~s', '<foo>Lorem Ipsum</foo>', $input);
</code></pre>
<p>If your tag-names are variable, you can build the expression up like you would with an SQL query. Just like SQL, you need to escape certain characters. Use <code>preg_quote</code> for that:</p>
<pre><code>function swapText($tagname, $replacement_text, $input) {
$tagname_escaped = preg_quote($tagname, '~');
return preg_replace(
'~<' . $tagname_escaped . '>.*?</' . $tagname_escaped . '>~s',
'<' . $tagname . '>' . $replacement_text . '</' . $tagname . '>',
$input);
}
</code></pre>
http://stackoverflow.com/questions/1811931/how-to-manage-and-queue-background-jobs/1812233#18122332Answer by troelskn for how to manage and queue background jobs troelskn2009-11-28T10:54:34Z2009-11-28T10:54:34Z<p>The basics is to create a queue that you put the job in and then have a worker running as a cronjob or daemon. The worker takes jobs off the queue, processes it and puts the result back with a flag that says "done". The frontend will then periodically poll the queue to see if its job has finished. You can use a database for the queue - pick one that supports locking.</p>
http://stackoverflow.com/questions/1809976/how-to-get-the-number-of-results-found-for-a-keyword-in-google/1810023#18100231Answer by troelskn for How to get the number of results found for a keyword in googletroelskn2009-11-27T18:07:26Z2009-11-27T18:07:26Z<p>You can screen scrape it. Something like:</p>
<pre><code>$keywords = "blue metal kettle";
$html = file_get_contents("http://www.google.com/?q=" . rawurlencode($keywords));
preg_match('/Results 1 - \d+ of about ([0-9,]+) for/', $html, $reg);
var_dump($reg[1]);
</code></pre>
<p>If you use this in an application, you would probably be violating Google's terms of use.</p>
http://stackoverflow.com/questions/1809567/php-simpletest-handling-exceptions/1809847#18098470Answer by troelskn for PHP SimpleTest - Handling Exceptionstroelskn2009-11-27T17:22:23Z2009-11-27T17:22:23Z<pre><code>function testSaveMethodThrows() {
$foo = new Foo();
try {
$foo->save();
$this->fail("Expected exception");
} catch (EntityException $e) {
$this->pass("Caught exception");
}
}
</code></pre>
<p>Or use <a href="http://www.simpletest.org/api/SimpleTest/UnitTester/UnitTestCase.html#expectException" rel="nofollow"><code>expectException</code></a>:</p>
http://stackoverflow.com/questions/1804423/whats-the-difference-between-var-x-and-var-x-in-jquery/1804458#18044581Answer by troelskn for What's the difference between ‘var $x’ and ‘var x’ in jQuery?troelskn2009-11-26T15:51:03Z2009-11-26T15:51:03Z<p>The dollar prefix is often used in Javascript for global variables. It's merely a convention - Like underscore is often used to denote a private member.</p>
http://stackoverflow.com/questions/1697764/calling-mysqlrealescapestring-using-the-plt-scheme-foreign-function-interface/1802479#18024790Answer by troelskn for Calling mysql_real_escape_string using the PLT-Scheme Foreign Function Interface troelskn2009-11-26T09:10:48Z2009-11-26T09:10:48Z<p>You may find one of these helpful:</p>
<ul>
<li><a href="http://knauth.org/plt/mysql/mysqlclient/" rel="nofollow">http://knauth.org/plt/mysql/mysqlclient/</a></li>
<li><a href="http://github.com/troelskn/mr-mysql" rel="nofollow">http://github.com/troelskn/mr-mysql</a></li>
</ul>
http://stackoverflow.com/questions/1791843/php-session-slowdown/1792064#17920644Answer by troelskn for PHP session slowdowntroelskn2009-11-24T18:42:48Z2009-11-24T18:42:48Z<p>You should meassure your sites performance with Xdebug or similar, to verify that the slowdown is indeed in session handling.</p>
http://stackoverflow.com/questions/1791082/utf-8-php-and-xml-mysql/1791766#17917660Answer by troelskn for UTF-8, PHP and XML Mysqltroelskn2009-11-24T17:50:22Z2009-11-24T17:50:22Z<p><code>latin1_swedish_ci</code> is a collation, not a charset. Since collations are supposed to match their charset, it suggests that the table is using latin1, but it's not a guarantee.</p>
<p>Strictly speaking, the charset of tables is irrelevant here, since MySql can convert input/output. That's what the connection charset (<code>mysql_set_charset</code>) is for. However, for that to work properly, the data needs to be encoded properly in the database. I would begin by checking that strings are correct in the database. Simplest thing is to log in on the command line and select a row which has non-ascii characters in it. Does it look OK?</p>
<pre><code>$mystring = "Otivägen" // this is actually obtained from database;
</code></pre>
<p>Watch out. The encoding of the data in <code>$mystring</code> will now depend on the encoding of the php file. That may or may not be the same as the data in the database.</p>
http://stackoverflow.com/questions/1786436/php-pdo-prepared-statement-mysql-like-query/1786656#17866560Answer by troelskn for PHP PDO prepared statement -- mysql LIKE querytroelskn2009-11-23T22:58:14Z2009-11-23T23:03:23Z<pre><code>$ret = $prep->execute(array(':searchTerm' => '"%'.$searchTerm.'%"'));
</code></pre>
<p>This is wrong. You don't need the double quotes.</p>
<pre><code>WHERE hs.hs_text LIKE ":searchTerm"
$ret = $prep->execute(array(':searchTerm' => '%'.$searchTerm.'%'));
</code></pre>
<p>This is also wrong.
Try with:</p>
<pre><code>$prep = $dbh->prepare($sql);
$ret = $prep->execute(array(':searchTerm' => '%'.$searchTerm.'%'));
</code></pre>
<p>Explanation: Prepared statements don't simply do a string-replace. They transport the data completely separate from the query. Quotes are only needed when embedding values into a query.</p>
http://stackoverflow.com/questions/1785726/security-in-php/1785966#17859660Answer by troelskn for Security in PHPtroelskn2009-11-23T21:06:51Z2009-11-23T21:06:51Z<p>Depends on the level of security you require. Basic Http Auth is simple to set up. See <a href="http://php.net/manual/en/features.http-auth.php" rel="nofollow">the manual</a>.</p>
http://stackoverflow.com/questions/1783862/replace-all-characters-which-are-not-inside-code-tags/1783878#17838783Answer by troelskn for Replace all "\" characters which are *not* inside "<code>" tagstroelskn2009-11-23T15:31:56Z2009-11-23T15:31:56Z<blockquote>
<p>I reckon I could solve this using negative LookBehinds and/or LookAheads.</p>
</blockquote>
<p>You reckon wrong. <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">Regular expressions are not a replacement for a parser</a>.</p>
<p>I would suggest that you pipe the html through htmltidy, then read it with a dom-parser and then transform the dom to your target output format. Is there anything preventing your from taking this route?</p>
http://stackoverflow.com/questions/1772640/parsing-this-xml-feed-using-php/1772723#17727231Answer by troelskn for Parsing this XML feed using PHPtroelskn2009-11-20T19:25:19Z2009-11-20T19:25:19Z<pre><code>$doc = new DomDocument();
$doc->load('http://www.supashare.net/test.xml');
$q = new DomXPath($doc);
echo $q->query('//REDIRECT')->item(0)->nodeValue;
</code></pre>
http://stackoverflow.com/questions/1769746/php-complete-object-graph-not-stored-in-session/1770184#17701841Answer by troelskn for PHP Complete Object Graph not stored in Sessiontroelskn2009-11-20T12:32:19Z2009-11-20T12:32:19Z<p>Complex object graphs are serialized fine. Even cyclic references can be serialized. You can't serialize resources though, and certain built-in object types. Generally speaking, serialization is a very expensive operation. You should not rely on it as a shared memory strategy.</p>
http://stackoverflow.com/questions/1757345/php-utf8-problem-with-german-characters/1757623#17576230Answer by troelskn for PHP - UTF8 problem with German characters.troelskn2009-11-18T17:18:36Z2009-11-18T17:18:36Z<blockquote>
<p>The page encoding is UTF8, and I've added:</p>
</blockquote>
<p>Probably not. Make sure that the php file is actually saved with utf-8 encoding.</p>
http://stackoverflow.com/questions/1754793/prevent-file-differences-between-live-and-staging-websites-and-system-scripts-ph/1754887#17548871Answer by troelskn for Prevent file differences between live and staging websites AND system scripts (PHP)troelskn2009-11-18T10:04:00Z2009-11-18T13:20:33Z<p>You can do as Jurassic suggested, or you can set an environment variable and read it in through <code>$_ENV</code>.</p>
http://stackoverflow.com/questions/1745199/php-http-handling/1745560#17455600Answer by troelskn for PHP http handlingtroelskn2009-11-16T23:28:48Z2009-11-16T23:28:48Z<p>No, but you can send a <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow">http 204 (No Content)</a>.</p>
http://stackoverflow.com/questions/1744473/using-utf-8-charset-with-php-are-mb-functions-required/1744715#17447151Answer by troelskn for Using UTF-8 charset with PHP - are mb functions required?troelskn2009-11-16T20:39:22Z2009-11-16T20:39:22Z<p>There are a number of functions that expect strings to be single byte (And some even presume that it is iso-8859-1). In these cases, you need to be aware of what you're doing and possibly use replacement functions. There is a fairly comprehensive list at: <a href="http://www.phpwact.org/php/i18n/utf-8" rel="nofollow">http://www.phpwact.org/php/i18n/utf-8</a></p>
http://stackoverflow.com/questions/1743623/how-to-decode-unicode-characters-in-php/1743899#17438991Answer by troelskn for how to decode unicode characters in phptroelskn2009-11-16T18:13:58Z2009-11-16T18:13:58Z<p>Those are not "unicode characters" - Those are artefacts of messed-up character encoding. In this case, the most likely explanation is that you are interpreting <code>utf-8</code> data as <code>windows-1252</code>. This may happen if you take a <code>utf-8</code> encoded string and display it in a shell on windows. Or if you display it on a web page, sending a <code>Content-Type</code> header with <code>charset=windows-1252</code>. Just educated guesses of course, there are numerous ways this could happen.</p>
<p>The solution to your problem is to treat the data as <code>utf-8</code>.</p>
http://stackoverflow.com/questions/1743509/web-based-project-management-and-time-keeping-software/1743842#17438423Answer by troelskn for web-based project management and time keeping software?troelskn2009-11-16T18:03:59Z2009-11-16T18:03:59Z<blockquote>
<p>.. or hooks into source control, but we still don't run any in our office ..</p>
</blockquote>
<p>Argh!</p>
<p>Regarding your question: Keep in mind that there are a lot of tasks that overlap: Project management, issue tracking, time logging, customer relationship management etc. There are tools that solve all of these problems at once and there are tools that focus on some task. You need to cover all the relevant bases (Which is individual to your business), but you don't want tools to do to much or to get in conflict with each other.</p>
<p>Also keep in mind that process is more important than tools. Don't try to fix a broken process by throwing tools at it - Identify your needs first. I would recommend starting with a mostly manual approach (Sounds like this is where you are at currently) and then carefully look for tools (or build them your self) that supports your process. Don't get tempted by the shiny stuff.</p>
http://stackoverflow.com/questions/1734074/nusoap-or-zend-soap/1736164#17361640Answer by troelskn for nuSoap or Zend Soap?troelskn2009-11-15T00:42:41Z2009-11-15T00:42:41Z<p><a href="http://www.php.net/manual/en/class.soapclient.php" rel="nofollow">http://www.php.net/manual/en/class.soapclient.php</a></p>
http://stackoverflow.com/questions/1735492/is-there-garbage-collection-in-php/1735883#17358830Answer by troelskn for Is there garbage collection in PHP?troelskn2009-11-14T22:49:08Z2009-11-14T22:49:08Z<p>PHP has a combination of garbage collection and reference counting. The latter is the main mode of managing memory, with the garbage collector picking up the pieces that the ref counter misses (circular references). Before 5.3, php only had ref-counting, and even in 5.3 it's the still how memory will usually be freed.</p>
http://stackoverflow.com/questions/1722373/how-can-you-be-a-quality-programmer-in-a-programming-team/1723314#17233143Answer by troelskn for How can you be a quality programmer in a programming team?troelskn2009-11-12T16:02:19Z2009-11-12T16:02:19Z<p>Take responsibility for the big picture. Eg. don't focus on writing code - Focus on solving a need/problem, where code is a means to achieve that goal. Don't stop till the <em>problem</em> is solved, regardless of if you've done your part.</p>
http://stackoverflow.com/questions/1722909/function-escaping-quote-is-not-working-correctly-solved/1723196#17231961Answer by troelskn for Function escaping quote is not working correctly [Solved]troelskn2009-11-12T15:47:30Z2009-11-12T15:47:30Z<p>Your function makes little sense. If magic quotes is on (eg. input is escaped), you unescape it. If it's not on, you escape it. So you'll get different results, depending on if you have magic quote on or not.</p>
<p>In any case, relying on magic quotes is a really bad practice. You should:</p>
<ol>
<li><a href="http://www.php.net/manual/en/security.magicquotes.disabling.php" rel="nofollow">Disable magic quotes or reverse its effect globally</a>.</li>
<li><em>Either</em> <a href="http://www.php.net/manual/en/function.mysql-real-escape-string.php" rel="nofollow">escape strings</a> when you construct SQL queries <em>or</em> (better) <a href="http://www.php.net/manual/en/class.pdostatement.php" rel="nofollow">use prepared statements</a>.</li>
<li><em>Not</em> unescape/strip/whatever anything when you get it back from the database.</li>
</ol>
http://stackoverflow.com/questions/1716655/git-and-php-deployment-tools/1717353#17173530Answer by troelskn for Git and PHP Deployment Tools?troelskn2009-11-11T19:01:07Z2009-11-11T19:01:07Z<p>The low-tech version is to just write a few shell scripts (You can write them en php). This can work just fine, and has the benefit that you understand exactly what it's doing and can tweak it.</p>
<p>If you rather want something more grandiose, you can take a look at Phing. Otherwise, as already mentioned, Capistrano is used by some people, even if it's written in Ruby.</p>
http://stackoverflow.com/questions/1715496/how-to-tell-clicking-back-to-load-cache/1715648#17156481Answer by troelskn for how to tell clicking "back" to load cache?troelskn2009-11-11T14:47:26Z2009-11-11T14:47:26Z<p>You can conrol this behaviour with the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9" rel="nofollow">Cache-Control header</a>. This tutorial seems to be fairly comprehensive: <a href="http://www.mnot.net/cache%5Fdocs/" rel="nofollow">Caching Tutorial</a></p>
http://stackoverflow.com/questions/1714023/php-framework-support-for-legacy-php4/1714310#17143101Answer by troelskn for PHP Framework support for legacy PHP4?troelskn2009-11-11T10:26:37Z2009-11-11T10:35:53Z<p>Most of PEAR is still targeting php4, so you can use that as a "framework". I believe drupal and codeignitor are also still targeting php4 (Perhaps cakephp also?).</p>
<p>The biggest problem with objects and php4 is that objects are passed by-value, so you need to use references to get the usual semantics that most other languages have for objects (including php5). You have to be very careful to always assign a reference to objects. Otherwise it'll be implicitly cloned. This is tedious and very hard to debug if you mess up. Besides, it will make your code incompatible with php5. Eg.:</p>
<p>Creating an object:</p>
<pre><code>$foo =& new Foo();
</code></pre>
<p>Passing an object as argument to a function:</p>
<pre><code>class Bar {
function cuux(&$foo) {
}
}
$bar =& new Bar();
$bar->cuux($foo);
</code></pre>
<p>Since arguments are references, you can't pass a constant. So if you must pass NULL instead of an object, you have to assign NULL to a local variable first. Eg.:</p>
<pre><code>$bar =& new Bar();
$foo = null;
$bar->cuux($foo);
</code></pre>
<p>Returning objects from a function:</p>
<pre><code>class Bar {
function &doink() {
$foo =& new Foo();
return $foo;
}
}
$bar =& new Bar();
$foo =& $bar->doink();
</code></pre>
<p>Note that you MUST assign $foo to a variable, which makes it impossible to return the result of another function directly. Eg. this is illegal:</p>
<pre><code>class Bar {
function &doink() {
return $this->foo->doink();
}
}
</code></pre>
<p>It should be:</p>
<pre><code>class Bar {
function &doink() {
$tmp =& $this->foo->doink();
return $tmp;
}
}
</code></pre>
<p>Miss just one of those ampersands and you're toast. Also, make sure you have a very good understanding of how references behave - They are not exactly intuitive.</p>
http://stackoverflow.com/questions/1706018/php-combining-json-with-jsondecode/1706404#17064041Answer by troelskn for php - combining json with json_decode troelskn2009-11-10T08:33:30Z2009-11-10T08:33:30Z<pre><code>{
"lists" : {
...
} ,
"lists" : {
...
}
}
</code></pre>
<p>That's not valid/meaningful JSON. You have a hash with the same key (<em>lists</em>) in it twice. How would you address that?</p>
http://stackoverflow.com/questions/1695973/php5-security-get-post-parameters/1696127#16961273Answer by troelskn for php5 security - get/post parameterstroelskn2009-11-08T11:44:12Z2009-11-08T11:44:12Z<p>GET and POST variables are no more dangerous than any other variables. You should handle injection vulnerabilities at the usage point, not at the input point. See my answer here:</p>
<p><a href="http://stackoverflow.com/questions/129677/whats-the-best-method-for-sanitizing-user-input-with-php/130323#130323">What’s the best method for sanitizing user input with PHP?</a></p>
http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac3How can I get the behavior of GNU's readlink -f on a Mac?troelskn2009-06-28T20:26:33Z2009-11-05T06:05:40Z
<p>On Linux, the <code>readlink</code> utility accepts an option <code>-f</code> that follows additional links. This doesn't seem to work on Mac and possibly BSD based systems. What would the equivalent be?</p>
<p>Here's some debug information:</p>
<pre><code>$ which readlink; readlink -f
/usr/bin/readlink
readlink: illegal option -f
usage: readlink [-n] [file ...]
</code></pre>
http://stackoverflow.com/questions/1823067/project-conversion-from-iso-8859-1-to-utf-8Comment by troelskn on Project conversion from ISO 8859-1 to UTF-8troelskn2009-12-01T00:01:34Z2009-12-01T00:01:34Z@BalusC That is not entirely true. They both have a common subset, known as ascii, but half of iso-8859-1 is encoded different in utf-8.http://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces/1820419#1820419Comment by troelskn on Is there a well-established naming convention for PHP namespaces?troelskn2009-11-30T19:49:00Z2009-11-30T19:49:00ZUhm .. but the question was about namespaces.http://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces/1820419#1820419Comment by troelskn on Is there a well-established naming convention for PHP namespaces?troelskn2009-11-30T18:43:36Z2009-11-30T18:43:36ZDoesn't say anything about namespaces though.http://stackoverflow.com/questions/1816051/wildcard-replace-in-php/1816307#1816307Comment by troelskn on Wildcard replace in PHPtroelskn2009-11-30T09:40:45Z2009-11-30T09:40:45Z@bart Good point. I've updated the answer.http://stackoverflow.com/questions/1813890/javascript-pseudoclass-handling-in-phpComment by troelskn on Javascript Pseudoclass handling in phptroelskn2009-11-28T22:58:58Z2009-11-28T22:58:58ZSeriously Ragnagard, it makes no sense. Can you do as Magnar requested and post some example code?http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895310#895310Comment by troelskn on How can you tell if a person is a programmer?troelskn2009-11-27T13:52:50Z2009-11-27T13:52:50ZWorse yet - He assumes programmers are Java programmers.http://stackoverflow.com/questions/1772640/parsing-this-xml-feed-using-php/1772723#1772723Comment by troelskn on Parsing this XML feed using PHPtroelskn2009-11-20T20:05:37Z2009-11-20T20:05:37ZThey use the same underlying parse (libxml), so it's just syntax. Personally I like DOM better because it's a standard api. It's just a preference.http://stackoverflow.com/questions/1768337/php-understanding-code-via-function-or-file-tracing-without-xdebug/1768353#1768353Comment by troelskn on PHP: Understanding code via function or file tracing (without XDebug)troelskn2009-11-20T07:52:25Z2009-11-20T07:52:25ZAsk the previous developers for the source code.http://stackoverflow.com/questions/1754793/prevent-file-differences-between-live-and-staging-websites-and-system-scripts-ph/1754887#1754887Comment by troelskn on Prevent file differences between live and staging websites AND system scripts (PHP)troelskn2009-11-18T13:20:06Z2009-11-18T13:20:06Z@tom you can set the env before running the command, or you can run it as two different users?http://stackoverflow.com/questions/1754793/prevent-file-differences-between-live-and-staging-websites-and-system-scripts-ph/1754887#1754887Comment by troelskn on Prevent file differences between live and staging websites AND system scripts (PHP)troelskn2009-11-18T13:19:35Z2009-11-18T13:19:35Z@Johannes: You're right (Though <code>$_SERVER</code> would work too).http://stackoverflow.com/questions/1743623/how-to-decode-unicode-characters-in-php/1743635#1743635Comment by troelskn on how to decode unicode characters in phptroelskn2009-11-17T11:18:59Z2009-11-17T11:18:59Z@someone: Yes, that's because <code>utf8_decode</code> translates from utf8->iso-8859-1 and you are using windows-1252, not iso-8859-1. See my answer.http://stackoverflow.com/questions/1743509/web-based-project-management-and-time-keeping-software/1743842#1743842Comment by troelskn on web-based project management and time keeping software?troelskn2009-11-16T20:12:52Z2009-11-16T20:12:52ZThe problem is there are so many. And they are all slightly different. And they are all good, provided that they fit your reality. If you just pick one with a lot of features that you don't really need, you're creating bureaucracy - Not preventing it. You <i>need</i> to define your process before you pick the tool.http://stackoverflow.com/questions/1743623/how-to-decode-unicode-characters-in-php/1743635#1743635Comment by troelskn on how to decode unicode characters in phptroelskn2009-11-16T18:16:34Z2009-11-16T18:16:34ZSeems like he is using windows-1252, not iso-8859-1.http://stackoverflow.com/questions/1743623/how-to-decode-unicode-characters-in-php/1743635#1743635Comment by troelskn on how to decode unicode characters in phptroelskn2009-11-16T18:06:59Z2009-11-16T18:06:59ZNot really true, I'm afraid. <code>mb_detect_encoding</code> makes a guess, based on heuristics. It has all sorts of pitfalls. Specifically, it's useless for distinguishing between various <code>iso-8859-X</code> encodings.http://stackoverflow.com/questions/1738629/php-parse-error-drupal6-deploymentComment by troelskn on PHP Parse Error; Drupal6 Deploymenttroelskn2009-11-15T22:30:14Z2009-11-15T22:30:14ZWell then, that's your problem right there.