User Martin Westin - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T03:40:26Z http://stackoverflow.com/feeds/user/135484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1674726/lots-of-queries-to-pull-up-user-photos-and-their-comments-cakephp/1692664#1692664 0 Answer by Martin Westin for Lots of queries to pull up user photos and their comments. (CakePHP) Martin Westin http://stackoverflow.com/users/135484 2009-11-07T10:39:51Z 2009-11-07T10:39:51Z <p>You might also want to look at Nate's article in the Bakery about doing joins "the cake way".</p> <p><a href="http://bakery.cakephp.org/articles/view/quick-tip-doing-ad-hoc-joins-in-model-find" rel="nofollow">http://bakery.cakephp.org/articles/view/quick-tip-doing-ad-hoc-joins-in-model-find</a></p> http://stackoverflow.com/questions/1661193/start-stop-daemon-quoted-arguments-misinterpreted 2 start-stop-daemon quoted arguments misinterpreted Martin Westin http://stackoverflow.com/users/135484 2009-11-02T13:04:00Z 2009-11-02T14:39:57Z <p>Hi, I have been trying to make an init script using start-stop-daemon. I am stuck on the arguments to the daemon. I want to keep these in a variable at the top of the script but I can't get the quotations to filter down correctly.</p> <p>I'll use ls here so we don't have to look at binaries and arguments that most people wont know or care about.</p> <p>The end result I am looking for is for start-stop... to run <strong>ls -la "/folder with space/"</strong></p> <pre><code>DAEMON=/usr/bin/ls DAEMON_OPTS='-la "/folder with space/"' start-stop-daemon --start --make-pidfile --pidfile $PID --exec $DAEMON -- $DAEMON_OPTS </code></pre> <p>Double escaping the options and trying innumerable variations of quotations do not help... Then they end up at the daemon they are always messed up. Enclosing <strong>$DAEMON_OPTS</strong> in quotes changes things... then they are seen as one since quote... never the right number though :)</p> <p>Echoing the command-line (start-stop...) prints exactly the right stuff to screen. But the daemon (the real one, not ls) complains about the wrong number of arguments.</p> <p>How do I specify a variable so that quotes inside it are brought along to the daemon correctly?</p> <p>Thanks, Martin</p> http://stackoverflow.com/questions/1046439/cakephp-nginx-rewrite-rules/1102389#1102389 1 Answer by Martin Westin for cakephp & nginx rewrite rules Martin Westin http://stackoverflow.com/users/135484 2009-07-09T07:41:45Z 2009-07-09T07:41:45Z <p>At a glance, your problem might be that you are not pointing nginx to the webroot of your app. Deploying to the root cake folder is really not the way to go under any web-server.</p> <p>The following is a complete server-block I use running Cake apps. In reality I only have the first four lines and then include the rest from a separate file "cakephp.inc".</p> <p>A note on the line "fastcgi_param SERVER_NAME $host;". This is because some of my apps use $_SERVER['SERVER_NAME'] and it does not have the same meaning in nginx as in Apache. If youe server has several server_name(s) defined nginx will always pass the first one to php.</p> <pre><code>server { server_name cakeapp.example.com; root /var/www/vhosts/cake/app/webroot; access_log /var/log/nginx/cakeapp.access.log; error_log /var/log/nginx/cakeapp.error.log; listen 80; rewrite_log on; # rewrite rules for cakephp location / { index index.php index.html; # If the file exists as a static file serve it # directly without running all # the other rewite tests on it if (-f $request_filename) { break; } if (!-f $request_filename) { rewrite ^/(.+)$ /index.php?url=$1 last; break; } } location ~* \favicon.ico$ { expires 6m; } location ~ ^/img/ { expires 7d; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; fastcgi_param SERVER_NAME $host; } location ~ /\.ht { deny all; } </code></pre> <p>}</p> http://stackoverflow.com/questions/967774/cakephp-auth-component-login-method-failure-in-ie8-safari/1102343#1102343 0 Answer by Martin Westin for CakePHP Auth Component "login" Method Failure in IE8 + Safari Martin Westin http://stackoverflow.com/users/135484 2009-07-09T07:26:38Z 2009-07-09T07:26:38Z <p>Don't now about IE8, but Safari does block cross-domain ajax, even between "siblings" under the same top domain. E.G. You can't have app.example.com load a div using ajax from helppages.example.com. Forget cookies, I am talking just plain html loaded using ajax.</p> http://stackoverflow.com/questions/1661193/start-stop-daemon-quoted-arguments-misinterpreted/1661363#1661363 Comment by Martin Westin on start-stop-daemon quoted arguments misinterpreted Martin Westin http://stackoverflow.com/users/135484 2009-11-02T18:23:32Z 2009-11-02T18:23:32Z OK s&#229; in short the answer is: Ugly workaround? I say ugly since my real list of parameters as a wee bit longer and the end-result of splitting the variables is almost the same as hard-coding them in place. I have more like DAEMON_OPTS=&quot;-a -b 'path' -c '/usr/bin/program args' param&quot; and so on. I still thank you for the detailed explanation. I'll leave the question unanswered a while in hope of another answer. http://stackoverflow.com/questions/1661193/start-stop-daemon-quoted-arguments-misinterpreted/1661636#1661636 Comment by Martin Westin on start-stop-daemon quoted arguments misinterpreted Martin Westin http://stackoverflow.com/users/135484 2009-11-02T18:09:51Z 2009-11-02T18:09:51Z I did try that and any other quote combination I know of... not luck. http://stackoverflow.com/questions/1661193/start-stop-daemon-quoted-arguments-misinterpreted Comment by Martin Westin on start-stop-daemon quoted arguments misinterpreted Martin Westin http://stackoverflow.com/users/135484 2009-11-02T18:09:07Z 2009-11-02T18:09:07Z To clarify. I have tried a lot of the usual quotation variations. single inside double quotes, &quot;-la '/folder... double inside single quotes, '-la &quot;/folder... escaped quotes, &quot;-la \&quot;/folder...\&quot;&quot; using only backslash for each space instead, folder\ with... I vaguely imagine the problem is somehow with start-stop-daemon and it's interpretations... but that doesn't make a lot of sense either since replacing the variable on the command line yields functioning results.