User Josh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T02:43:07Zhttp://stackoverflow.com/feeds/user/10902http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1032242/how-to-obtain-anchor-part-of-url-after-in-php/1032332#10323320Answer by Josh for How to obtain anchor part of URL after # in phpJosh2009-06-23T12:42:55Z2009-06-23T12:42:55Z<p><strong>Edit:</strong> Whoops, this won't work. The other posters are correct in saying that anything after the hash never reaches your server.</p>
<p>Something along these lines should do you:</p>
<pre><code>//Get complete URI, will contain data after the hash
$uri = $_SERVER['REQUEST_URI'];
//Just get the stuff after the hash
list(,$hash) = explode('#', $uri);
//Parse the value into array (will put value in $query)
parse_str($hash, $query);
var_dump($query);
</code></pre>
http://stackoverflow.com/questions/943262/which-php-framework-is-most-closely-cloned-to-activerecord-ror/943906#9439062Answer by Josh for Which PHP Framework is most closely cloned to ActiveRecord (RoR)Josh2009-06-03T09:53:39Z2009-06-03T09:53:39Z<p>If you are looking for a ORM package then <a href="http://propel.phpdb.org/trac/" rel="nofollow">Propel</a> is quite nice.</p>
<p>PHP has a little bit of trouble implementing the Active Record pattern. Because of a shortcoming with its handling of static methods and inheritance you can't (easily) implement a <code>Person::findByPrimary(1)</code> style static method. </p>
<p>Instead most PHP ORM's use a Table Data Gateway pattern and have separate classes for table opperations <code>PersonHelper->findByPrimary(1);</code> and row actions <code>new Person()->save()</code>.</p>
http://stackoverflow.com/questions/346703/php-debugbacktrace-in-production-code/347045#3470452Answer by Josh for PHP debug_backtrace in production code?Josh2008-12-07T00:39:21Z2008-12-07T00:39:21Z<p>You said in a comment</p>
<blockquote>
<p>The callee's task is to call the same method that called it on a different computer. It's to avoid having a different API function for every possible source, which reduced the amount of code in the system considerably. Is it still bad</p>
</blockquote>
<p>So you want to do the following:</p>
<ul>
<li>Function <strong>foo()</strong> calls </li>
<li>Function <strong>reflective()</strong>, which does a debug backtrace and requests</li>
<li><a href="http://example.com/REST/" rel="nofollow">http://example.com/REST/</a><strong>foo</strong></li>
</ul>
<p>Assuming, of course, that you use HTTP requests to fire off the remote call.</p>
<p>This is a bit of a strange set up. If you are creating the system from scratch then I'd suggest trying to work around it. If you're shoehorning it into a legacy system then I suppose I understand.</p>
<p>I'd suggest that you always be more explicit when you can. Your use of magic stack introspection might save you a little bit of coding, but to another developer your code will be completely baffling. If'dsuggest that you pass the class and function name to the function that was previously doing the reflection. Then there is no ambiguity about what is happening.</p>
<ul>
<li>Function <strong>foo()</strong> calls </li>
<li>Function <strong>reflective(__CLASS__, __FUNCTION__)</strong>, which requests</li>
<li><a href="http://example.com/REST/" rel="nofollow">http://example.com/REST/</a><strong>foo</strong></li>
</ul>
http://stackoverflow.com/questions/343764/php-debugging-where-to-set-the-breakpoints-how-to-authenticate/346200#3462000Answer by Josh for PHP debugging - where to set the breakpoints? how to authenticate?Josh2008-12-06T11:39:06Z2008-12-06T11:39:06Z<p>You want to change the current user's authentication details mid-way through a request? </p>
<p>I don't think this is possible. Zend Debugger is pretty much a read-only tool. Even if it were, you're assuming that whatever framework you're using can handle this. That would mean it would have to constantly try to synchronize it's internal state with changing input data.</p>
<p>I think instead of asking us how to solve this specific problem, you should be telling us why you need to change authentication. It sounds like you're launching a script in your debugger, which fails because you have no user session.</p>
<p>Zend Debugger has a browser toolbar (<a href="http://files.zend.com/help/Zend-Studio-Eclipse-Help/zend_debugger_toolbar.htm" rel="nofollow">http://files.zend.com/help/Zend-Studio-Eclipse-Help/zend_debugger_toolbar.htm</a>) that allows you to start a the debugger for your current page; the debugger will have all information that the browser would have sent: cookies, post data, etc. There's even a "debug next page" setting which helps you debug POST forms. It sounds like this is what you want.</p>
http://stackoverflow.com/questions/328522/what-is-a-good-gui-programming-language-for-an-experienced-php-developer/328544#3285442Answer by Josh for What is a good GUI programming language for an experienced PHP developer?Josh2008-11-30T06:44:42Z2008-11-30T06:44:42Z<p>Don't use PHP for GUI apps. That's not what it's intended for. Your idea of looking for another language is a good one.</p>
<ul>
<li>Python is very similar to PH, but is a lot more mature as a language. It has some decent GUI bindings. You can even get into stuff like pygame if you wan't more game-like UI.</li>
<li>Java is now open source. Java GUIs tend to be pretty ordinary though. I think things have picked up more recently. Charles, Eclipse are some Java apps with nice interfaces. </li>
<li>I'd skip VB, but C# is a good idea. You might find that it is useful when looking for work in the future. And of course, it's going to be the easiest when it comes to GUIs.</li>
<li>You could look at Flex. I'm not a big fan of Adobe's development environments though. </li>
</ul>
http://stackoverflow.com/questions/133701/is-symfony-a-good-framework-to-learn/327029#3270292Answer by Josh for Is Symfony a good framework to learn?Josh2008-11-29T01:50:47Z2008-11-29T01:50:47Z<p>I used Symfony for a (now defunct) project. It seemed really good, but in the end I wasn't too impressed with it. </p>
<p>It was very polished and had good documentation. There was nothing specifically wrong with it. It just seemed that everything was more difficult that it needed to be.</p>
<ul>
<li><p>The active record pattern was nice to start with, but eventually just started being a performance bottleneck. The pattern entices you to use multiple database lookups rather than a join.</p></li>
<li><p>Propel made any complex SQL queries quite difficult. Creole allowed you to "construct" quesries in an OO manner, but writing SQL by hand would have been much easier.</p></li>
<li><p>There is a strong preference for configuration over code (Symfony loves yaml). This means you will need to constantly be looking for which configuration file and which option you need to change. If you stick your configuration definition in the wrong level (e.g. under the wrong parent node) then you're not going to know why things aren't working.</p></li>
<li><p>The documentation seemed a bit tutorial focused. Often I just wanted a really solid reference. This was often related to looking for a configuration definition.</p></li>
<li><p>The structure of the framework is quite rigid. You have to implement things exactly the way the designers intended.</p></li>
<li><p>The framework ended up being quite slow. We were trying to handle a moderate amount of traffic (maybe 50,000 uniques a day) and the server we used just couldn't take it.</p></li>
</ul>
<p>Many of these issues would disappear after a few Symfony projects. If I were to look for a new framework then I'd probably look at Code Ignitor, it's meant to be far more simple and light weight. </p>
<p>After Symfony I ended up writing a very small framework to enforce a MVC pattern. I liked this much better as I could evolve the framework code to match my specific problems. This is not really the "right" thing to do, but it worked out for me. I've used it in about half a dozen projects and I've added and trimmed my code to keep it light weight.</p>
http://stackoverflow.com/questions/320009/can-you-code-a-class-function-outside-of-a-class-in-php/320026#3200263Answer by Josh for Can you code a class function outside of a class in PHP?Josh2008-11-26T08:06:32Z2008-11-26T08:06:32Z<p>No. You need to including all your function definitions inside the class block. If defining your functions in a separate structure makes you feel better you could use an interface.</p>
<pre><code>interface iBar
{
function foobar();
}
class cBar implements iBar
{
function foobar()
{
//Code
}
}
</code></pre>
<p>I'd suggest just getting used to coding in a new way. It's easy to code consistantly within a single language, but I think you are fighting a loosing battle if you want to do the same across languages.</p>
http://stackoverflow.com/questions/310505/in-rails-with-cookie-based-session-store-are-session-and-cookies-the-same-thing/310531#310531-1Answer by Josh for In Rails, with cookie-based session store, are session and cookies the same thingJosh2008-11-21T23:20:23Z2008-11-21T23:20:23Z<p>You shouldn't store anything you don't want the user to see or change in cookie. If you store a member ID then the user could easily change the value and pretend to be someone else. Cookies are also sent with every single request to your web server including image, JS and CSS requests. If you are storing lots of information in cookies, this could have an impact on speed.</p>
<p>Cookie-based sessions (in a general context, I can't say I know what Rails does) means your session variables are associated with a session ID which is randomly generated. This ID, and only the ID, is returned to the the user as a cookie. This allows you to associate the users request (because you have session ID cookies) with the user's sessions. This is safer because it would be very difficult for someone to guess the ID of another user's session.</p>
http://stackoverflow.com/questions/304804/drawing-on-top-of-an-image-in-javascript/304814#3048143Answer by Josh for Drawing on top of an image in JavascriptJosh2008-11-20T09:53:49Z2008-11-20T09:53:49Z<p>Even though you said you'd like to avoid it I'd suggest Flash. You could easily use Flash 6 or 7 and these have a > 90% adoption rate. I'd be surprised if you could get that level of support with JavaScript. Flash is truly write once run anywhere, which will cut down on your development time.</p>
http://stackoverflow.com/questions/297952/simulating-a-cookie-enabled-browser-in-php/298168#2981682Answer by Josh for Simulating a cookie-enabled browser in PHPJosh2008-11-18T08:43:41Z2008-11-18T08:43:41Z<p>For a server-side HTTP client you should use the <a href="http://au2.php.net/curl" rel="nofollow">cURL</a> module. It will allow you to persist cookies across multiple requests. It also does some other neat things like bundling requests (curl_multi) and transparently handling redirects.</p>
<p>When it comes to returning a session to your user, I don't think this is possible. You would need to be able to overwrite the cookies of other domains. This would cause massive security issues, so no browser would implement it.</p>
http://stackoverflow.com/questions/297960/hash-collision-what-are-the-chances/298151#2981510Answer by Josh for Hash Collision - what are the chances?Josh2008-11-18T08:35:34Z2008-11-18T08:35:34Z<p>The other comments have covered you on the probabilities, however if you look at this pragmatically then you can get a definite answer for yourself.</p>
<p>You said yourself that you are going to be hashing your sequential IDs. It would be easy to code up a test case. Iterate through ~100,000,000 ids and check for collisions. That would not take long to do. On the other hand you might run out of memory quarter of the way through.</p>
http://stackoverflow.com/questions/292926/robust-mature-html-parser-for-php/293326#2933263Answer by Josh for Robust, Mature HTML Parser for PHPJosh2008-11-16T01:12:19Z2008-11-16T01:12:19Z<p><a href="http://simplehtmldom.sourceforge.net/" rel="nofollow">PHP Simple DOM Parser</a> looks good. I haven't tried using it yet though.</p>
http://stackoverflow.com/questions/289315/background-of-empty-element-used-by-following-element-in-ie/293291#2932911Answer by Josh for Background of empty element used by following element in IEJosh2008-11-16T00:33:35Z2008-11-16T00:33:35Z<p>Add a doctype to the top of your HTML file.</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
</code></pre>
<p>That will force IE6 to switch form quirks to standards mode. This brings a lot of tother advantages, like a correct box model, so you should be doing it anyway.</p>
http://stackoverflow.com/questions/286426/javascript-closing-window-from-iframe/286916#2869160Answer by Josh for JavaScript: closing window from iframeJosh2008-11-13T13:37:34Z2008-11-13T13:37:34Z<p>It looks like <a href="http://blog.johnmckerrell.com/2006/10/22/resizing-iframes-across-domains/" rel="nofollow">this guy</a> got cross domain JavaScript working between iframes.</p>
http://stackoverflow.com/questions/283087/php-mysql-sql-parser-insert-and-update/286899#2868991Answer by Josh for PHP MySQL SQL parser (INSERT and UPDATE)Josh2008-11-13T13:27:50Z2008-11-13T13:27:50Z<p>Facebook released a open-source PHP version of their <a href="http://developers.facebook.com/opensource.php" rel="nofollow">FQL parser</a>. From what I was it was quite neat code. You could possibly hack that to work with regular SQL.</p>
http://stackoverflow.com/questions/286270/how-to-password-protect-streaming-videos-with-php/286887#2868872Answer by Josh for How to password protect streaming videos with phpJosh2008-11-13T13:20:51Z2008-11-13T13:20:51Z<p>Both nginx and lighttpd web servers have X-Send-File headers you can return from PHP. So you can do your checks in PHP and then conditionally server out the file.</p>
<pre><code>if (check_user_can_access()){
header('X-sendfile: /path/to/file');
} else {
header('HTTP/1.1 403 Fail!');
}
</code></pre>
<p>Lighttpd also has a neat module called <a href="http://redmine.lighttpd.net/wiki/lighttpd/Docs#mod_secure_download" rel="nofollow">mod_secure_download</a> that allows you to programatically generate a URL that will only be valid for a short time period.</p>
<p>Nginx, and possibly lighttpd, allow you to cap the download speed, so you're not sending out streaming data faster than it can be consumed.</p>
<p>Either way, you want to use your web server for serving files. Serving them through PHP is possible, but slow. </p>
http://stackoverflow.com/questions/280260/i18n-best-practices-for-internationalization-xliff-gettext-ini/280291#28029110Answer by Josh for i18n - best practices for internationalization - XLIFF, gettext, INI, ... ??Josh2008-11-11T07:58:21Z2008-11-11T07:58:21Z<p>POEdit isn't really hard to get a hang of. Just create a new .po file, then tell it to import strings from source files. The program scans your PHP files for any function calls matching <code>_("Text"), gettext("Text")</code>, etc. You can even specify your own functions to look for.</p>
<p>You then enter a translation in the appropriate box. When you save your .po file, a .mo file is automatically generated. That's just a binary version of the translations that gettext can easily parse. </p>
<p>In your PHP script make a call to <code>bindtextdomain()</code> telling it where your .mo file is located. Now any strings passed to <code>gettext</code> (or the underscore function) will be translated.</p>
<p>It makes it really easy to keep your translation files up to date. POEdit also has some neat features like allowing comments, showing changed and dropped strings and allowing fuzzy matches, which means you don't have to re-translate strings that have been slightly modified.</p>
http://stackoverflow.com/questions/275701/codeigniter-doesnt-like-functions-in-views/275729#2757290Answer by Josh for CodeIgniter doesn't like functions in views?Josh2008-11-09T08:02:35Z2008-11-09T08:02:35Z<p>I'm not familiar with CodeIgnitor, but it could be including your templates multiple times. Try wrapping your function in a check:</p>
<pre><code>if (!function_exists('myfunc'))
{
function myfunc() {}
}
</code></pre>
<p>CodeIgnitor is probably swallowing errors, so you could also try flushing buffers immediately before your function:</p>
<pre><code>while(ob_end_flush()){}
error_reporting(E_ALL);
ini_set('display_errors', 1);
</code></pre>
<p>In reality though, you should probably make your string formatting code a bit more general. Your template is not really a good place to start adding functions. You'll begin duplicating code, and it defeats the purpose of having templates at all. I'd suggest experimenting with CodeIgnitor's <a href="http://codeigniter.com/user_guide/general/helpers.html" rel="nofollow">Helpers</a> and <a href="http://codeigniter.com/user_guide/general/helpers.html" rel="nofollow">Plugins</a></p>
http://stackoverflow.com/questions/194879/which-map-api-would-best-support-fictionally-defined-maps/194957#1949573Answer by Josh for Which map api would best support fictionally defined maps?Josh2008-10-12T01:41:37Z2008-10-12T01:41:37Z<p>A List Apart has an <a href="http://www.alistapart.com/articles/takecontrolofyourmaps" rel="nofollow">article from the creators of EveryBlock.com</a>. They use a full open-source stack (client side library, tile cache, map generator) as an alternative to Google Maps. That sounds like it has exactly what you need.</p>
http://stackoverflow.com/questions/109480/caching-paginated-results-purging-on-update-how-to-solve/110167#1101672Answer by Josh for Caching paginated results, purging on update - how to solve?Josh2008-09-21T03:31:12Z2008-09-21T03:31:12Z<p>You might also want to have a look at the cost of storing the cache data, in terms of your effort and CPU cost, against how what the cache will buy you. </p>
<p>If you find that 80% of your forum views are looking at the first page of threads, then you could decide to cache that page only. That would mean both cache reads and writes are much simpler to implment.</p>
<p>Likewise with the list of a user's favourite threads. If this is something that each person visits rarely then cache might not improve performance too much.</p>
http://stackoverflow.com/questions/100038/facebook-rss-application/100598#1005980Answer by Josh for Facebook RSS applicationJosh2008-09-19T08:57:11Z2008-09-19T08:57:11Z<p>You have two options. </p>
<ol>
<li><p>Convert your user session (when the user accesses your app manually) to infinite session, then periodically update the profile information for a user. There is some information on how to do this (and what API calls you can make without sessions) <a href="http://wiki.developers.facebook.com/index.php/Authorizing_Applications#About_Session_Keys" rel="nofollow">here</a>.</p></li>
<li><p>Create a new "handle" (see <a href="http://wiki.developers.facebook.com/index.php/Fb:ref" rel="nofollow"><code>fb:ref</code></a>) for each unique feed and update that handle whenever the feed changes. Handles are key-values pairs that are associated with your app, that you can include inline through FBML. This allows you to do a single call to the API that will update all users subscribed to a given feed.</p></li>
</ol>
<p>The second option is probably the best in the long run.</p>
http://stackoverflow.com/questions/98275/mysql-triggers-replication-with-multiple-databases1MySQL triggers + replication with multiple databases.Josh2008-09-19T00:18:20Z2008-09-19T03:34:40Z
<p>I am running a couple of databases on MySQL 5.0.45 and am trying to get my legacy database to sync with a revised schema, so I can run both side by side. I am doing this by adding triggers to the new database but I am running into problems with replication. My set up is as follows.</p>
<p>Server "master"</p>
<ul>
<li>Database "legacydb", replicates to server "slave".</li>
<li>Database "newdb", has triggers which update "legacydb" and no replication.</li>
</ul>
<p>Server "slave"</p>
<ul>
<li>Database "legacydb"</li>
</ul>
<p>My updates to "newdb" run fine, and set off my triggers. They update "legacydb" on "master" server. However, the changes are not replicated down to the slaves. The MySQL docs say that for simplicity replication looks at the current database context (e.g. <code>"SELECT DATABASE();"</code> ) when deciding which queries to replicate rather than looking at the product of the query. My trigger is run from the context of database "newdb", so replication ignores the updates.</p>
<p>I have tried moving the update statement to a stored procedure in "legacydb". This works fine (i.e. data replicates to slave) when I connect to "master" and manually run <code>"USE newdb; CALL legacydb.do_update('Foobar', 1, 2, 3, 4);"</code>. However, when this procedure is called from a trigger it does not replicate.</p>
<p>So far my thinking on how to fix this has been one of the following.</p>
<ul>
<li><p>Force the trigger to set a new current database. This would be easiest, but I don't think this is possible. This is what I hoped to achieve with the stored procedure.</p></li>
<li><p>Replicate both databases, and have triggers in both master and slave. This would be possible, but a pain to set up.</p></li>
<li><p>Force the replication to pick up all changes to "legacydb", regardless of the current database context.</p></li>
<li><p>If replication runs at too high a level, it will never even see any updates run by my trigger, in which case no amount of hacking is going to achieve what I want.</p></li>
</ul>
<p>Any help on how to achieve this would be greatly appreciated.</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/69042#690420Answer by Josh for JavaScript to scroll long page to DIVJosh2008-09-16T02:58:08Z2008-09-16T02:58:08Z<p>If you don't want to add an extra extension the following code should work with jQuery.</p>
<pre><code>$('a[href=#target]').
click(function(){
var target = $('a[name=target]');
if (target.length)
{
var top = target.offset().top;
$('html,body').animate({scrollTop: top}, 1000);
return false;
}
});
</code></pre>
http://stackoverflow.com/questions/68851/where-am-i-supposed-to-see-firephp-output/69019#690193Answer by Josh for Where am I supposed to see FirePHP output?Josh2008-09-16T02:51:58Z2008-09-16T02:51:58Z<p>I believe FirePHP required you install a Firefox extension (in addition to Firebug) that watches for the HTTP headers and puts them in the console. </p>
<p>If that isn't the problem then I'd recommend grabbing a copy of <a href="http://www.charlesproxy.com/" rel="nofollow">Charles</a>. It will let you view the headers of the HTTP response. The FirePHP output should be visible there. If it's not then the problem is in your server set up.</p>
http://stackoverflow.com/questions/1057986/how-to-clear-previously-echoed-items-in-php/1058012#1058012Comment by Josh on How to clear previously echoed items in PHPJosh2009-06-29T16:36:27Z2009-06-29T16:36:27Z@monoxide At the risk of going completely off-topic, you can omit the last closing PHP tag at the end of a file which is a good way to eliminate that problem completely.http://stackoverflow.com/questions/981572/setting-the-max-length-in-a-td/981654#981654Comment by Josh on Setting the Max length in a <TD>Josh2009-06-12T14:29:39Z2009-06-12T14:29:39ZActually browser support is fine now that Firefox 3 supports this element.http://stackoverflow.com/questions/983564/in-php-how-can-i-get-the-outer-xml-from-a-domnode/983689#983689Comment by Josh on In PHP, how can I get the Outer XML from a DOMNode?Josh2009-06-12T14:27:43Z2009-06-12T14:27:43Zrojoca is saying that the DOMNode class doesn't have a method to extract the original XML. Instead you need to pass the node to a brand new DOM document to re-encode it as XML.http://stackoverflow.com/questions/285139/show-ghosted-example-text-in-a-field-and-then-clear-it-onblur/285173#285173Comment by Josh on Show 'ghosted' example text in a field, and then clear it onblurJosh2008-11-13T13:46:32Z2008-11-13T13:46:32ZThere are a few gotchas with this. If you submit this form without changing the values then "Google" will be sent as your text. This may not be what you want. Even if you filter the value server side, the client's browser will store the value and use it as the default value on future page views.http://stackoverflow.com/questions/286426/javascript-closing-window-from-iframe/286516#286516Comment by Josh on JavaScript: closing window from iframeJosh2008-11-13T13:42:03Z2008-11-13T13:42:03Zdocument.domain only allows you to "move up" from your current domain. E.g. from 'sub.domain.example.com' or 'sub.example.com' to "example.com". However you can't set it to '.com'. Additionally, you can only set the value once.http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61584#61584Comment by Josh on Hidden Features of JavaScript?Josh2008-09-22T11:36:05Z2008-09-22T11:36:05ZAgreed, this is a little misleading. "arguments.callee" is simply a reference to the function that was called. In your second example, a.Static === b.Static === Obj