User deceze - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:39:56Zhttp://stackoverflow.com/feeds/user/476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1939046/changing-only-the-home-page-layout-in-cakephp/1939126#19391262Answer by deceze for Changing only the home page layout in cakephpdeceze2009-12-21T09:33:50Z2009-12-21T09:44:41Z<p>Copy the <code>/cake/libs/controller/pages_controller.php</code> into your <code>/app/controller/</code> dir and do either of the following:</p>
<ul>
<li>Add a line towards the end of <code>display()</code> to switch the layout if 'home' is requested:<br>
<code>if ($page == 'home') $this->layout = 'homepage';</code></li>
<li>Create a <code>home()</code> method (or named however you like) in which you set <code>$this->layout</code> and re-route the <code>/</code> route in <code>/app/config/routes.php</code> to use this new method.</li>
</ul>
<p><strong>Edit:</strong><br>
In summary, you need some custom method in which you'll set <code>$this->layout = 'homepage'</code>, that's all. You can do this in any of your controllers at any point, reusing the <code>PagesController</code> is just the most convenient and conventional way to do it in Cake.</p>
http://stackoverflow.com/questions/1938366/railsless-deploy-in-webistrano0railsless-deploy in Webistranodeceze2009-12-21T05:27:12Z2009-12-21T05:27:12Z
<p>How do I use the <a href="http://github.com/leehambley/railsless-deploy" rel="nofollow">railsless-deploy</a> gem in Webistrano?</p>
<p>As far as I understood, it contains common presets for non-ruby apps, which I would have to otherwise all over-/rewrite manually using Webistrano recipes. I tried including the railsless-deploy gem as usual in a Webistrano recipe, but that causes an error while loading tasks.</p>
<p>I tried sym-linking the gem into Webistrano's /vendor/plugins/ folder, but that didn't help either.</p>
http://stackoverflow.com/questions/1938061/isset-or-empty-functions-on-all-variables-in-your-views-php/1938077#19380771Answer by deceze for isset() or !empty() functions on all variables in your views? PHPdeceze2009-12-21T03:52:17Z2009-12-21T03:58:28Z<p>That's a pretty broad question. It depends on whether you can expect the variable to always be present or if there might reasonably be cases where it isn't. If, according to your program structure, a certain variable should always be present at this point in the program, you should not check for its existence. This way you'll get a nice warning when something screws up and you know something went wrong. If, OTOH, you expect the variable to sometimes be absent, you need to check for this case to gracefully catch the error that would otherwise result.</p>
<p>Furthermore, the choice between <code>isset</code> and <code>!empty</code> depends on whether you mean "is set and not <code>null</code>" or "is set and contains something that's not considered <code>false</code>". That's a small but sometimes important difference.</p>
http://stackoverflow.com/questions/1937726/html-form-input-to-mysql-time/1938046#19380460Answer by deceze for HTML form input to mysql TIMEdeceze2009-12-21T03:40:45Z2009-12-21T03:40:45Z<p>This is one of the eternal struggles of (web) UI design, how to input time without driving the users nuts. What works for your specific case is something only you can decide, because it depends on the exact format/circumstances you need and your target audience.</p>
<p>As general guidelines I'd say:</p>
<ul>
<li><strong>Don't</strong> do a free-form text field that requires a certain format, e.g. "Enter time (HH:MM:SS)", because it's too easy to mess up and will deny the users input or mess up the time if you do no validation.</li>
<li>Try to avoid [0-23] [0-59] [0-59] dropdowns, since they can be quite a pain (click, scroll, click, click, scroll, click, click, scroll, click).</li>
</ul>
<p>If ease of use is a high priority, as would be the case for public websites, maybe a Javascript enhanced timepicker is a good idea. Try not to use anything too fancy that nobody gets though (like dragging the hands on a clock).</p>
<p>A free-form, free-format text field might be the best idea. The user can just type in "3pm", "16:34" or "midnight". You may need to provide examples to get users started, otherwise they may feel lost. You can run this through <code>strtotime</code> on your end, but you may need to fill in the blanks and do a lot of validation.</p>
<p>Three short text fields may be a good idea if your audience is very keyboard focused and can be expected to tab through them in rapid order.</p>
<p>As for formatting it for SQL, however you receive the time input from the user, you should assemble it to a UNIX timestamp and format that timestamp for SQL:</p>
<pre><code>date('Y-m-d H:i:s', $timestamp);
</code></pre>
http://stackoverflow.com/questions/1933657/cakephp-model-validation-with-array/1934643#19346432Answer by deceze for CakePHP model validation with arraydeceze2009-12-20T01:34:11Z2009-12-20T03:19:26Z<p>Considering that it's data, you should store the list of valid choices in the model.</p>
<pre><code>class MyModel extends AppModel {
var $fieldAbcChoices = array('a' => 'The A', 'b' => 'The B', 'c' => 'The C');
}
</code></pre>
<p>You can get that variable in the Controller simply like this:</p>
<pre><code>$this->set('fieldAbcs', $this->MyModel->fieldAbcChoices);
</code></pre>
<p>Unfortunately you can't simply use that variable in the rule declaration for the <code>inList</code> rule, since rules are declared as instance variables and those can only be initialized statically (no variables allowed). The best way around that is to set the variable in the Constructor:</p>
<pre><code>var $validate = array(
'fieldAbc' => array(
'allowedChoice' => array(
'rule' => array('inList', array()),
'message' => 'Enter something in listToCheck.'
)
)
);
function __construct($id = false, $table = null, $ds = null) {
parent::__construct($id, $table, $ds);
$this->validate['fieldAbc']['allowedChoice']['rule'][1] = array_keys($this->fieldAbcChoices);
}
</code></pre>
<p>If you're not comfortable overriding the Constructor, you could also do this in a <code>beforeValidate()</code> callback.</p>
<p>Also note that you shouldn't name your field 'selectBox'. :)</p>
http://stackoverflow.com/questions/1931144/add-to-body-tag-of-a-cakephp-app/1931737#19317372Answer by deceze for Add to <body> tag of a cakePHP appdeceze2009-12-19T02:25:13Z2009-12-19T02:25:13Z<p><strong>inkedmn</strong> certainly has provided the right answer for this case, but in general, you can "hand information up" like this:</p>
<p>(in views/controller/view.ctp)</p>
<pre><code>$this->set('bodyAttr', 'onload="something"');
</code></pre>
<p>(in views/layouts/default.ctp)</p>
<pre><code><?php
if (isset($bodyAttr)) {
$bodyAttr = " $bodyAttr";
} else {
$bodyAttr = null;
}
?>
<body<?php echo $bodyAttr; ?>>
</code></pre>
<p>I often use it like this to add extra classes to a "top level element":</p>
<pre><code><?php
if (!isset($docClass)) {
$docClass = null;
}
?>
<div id="doc" class="<?php echo $docClass; ?>">
</code></pre>
http://stackoverflow.com/questions/1926249/elegant-coding-how-to-deal-with-hidden-invisible-html-code/1926266#19262665Answer by deceze for Elegant coding, how to deal with hidden/invisible HTML code ?deceze2009-12-18T04:24:49Z2009-12-18T04:24:49Z<p>You're not supposed to be <em>hiding</em> the HTML, you're supposed to <em>not include</em> the HTML. I.e. on the server, you're doing something like this:</p>
<pre><code>if ($loggedIn && $user == 'asker') { // pseudocode
echo acceptButton(); // outputs the HTML for the button
}
</code></pre>
<p>Non-asker users will not even receive the HTML for the accept button in their browser.</p>
http://stackoverflow.com/questions/1923863/continue-execution-after-render/1926042#19260420Answer by deceze for Continue execution after renderdeceze2009-12-18T03:08:38Z2009-12-18T03:08:38Z<p>Depending on what exactly you want to do you should probably find a better way to do it. Having said that, that's exactly what the <a href="http://book.cakephp.org/view/60/Callbacks" rel="nofollow"><code>Controller::afterFilter()</code> callback</a> is for.</p>
http://stackoverflow.com/questions/1253340/what-is-the-ecosystem-for-haskell-web-development17What is the ecosystem for Haskell web development?deceze2009-08-10T06:16:45Z2009-12-17T12:49:03Z
<p>Inspired by <a href="http://stackoverflow.com/questions/1253243/is-haskell-mature-enough-for-developing-commerical-web-applications">this</a> question and a recent <a href="http://www.xent.com/pipermail/fork/Week-of-Mon-20070219/044101.html" rel="nofollow">affair</a>, I'm wondering what's involved with Haskell web development.</p>
<ul>
<li>Are there any Haskell web frameworks or template engines? </li>
<li>How would hosting a Haskell site work, are there suitable web servers? </li>
<li>Is Haskell too complex for the usual rapid development and prototyping based workflow often used in web development? </li>
<li>Are there examples of existing Haskell web applications?</li>
</ul>
http://stackoverflow.com/questions/1912599/php-is-there-any-particular-difference-between-intval-and-int/1912618#19126182Answer by deceze for PHP: Is there any particular difference between intval and (int)?deceze2009-12-16T06:02:14Z2009-12-16T06:02:14Z<p>The thing that <code>intval</code> does that a simple cast doesn't is base conversion:</p>
<pre><code>int intval ( mixed $var [, int $base = 10 ] )
</code></pre>
<p>If the base is 10 though, <code>intval</code> should be the same as a cast (unless you're going to be nitpicky and mention that one makes a function call while the other doesn't). As noted on the <a href="http://php.net/intval" rel="nofollow">man page</a>:</p>
<blockquote>
<p>The common rules of integer casting apply.</p>
</blockquote>
http://stackoverflow.com/questions/1905656/unit-testing-cakephp-models/1905666#19056660Answer by deceze for Unit testing cakephp modelsdeceze2009-12-15T07:05:45Z2009-12-15T07:10:50Z<p>The <code>alphaNumeric</code> validation rule only allows, well, alphanumeric characters, i.e. <strong>no spaces</strong>. So your test fails correctly.</p>
http://stackoverflow.com/questions/1892028/css-classes-in-cakephp/1892202#18922021Answer by deceze for Css classes in CakePHP?deceze2009-12-12T03:47:21Z2009-12-12T03:47:21Z<p>I'm guessing you're looking for this?</p>
<pre><code>echo $html->tableHeaders(
array(
array('Title for first cell', array('class' => 'class for first cell')),
array('Title for second cell', array('id' => 'id for second cell')),
array('Title for third cell', array('class' => 'thirdClass', 'id' => 'thirdId'))
)
);
</code></pre>
http://stackoverflow.com/questions/1886740/php-remove-javascript/1886821#18868213Answer by deceze for PHP Remove JavaScriptdeceze2009-12-11T09:21:45Z2009-12-11T09:28:53Z<p>This might do more than you want, but depending on your situation you might want to look at <a href="http://php.net/strip%20tags" rel="nofollow"><code>strip_tags</code></a>.</p>
http://stackoverflow.com/questions/1884870/cakephp-authentication-with-prefix-routing/1886202#18862023Answer by deceze for CakePHP Authentication with Prefix Routingdeceze2009-12-11T06:32:53Z2009-12-11T06:32:53Z<p>The Auth Component should be plenty flexible for this.</p>
<p>You could do a <code>beforeFilter()</code> like this:</p>
<pre><code>// I think it's params['prefix'], might be different
// vvvvvvvvvvvvvvvv
if (isset($this->params['prefix'])) {
$this->Auth->userScope = array('User.type' => $this->params['prefix']);
}
</code></pre>
<p>You can also add <code>isAuthorized()</code> functions to either your model or controller on an as-needed basis to do even more advanced authentication. See <a href="http://book.cakephp.org/view/396/authorize" rel="nofollow">http://book.cakephp.org/view/396/authorize</a>.</p>
http://stackoverflow.com/questions/1879774/why-this-fails-in-php/1879801#18798012Answer by deceze for Why this fails in PHP?deceze2009-12-10T09:30:04Z2009-12-10T09:36:09Z<pre><code>echo current(explode(' ', 'A B'));
</code></pre>
<p>or</p>
<pre><code>$str = 'A B'; // assuming you're getting that string from somewhere
echo substr($str, 0, strpos($str, ' '));
</code></pre>
<p>I'd prefer the <code>substr</code> way, since you're dealing with strings anyway, not arrays.</p>
http://stackoverflow.com/questions/1878301/cakephp-image-inside-link-want-to-make-link-point-to-image-location/1878359#18783591Answer by deceze for CakePHP: image inside link, want to make link point to image locationdeceze2009-12-10T02:50:14Z2009-12-10T02:50:14Z<p>This should do the trick:</p>
<pre><code>echo $html->image('image.png', array('url' => '/' . IMAGES_URL . 'image.png'));
</code></pre>
http://stackoverflow.com/questions/1794412/adding-a-prefix-to-every-url-in-cakephp3Adding a prefix to every URL in CakePHPdeceze2009-11-25T03:17:11Z2009-12-10T02:41:26Z
<p>What's the cleanest way to add a prefix to every URL in CakePHP, like a language parameter?</p>
<pre><code>http://example.com/en/controller/action
http://example.com/ru/admin/controller/action
</code></pre>
<p>It needs to work with "real" prefixes like <code>admin</code>, and ideally the bare URL <code>/controller/action</code> could be redirected to <code>/DEFAULT-LANGUAGE/controller/action</code>.</p>
<p>It's working in a retro-fitted application for me now, but it was kind of a hack, and I need to include the language parameter by hand in most links, which is not good.</p>
<p>So the question is twofold:</p>
<ul>
<li>What's the best way to structure Routes, so the language parameter is implicitly included by default without having to be specified for each newly defined Route?
<ul>
<li><code>Router::connect('/:controller/:action/*', ...)</code> should implicitly include the prefix.</li>
<li>The parameter should be available in <code>$this->params['lang']</code> or somewhere similar to be evaluated in <code>AppController::beforeFilter()</code>.</li>
</ul></li>
<li>How to get <code>Router::url()</code> to automatically include the prefix in the URL, if not explicitly specified?
<ul>
<li><code>Router::url(array('controller' => 'foo', 'action' => 'bar'))</code> should return <code>/en/foo/bar</code></li>
<li>Since <code>Controller::redirect()</code>, <code>Form::create()</code> or even <code>Router::url()</code> directly need to have the same behavior, overriding every single function is not really an option. <code>Html::image()</code> for instance should produce a prefix-less URL though.</li>
</ul></li>
</ul>
<p><hr></p>
<p>The following methods seem to call <code>Router::url</code>.</p>
<ul>
<li><code>Controller::redirect</code></li>
<li><code>Controller::flash</code></li>
<li><code>Dispatcher::__extractParams</code> via <code>Object::requestAction</code></li>
<li><code>Helper::url</code></li>
<li><code>JsHelper::load_</code></li>
<li><code>JsHelper::redirect_</code></li>
<li><code>View::uuid</code>, but only for a hash generation</li>
</ul>
<p>Out of those it seems the Controller and Helper methods would need to be overridden, I could live without the <code>JsHelper</code>. My idea would be to write a general function in <code>AppController</code> or maybe just in <code>bootstrap.php</code> to handle the parameter insertion. The overridden Controller and Helper methods would use this function, as would I if I wanted to manually call <code>Router::url</code>. Would this be sufficient?</p>
http://stackoverflow.com/questions/1794412/adding-a-prefix-to-every-url-in-cakephp/1878334#18783340Answer by deceze for Adding a prefix to every URL in CakePHPdeceze2009-12-10T02:41:26Z2009-12-10T02:41:26Z<p>This is essentially all the code I implemented to solve this problem in the end (at least I think that's all ;-)):</p>
<p><strong>/config/bootstrap.php</strong></p>
<pre><code>define('DEFAULT_LANGUAGE', 'jpn');
if (!function_exists('router_url_language')) {
function router_url_language($url) {
if ($lang = Configure::read('Config.language')) {
if (is_array($url)) {
if (!isset($url['language'])) {
$url['language'] = $lang;
}
if ($url['language'] == DEFAULT_LANGUAGE) {
unset($url['language']);
}
} else if ($url == '/' && $lang !== DEFAULT_LANGUAGE) {
$url.= $lang;
}
}
return $url;
}
}
</code></pre>
<p><strong>/config/core.php</strong></p>
<pre><code>Configure::write('Config.language', 'jpn');
</code></pre>
<p><strong>/app_helper.php</strong></p>
<pre><code>App::import('Core', 'Helper');
class AppHelper extends Helper {
public function url($url = null, $full = false) {
return parent::url(router_url_language($url), $full);
}
}
</code></pre>
<p><strong>/app_controller.php</strong></p>
<pre><code>class AppController extends Controller {
public function beforeFilter() {
if (isset($this->params['language'])) {
Configure::write('Config.language', $this->params['language']);
}
}
public function redirect($url, $status = null, $exit = true) {
parent::redirect(router_url_language($url), $status, $exit);
}
public function flash($message, $url, $pause = 1) {
parent::flash($message, router_url_language($url), $pause);
}
}
</code></pre>
<p><strong>/config/routes.php</strong></p>
<pre><code>Router::connect('/', array('controller' => 'pages', 'action' => 'display', 'home'));
Router::connect('/pages/*', array('controller' => 'pages', 'action' => 'display'));
Router::connect('/:language/', array('controller' => 'pages', 'action' => 'display', 'home'), array('language' => '[a-z]{3}'));
Router::connect('/:language/pages/*', array('controller' => 'pages', 'action' => 'display'), array('language' => '[a-z]{3}'));
Router::connect('/:language/:controller/:action/*', array(), array('language' => '[a-z]{3}'));
</code></pre>
<p>This allows default URLs like <code>/controller/action</code> to use the default language (JPN in my case), and URLs like <code>/eng/controller/action</code> to use an alternative language. This logic can be changed pretty easily in the <code>router_url_language()</code> function.</p>
<p>For this to work I also need to define two routes for each route, one containing the <code>/:language/</code> parameter and one without. At least I couldn't figure out how to do it another way.</p>
http://stackoverflow.com/questions/1857377/php-using-curl-is-there-a-way-to-emulate-a-cookie-instead-of-saving-it-to-a-file/1857387#18573872Answer by deceze for PHP using CURL: is there a way to emulate a cookie instead of saving it to a file?deceze2009-12-07T02:05:17Z2009-12-07T02:37:29Z<p>Cookies are simple text headers sent along with the request. CURL allows you to specify those directly using <code>CURLOPT_COOKIE</code>.</p>
<pre><code>curl_setopt($ch, CURLOPT_COOKIE, 'key=value;anotherkey=anothervalue');
</code></pre>
<p>If you know what information to send, you can construct your own cookie header this way. The COOKIEJAR/COOKIEFILE options just automate parsing, saving and sending. You'll have to do that manually (read received Cookie headers, create Cookie headers to be send), if you don't want to write to a file.</p>
http://stackoverflow.com/questions/1675535/zip64-support-in-php/1677908#16779080Answer by deceze for zip64 support in php?deceze2009-11-05T02:10:51Z2009-12-06T12:41:36Z<p>Apparently Perl's <a href="http://search.cpan.org/dist/IO-Compress-Zlib/" rel="nofollow"><code>IO::Compress::Zip</code></a> module supports Zip64. If you're comfortable enough to install it you could call a small Perl script via <a href="http://php.net/manual/en/function.shell-exec.php" rel="nofollow"><code>shell_exec()</code></a>.</p>
http://stackoverflow.com/questions/1850947/how-to-link-javascript-to-scriptsforlayout-while-in-an-element/1851154#18511540Answer by deceze for how to link javascript to $scripts_for_layout while in an element.deceze2009-12-05T04:43:57Z2009-12-05T04:43:57Z<p>I'm not quite sure why <code>$javascript->link(…, false)</code> shouldn't work in an Element, but you could try this:</p>
<pre><code>$this->addScript($javascript->link('path/to/script'));
</code></pre>
<p>This <em>should</em> work in a View. In a Layout, as noted in the bug you're linking to, this won't work, since the header scripts will already be output by the time the element is rendered.</p>
http://stackoverflow.com/questions/1850834/is-it-possible-to-detect-the-field-type-of-a-mysql-field-in-cakephp/1850862#18508622Answer by deceze for Is it possible to detect the field type of a MySQL field in CakePHP?deceze2009-12-05T02:09:35Z2009-12-05T02:09:35Z<p>Off the top of my head: <code>Model::$_schema</code> holds the schema for the database table, including the type of the field. This is auto-populated by Cake using SQL <code>DESCRIBE</code> queries. You can go through your query results in an <code>afterFind()</code> callback and access <code>$this->_schema</code> to find out the type of the field. Try <code>debug($this->_schema);</code> to see how it's structured.</p>
http://stackoverflow.com/questions/1818050/feasibility-of-haml-php-cakephp0Feasibility of HAML + PHP/CakePHPdeceze2009-11-30T05:57:50Z2009-12-05T01:48:14Z
<p>Is anyone using a HAML implementation for PHP like <a href="http://sourceforge.net/projects/phphaml/" rel="nofollow">phpHaml</a> or <a href="http://sourceforge.net/projects/phaml/" rel="nofollow">pHAML</a>? Both projects have seen no activity for about 2 years, and both are < 1.0. Is it feasible/wise to use HAML for a large PHP application, or is it too immature?</p>
<p>Does anybody have experience with <a href="http://github.com/m3nt0r/chaml---cakephp-haml-sass-integration/" rel="nofollow">Chaml</a> for CakePHP? I played around with it, and it seems to be really picky about whitespace, which I think might cause a few hiccups in a large project with many developers.</p>
<p>I really want to use HAML or something minimalistic like it, but I don't want it to add another layer of debugging problems. Recommendations are welcome.</p>
http://stackoverflow.com/questions/1818050/feasibility-of-haml-php-cakephp/1850811#18508111Answer by deceze for Feasibility of HAML + PHP/CakePHPdeceze2009-12-05T01:48:14Z2009-12-05T01:48:14Z<p>Oh well, so in the meantime, I did start writing a small site using Chaml, which uses the phpHaml parser. First of all: HAML is so much fun! X-D</p>
<p>Second: phpHaml is still a little buggy. I've had instances where a line like</p>
<pre><code>= $html->link('Something', '/somewhere')
</code></pre>
<p>yielded</p>
<pre><code><?php echo $html->link('Something', '/somewhere'); ?><?php echo $html->link('Something', '/somewhere'); ?>
</code></pre>
<p>if <em>the following line was left blank</em>. Inserting something on the following line removed the duplicate. This means you're always required to double check you're actually producing the markup you think you are.</p>
<p>The Chaml plugin is working quite well, I haven't had any particular problems with it. The included SASS parser is not really worth talking about though, it's experimental at best.</p>
<p>Overall, HAML on PHP at this stage does add a slight debugging overhead, so I wouldn't recommend using it to just anybody. It may be worth it if you'd have to type loads and loads of markup otherwise.</p>
<p>I'm currently trying to decide whether diving into the phpHaml parser or switching to Rails is the better decision. ;)</p>
http://stackoverflow.com/questions/1837759/how-to-take-folder-as-a-input-in-html/1837774#18377743Answer by deceze for How to take folder as a input in html?deceze2009-12-03T05:05:19Z2009-12-03T05:05:19Z<p>Short answer: No, it's not possible.</p>
<p>You'll need to use something like a Java applet, ActiveX plugin or Flash (I know it does at least multiple files, not quite sure about folders) to do that.</p>
http://stackoverflow.com/questions/1830205/manually-building-a-tree-in-cakephp/1831372#18313721Answer by deceze for Manually Building a Tree in CakePHPdeceze2009-12-02T08:13:32Z2009-12-02T13:08:27Z<p>The MPTT tree logic is rather simple and well explained <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">here</a>. In summary, every entry has a left and a right value. Every entry whos left/right values are within another entries left-right range are a descendent of that (latter) element. E.g. the LCD node (5/6) is within the range of its parent node, Televisions (2-9).</p>
<p><img src="http://dev.mysql.com/tech-resources/articles/hierarchical-data-4.png" alt="alt text"></p>
<p>To build the lft/rght values for a "new" tree just set all the <code>parent_ids</code> properly and run <a href="http://book.cakephp.org/view/790/Data-Integrity" rel="nofollow"><code>$this->Model->recover()</code></a> on it. Cake will calculate the lft/rght values for you.</p>
http://stackoverflow.com/questions/1819868/should-i-upgrade-my-project-from-cake-1-2-5-to-cakephp-1-3-0/1823065#18230653Answer by deceze for Should I upgrade my project from Cake 1.2.5 to CakePHP 1.3.0?deceze2009-11-30T23:12:51Z2009-11-30T23:12:51Z<p>I'd say it depends on when you expect to get your site out the door. 1.3 is currently in alpha status and probably won't be officially stable for a while. While the changes being made between 1.2 and 1.3 shouldn't have a huge impact on the overall stability, the new features being put in might still be buggy. The question is, is there anything in 1.3 that you absolutely need <em>now</em>?</p>
<p>If you want to release your site soon on an unstable version of 1.3, you need to make sure through a lot of testing that the parts you're using are performing as expected. If your project will evolve over time together with 1.3, let's say over the next 6 months or so, and you continuously keep updating, you'll probably be in better shape. For example, I developed a project on the 1.2 beta and there were a few bugs in <code>Set</code>, which tripped me up, but got ironed out 'till the final release.</p>
<p>For a long-term project, I'd prefer the 1.3 branch, while for a near-future release I'd stick with 1.2.5 for now. You can keep an eye on the <a href="http://code.cakephp.org/wiki/1.3/migration-guide" rel="nofollow">Migration Guide</a> to avoid API calls that will be deprecated in 1.3, to allow for an easier later upgrade.</p>
http://stackoverflow.com/questions/1794021/php-underscore-in-filename-variable/1794034#17940340Answer by deceze for php underscore in filename variable?deceze2009-11-25T01:02:36Z2009-11-25T01:02:36Z<p>It depends on what you want. Let's say <code>$_REQUEST['postmessage']</code> contains <code>"foo"</code>. The first example will produce <code>$filename = 'data_foo.txt'</code>, <strike>while the second one will produce <code>$filename = 'data.txtfoo'</code>.</strike> (OP removed second example from question)</p>
<p>I'd guess the first one is the desired outcome, but that depends on your needs. It's just string concatenation, that's all.</p>
http://stackoverflow.com/questions/1761307/advice-needed-from-php-cake-php-expert/1761405#17614057Answer by deceze for Advice needed from PHP/Cake PHP expertdeceze2009-11-19T07:01:00Z2009-11-19T07:01:00Z<p>IMHO you should be comfortable writing at least a basic app in clean standard procedural code before using a framework. That means mastering all the <a href="http://php.net/manual/en/langref.php" rel="nofollow">basic elements of the language</a> like <code>if</code> and <code>switch</code>, loops, functions, local and global variables, etc. It also includes being comfortable with HTTP GET and POST, <a href="http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer" rel="nofollow">RESTfulness</a> and how to persist information between page loads (Cookies, Sessions, URL params). A basic idea of Javascript and AJAX would help as well.</p>
<p>Good exercises might include:</p>
<ul>
<li>A page that outputs database contents and is paginatable, filterable and sortable by various fields.</li>
<li>A shop checkout process or similar "wizard"-like page.</li>
</ul>
<p>That's when you can pick up a framework, since most frameworks abstract exactly these kinds of tedious things away from you. Especially Cake has a lot of automagic built in, which will leave you hopelessly confused if something goes wrong and you have no knowledge of the above mentioned. To start with OOP, you might want to try something like Zend first, which is a lot more transparent in how objects are used.</p>
http://stackoverflow.com/questions/1753836/whats-the-html-code-to-limit-the-access-to-my-web-page/1753952#17539521Answer by deceze for What's the HTML code to limit the access to my web-page?deceze2009-11-18T06:01:17Z2009-11-18T06:01:17Z<p>There's a manual section in PHP describing how to output HTTP headers that force an HTTP Auth. You can't do it with HTML alone.</p>
<p><a href="http://php.net/manual/en/features.http-auth.php" rel="nofollow">http://php.net/manual/en/features.http-auth.php</a></p>
<p>Personally I'd prefer the <code>.htaccess</code> method, but in the end, both do the same thing.</p>
<p><hr></p>
<p>PS: Getting pretty cold 'round here.</p>
http://stackoverflow.com/questions/1943060/cakephp-beforesave-and-aftersave-on-entire-saveComment by deceze on CakePHP: BeforeSave and AfterSave on entire save?deceze2009-12-22T02:11:07Z2009-12-22T02:11:07ZAre you actually calling those callbacks by hand as in your above code, or is that just for illustrational purposes? What is it you want to do in those callbacks?http://stackoverflow.com/questions/1939046/changing-only-the-home-page-layout-in-cakephp/1939126#1939126Comment by deceze on Changing only the home page layout in cakephpdeceze2009-12-21T09:40:26Z2009-12-21T09:40:26Z@K Sure you can, but its a good idea to keep only the PagesController for static pages as per convention.http://stackoverflow.com/questions/1939046/changing-only-the-home-page-layout-in-cakephp/1939126#1939126Comment by deceze on Changing only the home page layout in cakephpdeceze2009-12-21T09:39:00Z2009-12-21T09:39:00Z@Franz What do you mean by "overwriting"?http://stackoverflow.com/questions/1933657/cakephp-model-validation-with-array/1934643#1934643Comment by deceze on CakePHP model validation with arraydeceze2009-12-20T13:17:34Z2009-12-20T13:17:34ZThen create the whole array in the constructor, or <code>array_walk</code> over it and apply the function on <code>message</code> fields. <code>$this->choices = array('a' => __('The A', true), …);</code>http://stackoverflow.com/questions/1931144/add-to-body-tag-of-a-cakephp-app/1931737#1931737Comment by deceze on Add to <body> tag of a cakePHP appdeceze2009-12-19T04:39:04Z2009-12-19T04:39:04ZFor something like classes I don't, as they're purely view-layer related.http://stackoverflow.com/questions/1916286/find-conditions-like-not-existsComment by deceze on Find conditions like 'NOT EXISTS'deceze2009-12-18T03:11:05Z2009-12-18T03:11:05ZOops, learned something new. :) I've never used it and interestingly it didn't even come out when searching for it in the MySQL docs.http://stackoverflow.com/questions/1919826/how-to-make-php-output-a-sound-beep/1919839#1919839Comment by deceze on How to make PHP output a sound (beep)?deceze2009-12-17T06:50:12Z2009-12-17T06:50:12Z@unknown That's because there is no easy, equivalent PHP version.http://stackoverflow.com/questions/1916286/find-conditions-like-not-existsComment by deceze on Find conditions like 'NOT EXISTS'deceze2009-12-17T01:12:28Z2009-12-17T01:12:28ZI don't think <code>WHERE NOT EXISTS</code> is a valid (My)SQL expression, and I can't really imagine how you would select non-existing records anyway. Can you describe in words what you want to get?http://stackoverflow.com/questions/1905656/unit-testing-cakephp-models/1905659#1905659Comment by deceze on Unit testing cakephp modelsdeceze2009-12-16T02:05:03Z2009-12-16T02:05:03ZYou could use a "blackhole" datasource for tests if you wanted to. I still don't understand why you're so vehemently against actually writing to a database. If that's the only test that's being administered it's indeed not really granular enough. But if it's one test among others that may uncover a critical problem in the database/schema/connection layer, how can it hurt?http://stackoverflow.com/questions/1910373/cakephp-webserviceComment by deceze on cakephp webservicedeceze2009-12-15T23:18:25Z2009-12-15T23:18:25ZWhy are you <code>try</code> and <code>catching</code> an <code>echo</code> and <code>set()</code> statement? Neither of those will ever throw an exception.http://stackoverflow.com/questions/1905656/unit-testing-cakephp-models/1905659#1905659Comment by deceze on Unit testing cakephp modelsdeceze2009-12-15T07:58:00Z2009-12-15T07:58:00ZI'd call <code>array('NewsItem' => array('title' => 'A news item', 'body' => 'Some news'))</code> a rather fixed, known quantity. Are you assuming that the test database is not cleared before and after a test? What if you change the sequence of calls made during a <code>save()</code> in your code, but forget to change it in the test, and are emulating a different sequence than will actually happen during a real <code>save()</code>? In other words: What <i>wrong</i> with testing <code>save()</code>?http://stackoverflow.com/questions/1905656/unit-testing-cakephp-models/1905659#1905659Comment by deceze on Unit testing cakephp modelsdeceze2009-12-15T07:46:04Z2009-12-15T07:46:04ZI agree to a point. Still, what if you'd want to test the whole chain of <code>beforeValidate()</code>, validation, <code>beforeSave()</code>, <code>save()</code>, <code>afterSave()</code> and whatever else is involved in the process? Every piece may work by itself, but you may have screwed up the logic of how they play together. In other words: What's <i>wrong</i> with testing <code>Model::save()</code>, as long as you're still testing all the other parts separately? (Which I'm sure the OP will do, right, RIGHT?)http://stackoverflow.com/questions/1905656/unit-testing-cakephp-models/1905659#1905659Comment by deceze on Unit testing cakephp modelsdeceze2009-12-15T07:19:51Z2009-12-15T07:19:51ZSo you're saying one should test every unit, just not the unit that saves data? What if that's exactly what you want to test? Sure it adds one more variable into the mix, but so what? If it fails you need to debug the test as well, if it works you know that both the unit and the database are okay.http://stackoverflow.com/questions/1905656/unit-testing-cakephp-models/1905659#1905659Comment by deceze on Unit testing cakephp modelsdeceze2009-12-15T07:06:21Z2009-12-15T07:06:21ZCake is clever enough to use a separate database for tests.http://stackoverflow.com/questions/1899629/php-oop-memory-allocation-for-inheritance/1899641#1899641Comment by deceze on PHP [OOP] : Memory allocation for Inheritancedeceze2009-12-14T08:33:29Z2009-12-14T08:33:29ZNitpicking: It's more like "<code>$b</code> <i>is</i> an A, but with more stuff" than "has instance of A inside". :)