User Noah Goodrich - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:13:58Z http://stackoverflow.com/feeds/user/20178 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1843276/any-php-mvc-framework-planning-to-use-5-3-features/1843317#1843317 5 Answer by Noah Goodrich for Any PHP MVC framework planning to use 5.3 features? Noah Goodrich 2009-12-03T22:10:13Z 2009-12-03T23:02:29Z <p>Zend Framework 2.0 will support only PHP 5.3 because one of the major points on their roadmap for 2.0 is converting everything in the framework to use namespacing.</p> <p><b>Edit:</b> The current version of Zend Framework is compatible with 5.3, but 2.0 will actually be built on top of many of the new features offered by 5.3 such as namespacing.</p> http://stackoverflow.com/questions/1827314/cannot-modify-header-information-headers-already-sent-why-its-happening/1827362#1827362 4 Answer by Noah Goodrich for Cannot modify header information - headers already sent, Why its happening Noah Goodrich 2009-12-01T16:33:54Z 2009-12-01T16:33:54Z <p>When you end your php script ( '?>' ) and start outputting html with your tag then the headers are sent. If you want to store content that should be output and then send the headers later with additional information, then you should look at the <a href="http://php.net/manual/en/book.outcontrol.php" rel="nofollow">Output Control</a> functions of PHP.</p> http://stackoverflow.com/questions/1825899/mysql-join-question/1825946#1825946 0 Answer by Noah Goodrich for MySQL join question Noah Goodrich 2009-12-01T12:38:05Z 2009-12-01T12:38:05Z <p>You should be able to simply use a LEFT JOIN to the ugc_meta table using a different alias in order to achieve your parent table join like so:</p> <pre><code>SELECT pm.username AS user, uc.content_id AS id, value AS filename, name, moderation_status AS status, uc.parent_content_id, parent.`value` FROM myweb.ugc_meta um LEFT JOIN myweb.ugc_content uc ON uc.content_id = um.item_id LEFT JOIN myweb.ugc_meta parent ON uc.parent_content_id = parent.item_id LEFT JOIN myweb.userbase_member pm ON uc.user_id = pm.id WHERE uc.content_type ='my.photo' AND uc.promoted = '1' AND moderation_status='passed' LIMIT 10 </code></pre> <p>I used a LEFT JOIN because presumably there may not always be a parent_content_id in the child table, if there is always a parent in this case then you could use an INNER JOIN which would increase your performance gains more.</p> http://stackoverflow.com/questions/1817378/unset-session-in-javascript/1817408#1817408 0 Answer by Noah Goodrich for unset session in Javascript Noah Goodrich 2009-11-30T01:06:47Z 2009-11-30T01:06:47Z <p>Session management is all specific to the server side environment. In order to manipulate the server-side session, you will need to issue a request to the server. If you need to do this asynchronously (via javascript) then you can always use an AJAX request that will allow for asynchronous communication between the client-side environment (the user's browser) and the server-side environment.</p> http://stackoverflow.com/questions/1816186/zend-framework-get-front-controller-from-bootstrap/1816216#1816216 1 Answer by Noah Goodrich for Zend Framework - get front controller from bootstrap ? Noah Goodrich 2009-11-29T17:59:30Z 2009-11-29T17:59:30Z <p>I believe that your problem is that where you are calling </p> <pre><code>$this-&gt;getResource('frontController')-&gt;getRouter() </code></pre> <p>the FrontController resource has not yet been initialized.</p> <p>I called the same method in this fashion (which won't work in Zend Framework 2.0 but works for now):</p> <pre><code>Zend_Controller_Front::getInstance()-&gt;getRouter(); </code></pre> <p>Alternatively you can make certain that your front controller is initialized like this:</p> <pre><code>$this-&gt;bootstrap('FrontController'); $front = $this-&gt;getResource('FrontController'); </code></pre> http://stackoverflow.com/questions/1809629/necessity-of-foreign-key-in-this-caseinnodb-mysql/1809694#1809694 1 Answer by Noah Goodrich for Necessity of foreign key in this case(innoDB/mysql) Noah Goodrich 2009-11-27T16:39:36Z 2009-11-27T20:48:32Z <p>Whether you establish a formal FOREIGN KEY rule on messages(user_id) or not, the simple fact is that this is a foreign key relationship. </p> <p>First, remember that a proper primary key on a table should be sufficient to uniquely identify each record in the table. Considering that each message will already have that with the <code>id</code> field, you don't need nor do you particularly want to wrap the <code>user_id</code> into the primary key of the messages table.</p> <p>Second, as Charles already stated declaring a FOREIGN KEY on messages(user_id) that REFERENCES users(id) will allow you to ensure the integrity of your data. Using a foreign key constraint you can specify what to do when a record in the users table is deleted that has corresponding records in the messages table. Your choices are ON DELETE CASCADE (delete all of the child records for this user record), ON DELETE RESTRICT (don't allow a user to be deleted that has records in the messages table), ON DELETE NO ACTION (ignore delete operations), ON DELETE SET NULL (preserves the child records but sets the user_id field to NULL). </p> <p>Each of these options is appropriate depending on the circumstances, but the most important thing here is that you can prevent unexpected null pointers from the child table to the parent table.</p> <p>Third, establishing the FOREIGN KEY relationship will provide performance gains as this will generate an INDEX on messages(user_id) that corresponds with the PRIMARY KEY on the users table. When performing any query that joins on these fields, you will see that the number of records that have to queried to return the child records is substantially reduced as compared to not having the FOREIGN KEY established.</p> <p>@Charles Bretana - The question you link to is specific to Microsoft SQL Server. The question here is regarding MySQL / InnoDB. </p> <p>I would recommend that you look at the documentation for <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb-foreign-key-constraints.html" rel="nofollow">InnoDB Foreign Key Constraints</a>. </p> <blockquote> <p>InnoDB requires indexes on foreign keys and referenced keys so that foreign key checks can be fast and not require a table scan. In the referencing table, there must be an index where the foreign key columns are listed as the first columns in the same order. Such an index is created on the referencing table automatically if it does not exist. (This is in contrast to some older versions, in which indexes had to be created explicitly or the creation of foreign key constraints would fail.) index_name, if given, is used as described previously.</p> </blockquote> http://stackoverflow.com/questions/1806701/when-is-best-to-use-exceptions-in-php/1806855#1806855 0 Answer by Noah Goodrich for When is best to use exceptions in PHP? Noah Goodrich 2009-11-27T05:04:50Z 2009-11-27T05:04:50Z <p>According to Joel Spolsky, <a href="http://www.joelonsoftware.com/items/2003/10/13.html" rel="nofollow">Exceptions shouldn't be used</a>.</p> <p>My general rule of thumb with regard to exception handling is to first try to maintain application flow for the end user which you could accomplish by just never throwing exceptions in PHP in the first place, but there are times when they are useful.</p> <p>I tend to look at a decision on whether to throw an exception versus returning a boolean false or some other handling method based on what the conditions are that could lead to the state that triggers the problem. </p> <p>Is this a normal, plausible value or state to be in when the particular code block is executed? If so, then you probably just want to return a boolean false or some other value indicating that the code block reached a point of failure.</p> <p>If you concerned that a non-normal value or state might exist, or if the value or state is the result of someone forgetting to properly initialize a variable in the code, then an exception would probably be appropriate because this will provide immediate feedback to you as a developer. A couple of examples here would be of a required property that has to be set in an object constructor but the value is not specified properly or if you have a scenario where a method should not be called on an object you might want to throw an exception if it gets called.</p> <p>In short, I tend to use the tool that fits best. If I'm dealing with something that is part of normal application execution then I usually return a value to indicate failure. If its a situation where something invalid is happening then I throw an exception so that I deal with the problem. </p> <p>I suppose you could say that I use exceptions only to catch those things that should truly halt application execution for an end user but I code with the idea in mind that through proper testing none of those lines of code should ever execute in the wild.</p> http://stackoverflow.com/questions/1800342/zend-framework-call-view-helper-from-a-zendviewhelper/1801747#1801747 0 Answer by Noah Goodrich for Zend Framework call view helper from a Zend_View_Helper Noah Goodrich 2009-11-26T05:46:53Z 2009-11-26T05:46:53Z <p>I see several problems with your provided code.</p> <ol> <li>You are attempting to call Zend_View_Helper_GeneralFunctions::generalFunctions() as a static method when it is declared as a class method (ie you have to instantiate an instance of the class to use it) by reason of your omission of the 'static' keyword.</li> <li>If you in fact want to use generalFunctions() as a static method and correct this then you will need to either make baseUrl a static property or you will have to instantiate an instance of the class and then return that instance.</li> <li>The idea of using your GeneralFunctions class as a container for static methods that are called directly is really a symptom of deeper problems and is rightly labeled a code smell. If you think that I'm lying take a look at the high priority items for the Zend Framework 2.0 (hint: it involves removing all static methods from the framework). Or you can always ask SO what they think of static methods :-). </li> </ol> <p>Looking at your given class name for the general functions class "Zend_View_Helper_GeneralFunctions" and given the current scenario where you are trying to use the GeneralFunctions helper inside another helper, I would surmise that you really need to do one of two things. </p> <ol> <li>You need to have every helper class subclass the GeneralFunctions class so that all of your helpers have these functions available. Basically, ask yourself if your helpers all start out life as GeneralFunction helpers with extended functionality beyond. This solution uses inheritance to solve your problem.</li> <li><p>Every view helper should contain an instance of the View object being acted upon. Therefore in theory you should be able to access any other view helper via the magic __call method (I think there is also an explicit method but I always use the magic method). It mike look like so in your scenario:</p> <p>public function mkCategoryCodeSelectGroup($codeTypeArr=array(), $codesArr=array()) { $html=''; $html.= $this->generalFunctions()->progressMeter(); return $html; }</p></li> </ol> <p>In this scenario the __call method would load the GeneralFunctions helper and would then would call the progressMeter() method from the GeneralFunctions helper.</p> <p>Now your GeneralFunctions helper class would probably look like this:</p> <pre><code>class Zend_View_Helper_GeneralFunctions { public function __construct() { $this-&gt;baseUrl = Zend_Controller_Front::getInstance()-&gt;getBaseUrl(); } public function progressMeter() { $html=''; $html.='&lt;span id="progressWrapper"&gt;'; $html.='&lt;span id="progressMeter"&gt;&lt;/span&gt;'; $html.='&lt;/span&gt;'; $html.=''; return $html; } } </code></pre> http://stackoverflow.com/questions/1787713/changing-return-type-when-overidding-a-function-in-the-subclass-in-php/1787743#1787743 2 Answer by Noah Goodrich for Changing return type when overidding a function in the subclass in PHP? Noah Goodrich 2009-11-24T04:17:33Z 2009-11-24T04:17:33Z <p>While there is nothing enforcing return types in PHP, it is a good idea to remain consistent with overridden methods because to do otherwise means that you will increase coupling and decrease encapsulation.</p> <p>Think of public methods and their return types in terms of outlets and appliances. Any appliance should be able to plug into any outlet and every outlet should output the same amount of energy to each appliance, unless of course the outlet has been specifically designed for a specific type of appliance. What would happen if someone decided that green outlets should output one amount of energy and red ones another. Suddenly you'd have to always be concerned with the specific class of outlet that your appliance is dealing with.</p> <p>Designing public methods and properties is exactly the same and overridden methods and properties should always behave consistently regardless of the context in which they are accessed.</p> http://stackoverflow.com/questions/1786243/what-should-i-learn/1786290#1786290 -1 Answer by Noah Goodrich for What should I learn? Noah Goodrich 2009-11-23T21:52:27Z 2009-11-23T21:52:27Z <p>For structured beginners courses see wwww.w3schools.com. This is where I initially learned JavaScript and AJAX. </p> <p>For really learning JavaScript, you can use <a href="https://developer.mozilla.org/en/Core%5FJavascript%5F1.5%5FReference" rel="nofollow">https://developer.mozilla.org/en/Core%5FJavascript%5F1.5%5FReference</a> which is a complete JavaScript 1.5 reference. Otherwise I would recommend <a href="http://oreilly.com/catalog/9780596000486" rel="nofollow">JavaScript: The Definitive Guide</a>.</p> <p>Lastly, with regard to AJAX, learn Jquery and then just use it. The AJAX wheel is one that most sane people do not want to reinvent.</p> <p>Also, in school I learned C# and MSSQL. I learned PHP and MySQL because that's what I needed for work and now love both. I'm trying to learn Python personally. I think its a great next step from PHP and will allow you to do both web and desktop development.</p> http://stackoverflow.com/questions/1784174/development-branch-and-trunk-are-inconsistent-and-i-cannot-get-them-in-sync/1784201#1784201 2 Answer by Noah Goodrich for Development branch and trunk are inconsistent and I cannot get them in sync Noah Goodrich 2009-11-23T16:17:43Z 2009-11-23T16:17:43Z <p>In order to successfully reintegrate a branch, you first have to merge all revisions from the trunk to the branch. This will put the branch in perfect sync with the trunk (in theory). Once this is done then you should be able to reintegrate the branch into the trunk. </p> <p>Also, I just had to reintegrate a branch myself and messed it up the first time. What I eventually did was check out a fresh copy of the branch from prior to the botched merger, then I ran the merge on the clean copy and updated and was finally able to make it go through. </p> <p>If when you try to reintegrate the branch you receive an error about missing revisions, these will be revisions that you need to specifically merge from the trunk to the branch and then try again.</p> http://stackoverflow.com/questions/1781453/zend-authentication-problem-with-subdomain/1781479#1781479 1 Answer by Noah Goodrich for Zend Authentication Problem with subdomain Noah Goodrich 2009-11-23T06:50:38Z 2009-11-23T06:50:38Z <p>Session variables are stored specific to each specific domain address. And so if a website is coded poorly and you login to <a href="http://mydomain.com" rel="nofollow">http://mydomain.com</a> and then later access the site as <a href="http://www.mydomain.com" rel="nofollow">http://www.mydomain.com</a>, you will encounter the same error.</p> <p>One possible solution to this is to setup a webservice that allows you to access the other domain and retrieve any stored session variables as well as authenticate the user. So for example, if I login to test.dev and then later go to mypage.test.dev, a call will be issued to test.dev/auth-service/ by mypage.test.dev to authenticate the user and if it is successful, then return all stored session variables so that they can be stored by mypage.test.dev.</p> <p>Perhaps a cleaner approach would be to always access session data only from one domain or the other and to always access it strictly through the web service so that the interface to session data remains consistent across both sites. This does present a possible performance though since it is obviously faster to simply access session directly rather than through a web service. </p> http://stackoverflow.com/questions/1763787/consuming-json-object-in-php-sent-from-jquery/1763826#1763826 0 Answer by Noah Goodrich for Consuming JSON object in PHP, sent from jQuery Noah Goodrich 2009-11-19T14:52:34Z 2009-11-19T14:52:34Z <p>Have you tried using $_POST?</p> <p>I handle all of my JSON requests more or less like this:</p> <pre><code>$params = json_decode($_POST[]); </code></pre> http://stackoverflow.com/questions/1757215/architecture-of-very-complex-php-applications/1757428#1757428 2 Answer by Noah Goodrich for Architecture of very complex php applications ? Noah Goodrich 2009-11-18T16:53:06Z 2009-11-18T16:53:06Z <p>I believe that part of your problem may lie in the fact that creating enterprise applications is a problem in any language, and the design patterns that can implemented are actually language agnostic.</p> <p>I would strongly recommend that you familiarize yourself with Patterns of Enterprise Application Architecture by Martin Fowler. This is the seminal work for any other books that you may later pick up that cover the same concepts in a language specific format, and if you want to truly understand what is required to create robust, scalable applications on the web then you'll need to familiarize yourself with this book.</p> <p>A very common and popular design strategy with web applications right now is the Model-View-Controller paradigm. This has to do completely with separation of concerns in your application so that you aren't mingling database access code with html output. </p> <p>For a pretty good treatment of the topic I would suggest that you look <a href="http://www.survivethedeepend.com/zendframeworkbook/en/1.0/the.architecture.of.zend.framework.applications#zfbook.the.architecture.of.zend.framework.applications.model-view-controller" rel="nofollow">here</a> (Zend Framework specific but it covers the general topic well) and <a href="http://blog.astrumfutura.com/archives/373-The-M-in-MVC-Why-Models-are-Misunderstood-and-Unappreciated.html" rel="nofollow">here</a> for a discussion about Models specifically. Or if you want to look at a more generalized PHP MVC tutorial, Rasmus Lerdorf has <a href="http://toys.lerdorf.com/archives/38-The-no-framework-PHP-MVC-framework.html" rel="nofollow">one</a>.</p> <p>In addition to this (and again you can learn this from PofEAA by Martin Fowler) you will need to learn about Object-Relational-Mapping what the strengths and weaknesses are of the various design patterns. </p> <p>Unfortunately there are many good ways to do things depending on your needs, but for every good way there are about a zillion horribly wrong ways to them. </p> http://stackoverflow.com/questions/1755606/does-form-processing-code-need-to-be-abstracted-zendform/1755862#1755862 1 Answer by Noah Goodrich for Does form processing code need to be abstracted? (Zend_Form) Noah Goodrich 2009-11-18T13:11:35Z 2009-11-18T13:11:35Z <p>What I have actually done was to move validation into the domain objects (or model layer), and then my domain layer implements a save() method. </p> <p>While I don't use Zend_Form in my domain layer, I have noticed that others will implement a Zend_Form instance in their domain models so that they can present a consistent form everywhere for each domain model. Personally, I feel that this couples domain objects to the presentation layer too much. </p> <p>Instead, I do use Zend_Filter_Input as the backbone for validation in my domain objects. </p> http://stackoverflow.com/questions/1752988/what-is-the-best-type-to-use-for-a-column-in-mysql-containing-the-body-of-text-ou/1753015#1753015 1 Answer by Noah Goodrich for What is the best type to use for a column in MySQL containing the body of text output by a CMS? Noah Goodrich 2009-11-18T01:20:39Z 2009-11-18T01:20:39Z <p>I would suggest that you just use TEXT. Or if you're concerned about having a large enough space, then you could use LONGTEXT.</p> http://stackoverflow.com/questions/1750932/select-from-multiple-tables-matching-multiple-criteria/1750963#1750963 1 Answer by Noah Goodrich for Select from multiple tables matching multiple criteria Noah Goodrich 2009-11-17T18:50:26Z 2009-11-17T18:50:26Z <pre><code>SELECT DISTINCT(ccyname), oid FROM Companies AS c INNER JOIN Notes AS n ON c.cid = n.cid INNER JOIN Opportunities AS o ON c.cid = o.cid WHERE n.ntype IN ('order','order2') AND o.iactive = 1; </code></pre> <p><em>Caveat: Not Tested.</em></p> http://stackoverflow.com/questions/1748975/how-do-i-set-environment-variables-in-wamp/1749011#1749011 0 Answer by Noah Goodrich for How do I set environment variables in WAMP Noah Goodrich 2009-11-17T13:49:54Z 2009-11-17T13:49:54Z <p>Depending on exactly what you need to accomplish you probably need to look at using <a href="http://www.php.net/manual/en/function.putenv.php" rel="nofollow">putenv()</a> or if you want to change an apache environment variable, <a href="http://php.net/manual/en/function.apache-setenv.php" rel="nofollow">apache_setenv()</a>.</p> http://stackoverflow.com/questions/1748688/how-to-have-search-engines-index-database-driven-content/1748994#1748994 1 Answer by Noah Goodrich for How to Have Search Engines Index Database-Driven Content? Noah Goodrich 2009-11-17T13:45:47Z 2009-11-17T13:45:47Z <p>What ILMV is trying to explain is that you have to have HTML pages that Google and other search engines can 'crawl' in order for them to index your content. </p> <p>Since your information is loading dynamically from a database, you will need to use a server-side language like PHP to dynamically load information from the database and then output that information to an HTML page. </p> <p>You have any number of options for how to accomplish this specifically, ILMV's suggestion is one of the better ways though. </p> <p>Basically what you need to do first is figure out how to pull the information from the database and then use PHP (or another server-side language) to output the information to an HTML page.</p> <p>Then you will need to determine whether you want to use the uglier, default url style for php driven pages:</p> <pre><code>mysite.com/products.php?id=123 </code></pre> <p>But this url is not very user or search engine friendly and will result in your content not being indexed very well.</p> <p>Or you can use some sort of URL rewriting mechanism (mod_rewrite in a .htaccess file does this or you can look at more complex PHP oriented solutions like Zend Framework that provide what's called a Front Controller to handle mapping of all requests) to make it so that your url's look like:</p> <pre><code>mysite.com/products/123/nice-bmw-m3-2006 </code></pre> <p>This is what ILMV is talking about with regard to url masking.</p> <p>Using this method of dynamically loading content will allow you to develop a single page to load the information for a number of different products based on the Id thus making it seem to the various search engines as though you have a unique page for each product.</p> http://stackoverflow.com/questions/1740801/good-php-mock-framework/1741020#1741020 0 Answer by Noah Goodrich for Good PHP mock framework Noah Goodrich 2009-11-16T09:23:00Z 2009-11-16T09:23:00Z <p>While I've not implemented a mock framework myself, I was impressed with <a href="http://blog.astrumfutura.com/archives/392-The-Mockery-An-Independent-Mock-Object-and-Stub-Framework-for-PHP5.html" rel="nofollow">Mockery</a>.</p> <p>Its a completely independent mock and stub framework that you should be able to integrate easily with any existing framework or just into your existing code base.</p> http://stackoverflow.com/questions/1736614/what-is-hash-exactly/1736617#1736617 7 Answer by Noah Goodrich for What is hash exactly? Noah Goodrich 2009-11-15T04:59:58Z 2009-11-15T04:59:58Z <blockquote> <p>A hash value (or simply hash), also called a message digest, is a number generated from a string of text. The hash is substantially smaller than the text itself, and is generated by a formula in such a way that it is extremely unlikely that some other text will produce the same hash value.</p> </blockquote> http://stackoverflow.com/questions/1736581/loop-through-form-input-arrays-in-php/1736585#1736585 2 Answer by Noah Goodrich for Loop through form input arrays in php Noah Goodrich 2009-11-15T04:45:21Z 2009-11-15T04:54:00Z <p>The correct solution will depend on whether you plan on storing scalar values under $_POST['invoice']['new_item_attributes'] or if you plan on making it an array of arrays (in other words, you plan on having multiples of the new_item_attributes.</p> <p>If you only plan on storing scalar values then you'll first need to change each of the form elements to look like this:</p> <pre><code>name="inovoice[new_item_attributes][description]" </code></pre> <p>You'll notice that the empty [] is gone. </p> <p>And then your loop should look like so:</p> <pre><code>foreach($_POST['invoice']['new_item_attributes'] as $key =&gt; $val) { $data = array('description =&gt; $value); } </code></pre> <p>Otherwise you'll need to use this in your PHP code:</p> <pre><code>foreach($_POST['invoice']['new_item_attributes'] as $key =&gt; $val) { $data = array('description' =&gt; $val['description']); } </code></pre> <p>Or:</p> <pre><code>foreach($_POST['invoice']['new_item_attributes'] as $key =&gt; $val) { foreach($val as $sub =&gt; $value) { $data = array($sub =&gt; $value); } } </code></pre> http://stackoverflow.com/questions/1730100/what-is-the-best-solution-for-creating-a-soap-server-in-php/1730126#1730126 3 Answer by Noah Goodrich for What is the best solution for creating a SOAP Server in PHP? Noah Goodrich 2009-11-13T15:58:01Z 2009-11-13T15:58:01Z <p>I would recommend looking at the <a href="http://framework.zend.com/manual/en/zend.soap.html" rel="nofollow">Zend_Soap</a> class of Zend Framework.</p> <p>Its fairly complete and robust and has been available in the framework long enough to have most if not all of its rough spots smoothed out. Plus its part of a framework that is being actively maintained so it will continue to support new standards and any bugs that are found will be fixed.</p> http://stackoverflow.com/questions/1729892/require-a-method-in-parent-class-to-be-called-in-php/1729943#1729943 0 Answer by Noah Goodrich for Require a method in parent class to be called in PHP Noah Goodrich 2009-11-13T15:29:42Z 2009-11-13T15:29:42Z <p>What you should probably do is override Parent::foo() and then call the parent method in the overridden method like so:</p> <pre><code>class Parent { funtion foo () { // do stuff } } class Child extends Parent { function foo () { if(!parent::foo()) { throw new Exception('Foo failed'); } // do child class stuff } } </code></pre> http://stackoverflow.com/questions/1728416/php-best-practice-books/1728474#1728474 0 Answer by Noah Goodrich for PHP Best practice books? Noah Goodrich 2009-11-13T10:45:48Z 2009-11-13T10:45:48Z <p>For Security:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/059600656X" rel="nofollow">PHP Security</a> by Chris Shiflett.</p> http://stackoverflow.com/questions/1713276/access-global-variable-as-static-class-variable/1713324#1713324 2 Answer by Noah Goodrich for access global variable as static class variable Noah Goodrich 2009-11-11T05:52:59Z 2009-11-11T05:52:59Z <blockquote> <p>If it hurts, its likely that you're doing it wrong.</p> </blockquote> <p>First off, without seeing more of your code its impossible to provide a more concrete solution, but I would strongly recommend that you consider rearranging your class structure so that your static functions (it sounds like you've got a long list of them to implement) become non-static. </p> <p>In essence, you should consider accessing an instantiated instance of SQLMapper and then calling the appropriate method from the instance. Using this paradigm, you could just instantiate a class level property for $_DATABASE which can then be freely referenced by all methods in the class.</p> <p>For example: </p> <pre><code>class SQLMapper { private $_db; public function __construct() { global $_DATABASE; $this-&gt;_db = $_DATABASE; } public function find_user_by_id($id) { $sql = "Select * from User WHERE Id = ?"; $stmt = $this-&gt;_db-&gt;prepare($sql, $id); return $stmt-&gt;execute(); } } </code></pre> <p>With that said, using globals is generally a sign of poor code quality so I would also suggest that you consider taking a more object-oriented approach to your current design and look for tried and true methods for eliminating globals from your application altogether.</p> http://stackoverflow.com/questions/1712366/image-resizing-question-using-php/1712442#1712442 1 Answer by Noah Goodrich for Image resizing question using php? Noah Goodrich 2009-11-11T01:32:09Z 2009-11-11T01:32:09Z <p>I built a custom Image class for our in-house framework that uses code from Simon Jarvis for the basics of image resizing.</p> <p>You can find the sample code and a tutorial here:</p> <p><a href="http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php" rel="nofollow">http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php</a></p> <p>Basically the magic for what you want to do comes down to the following methods that I use in our image class (Any class properties are set elsewhere, but you can just hard-code these values if you need to):</p> <pre><code>public function resize($width,$height) { $new_image = imagecreatetruecolor($width, $height); imagecopyresampled($new_image, $this-&gt;_image, 0, 0, 0, 0, $width, $height, $this-&gt;getWidth(), $this-&gt;getHeight()); $this-&gt;_image = $new_image; unset($new_image); return $this; } public function resizeToHeight($height) { $ratio = $height / $this-&gt;getHeight(); $width = $this-&gt;getWidth() * $ratio; $this-&gt;resize($width,$height); return $this; } public function resizeToWidth($width) { $ratio = $width / $this-&gt;getWidth(); $height = $this-&gt;getheight() * $ratio; $this-&gt;resize($width,$height); return $this; } public function output() { if($this-&gt;_image) { ob_clean(); ob_end_clean(); // Start sending headers header("Pragma: public"); // required header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); // required for certain browsers header("Content-Transfer-Encoding: binary"); header("Content-Type: " . $this-&gt;_settings['mime']); $function = 'image' . substr($this-&gt;_settings['mime'], 6); $function($this-&gt;_image); } } </code></pre> http://stackoverflow.com/questions/1708253/well-established-scientific-truths-about-software-engineering/1708307#1708307 0 Answer by Noah Goodrich for Well-established scientific truths about software engineering Noah Goodrich 2009-11-10T14:18:51Z 2009-11-10T14:18:51Z <p>Postel's Law:</p> <blockquote> <p>"Be conservative in what you do, be liberal in what you accept from others."</p> </blockquote> http://stackoverflow.com/questions/1704106/business-logic-in-php-or-mysql/1704322#1704322 1 Answer by Noah Goodrich for Business Logic in PHP or MySQL ? Noah Goodrich 2009-11-09T22:21:03Z 2009-11-09T22:21:03Z <p>There are several things to consider when trying to decide whether to place the business logic in the database or in the application code.</p> <blockquote> <p>Will the same database be accessed from different websites / web applications? Will the sites / applications be written in the same language or in a different language?</p> </blockquote> <p>If the database will be used from a single site, and the site is written in a single language then this becomes a non-issue. Otherwise, you'll need to consider the added complexity of stored procedures, triggers, etc vs trying to maintain database access logic etc in multiple code bases. </p> <blockquote> <p>What are relational databases in general good for and what is MySQL good for specifically? What is PHP best at?</p> </blockquote> <p>This consideration is fairly straight-forward. Relational databases across the board and specifically in any variant of SQL are going to do a great job at inserting, updating, and deleting data. Generally they also handle ATOMIC transactions well. However, most variants of SQL (including MySQL) are not good at complex calculations, on-the-fly date handling, file system access etc. </p> <p>PHP on the other hand is very fast at handling calculations, dates, file system accesses. By taking a little time you can even design your PHP code to work in such a way that records are only retrieved once and then stored when necessary. </p> <blockquote> <p>What are you most familiar / comfortable with using?</p> </blockquote> <p>Obviously it tends to make more sense to use the tool with which you are most familiar. </p> <p>As a last point consider that just because a drill can be used to cut sheet rock or because a hammer can be used to drive a screw doesn't mean that they should be used for these things. Sometimes I think that programmers do more potential damage by trying to make more powerful tools that do everything rather than making simpler tools that do one thing really, really well.</p> http://stackoverflow.com/questions/1699588/zend-framework-how-to-get-the-number-of-item-in-the-loop-partialloop-partialcou/1699627#1699627 2 Answer by Noah Goodrich for Zend Framework how to get the number of item in the loop ? partialLoop partialCounter and ? Noah Goodrich 2009-11-09T07:53:15Z 2009-11-09T15:24:32Z <p>In order to get the total number of items, you will have to either extend Zend_View_Helper_PartialLoop to provide a method that returns the count of the iterable object being used by the PartialLoop.</p> <p>Or, and I would say this is probably easier, just get the count of items in the object before you pass it into the PartialLoop since you have to pass either a Traversable object or an actual array into the PartialLoop helper and both implement support for count().</p> <p>From the documentation: </p> <pre><code>&lt;?php // partialLoop.phtml ?&gt; &lt;dt&gt;&lt;?php echo $this-&gt;key ?&gt;&lt;/dt&gt; &lt;dd&gt;&lt;?php echo $this-&gt;value ?&gt;&lt;/dd&gt; &lt;?php // MyController.php public function indexAction() { $this-&gt;view-&gt;$model = array( array('key' =&gt; 'Mammal', 'value' =&gt; 'Camel'), array('key' =&gt; 'Bird', 'value' =&gt; 'Penguin'), array('key' =&gt; 'Reptile', 'value' =&gt; 'Asp'), array('key' =&gt; 'Fish', 'value' =&gt; 'Flounder'), ); $this-&gt;view-&gt;modelCount = count($this-&gt;view-&gt;model); } </code></pre> <p>From index.phmtl</p> <pre><code>&lt;p&gt;Count: &lt;?= $this-&gt;modelCount ?&gt;&lt;/p&gt; &lt;dl&gt; &lt;?php echo $this-&gt;partialLoop('partialLoop.phtml', $this-&gt;model) ?&gt; &lt;/dl&gt; </code></pre> http://stackoverflow.com/questions/1896765/how-can-i-use-class Comment by Noah Goodrich on How can I use class? Noah Goodrich 2009-12-13T15:06:32Z 2009-12-13T15:06:32Z Do you just want to know how to include a class file? Or do you need to know how to instantiate an instance of the class? If you could provide more detail it would be very helpful. http://stackoverflow.com/questions/1809629/necessity-of-foreign-key-in-this-caseinnodb-mysql/1809694#1809694 Comment by Noah Goodrich on Necessity of foreign key in this case(innoDB/mysql) Noah Goodrich 2009-11-27T20:45:28Z 2009-11-27T20:45:28Z @Charles Bretana - Check the documentation for InnoDb Foreign Keys (<a href="http://dev.mysql.com/doc/refman/5.1/en/innodb-foreign-key-constraints.html" rel="nofollow">dev.mysql.com/doc/refman/&hellip;</a>). Indexes are required and will be automatically created as of Mysql 5.0 http://stackoverflow.com/questions/1800342/zend-framework-call-view-helper-from-a-zendviewhelper/1801747#1801747 Comment by Noah Goodrich on Zend Framework call view helper from a Zend_View_Helper Noah Goodrich 2009-11-27T20:40:48Z 2009-11-27T20:40:48Z @EricP - You can extend the GeneralFunctions View Helper class with all of your View Helper classes like you're suggesting. Or, you can simply use the GeneralFunctions View Helper as a View Helper all on its own as I indicated in the sample code. Using this method, your other View Helpers still inherit the default Abstract class and then you call methods from the GeneralFunctions View Helper via the magic __call() method. http://stackoverflow.com/questions/1786243/what-should-i-learn/1786290#1786290 Comment by Noah Goodrich on What should I learn? Noah Goodrich 2009-11-23T22:53:58Z 2009-11-23T22:53:58Z jQuery can be easily be included and then used to replace the existing Ajax functions. Assuming that the previous coder wasn't a total douchebag, He still used a few core functions to provide Ajax functionality where needed that you should be able to rewrite. That said, this is why I recommended going to w3schools first. Before I picked a javascript library to use I learned what raw AJAX code would look like. Its always important to be able to understand what magic lies under the covers. :-) http://stackoverflow.com/questions/1781548/please-can-anyone-check-this-code-for-image-uploading Comment by Noah Goodrich on please can anyone check this code for image uploading Noah Goodrich 2009-11-23T16:20:19Z 2009-11-23T16:20:19Z Are you receiving an error? Or is the file not being moved? What exactly isn't working that you need help with? http://stackoverflow.com/questions/1781548/please-can-anyone-check-this-code-for-image-uploading Comment by Noah Goodrich on please can anyone check this code for image uploading Noah Goodrich 2009-11-23T07:30:04Z 2009-11-23T07:30:04Z You will need to post an exact error message along with the actual code if you would like assistance. I could probably create several different errors from this code, but we can only help with your specific one if you tell us what it is. http://stackoverflow.com/questions/1763726/i-add-10-functions-to-a-code-i-dont-even-call-any-of-them-but-the-code-stops-w Comment by Noah Goodrich on I add 10 functions to a code, I don't even call any of them, but the code stops working! Noah Goodrich 2009-11-19T14:45:12Z 2009-11-19T14:45:12Z Have you tried just adding one function at a time? If there are syntax errors anywhere in the page, then all Javascript will cease to function. http://stackoverflow.com/questions/1757215/architecture-of-very-complex-php-applications/1757428#1757428 Comment by Noah Goodrich on Architecture of very complex php applications ? Noah Goodrich 2009-11-18T19:05:58Z 2009-11-18T19:05:58Z @Oguz - Are you familiar at all with Don't Repeat Yourself, Single Responsibility Principle or encapsulation as they relate to Object-Oriented Programming? http://stackoverflow.com/questions/1752581/fallback-route-with-zend-framwork Comment by Noah Goodrich on Fallback route with Zend Framwork Noah Goodrich 2009-11-17T23:53:25Z 2009-11-17T23:53:25Z Could you maybe post two sample routes? One for each condition so we could see what kind of routing parameters might work? http://stackoverflow.com/questions/1752668/why-does-cakephp-use-different-plural-singular-naming-conventions Comment by Noah Goodrich on Why does CakePHP use different plural/singular naming conventions? Noah Goodrich 2009-11-17T23:51:06Z 2009-11-17T23:51:06Z It could also be because CakePHP was designed by people who use PHP which is inconsistent by definition. http://stackoverflow.com/questions/1752477/how-to-use-sha256-in-php5-3-0 Comment by Noah Goodrich on How to use sha256 in php5.3.0 Noah Goodrich 2009-11-17T23:23:42Z 2009-11-17T23:23:42Z @garcon1986 - My first guess is that the two hash values are different. You only posted one. So either the problem lies in the hash value going into the database, once it gets stored, or with the hash value that you're generating on login. http://stackoverflow.com/questions/1752477/how-to-use-sha256-in-php5-3-0 Comment by Noah Goodrich on How to use sha256 in php5.3.0 Noah Goodrich 2009-11-17T23:02:32Z 2009-11-17T23:02:32Z Can you post a sample of the hash as its stored in the database versus what it looks like in the code? http://stackoverflow.com/questions/1748688/how-to-have-search-engines-index-database-driven-content Comment by Noah Goodrich on How to Have Search Engines Index Database-Driven Content? Noah Goodrich 2009-11-17T14:06:54Z 2009-11-17T14:06:54Z @Mike B - Obviously the OP is not aware of how to go from content in a database to content that can be indexed by Google. It is this information that the OP needs from the community. http://stackoverflow.com/questions/1749008/javascript-innerchild Comment by Noah Goodrich on JavaScript innerchild? Noah Goodrich 2009-11-17T13:51:17Z 2009-11-17T13:51:17Z Can you tell us what javascript framework you are using? http://stackoverflow.com/questions/1740801/good-php-mock-framework/1741020#1741020 Comment by Noah Goodrich on Good PHP mock framework Noah Goodrich 2009-11-16T14:40:41Z 2009-11-16T14:40:41Z I'm fairly certain that this was written from scratch. It may employ ideas PHPMock, but I'm pretty certain that the similarities end there.