Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Mark Murphy,</p> <p>1.</p> <pre><code>Failed loading /usr/lib/php5/20090626.so: /usr/lib/php5/20090626.so: cannot open shared object </code></pre> <p>*.so files are shared libraries. I would try to tackle it be (re-) installing the PHP CLI.</p> <p>2.</p> <pre><code>Could not set permissions on /var/www/app//tmp </code></pre> <p>How could the slash creep in twice? Such a folder should not exist. </p> <p><strong>Edit0:</strong> It is a bit strange, as CakePHP should work right out of the box, but maybe you really should take a look at the specified variable in app/webroot/index.php and see if you can change the CAKE_CORE_INCLUDE_PATH so that the superfluous slash vanishes.</p> <p><strong>Edit1:</strong> For general deployment there is nothing better than <a href="http://ad7six.com/2007/08/24/Production-setup-revisited.html" rel="nofollow">this</a> afaik.</p> <p><strong>Edit2:</strong> <code>cake bake help</code> returns: -app Absolute/Relative path to your app folder.</p> <p>Hence you should call either:</p> <ol> <li><code>cake bake app /var/www/&lt;your_project_name&gt;/ &lt;---- note the trailing slash</code> or</li> <li>when in <code>/var/www/</code> call <code>cake bake app &lt;just_your_project_name&gt;</code></li> </ol> <p><strong>Edit3:</strong> In a nutshell: You could download the CakePHP tar.gz and unzip it in your <code>/var/www/</code>, then rename the folder (having some weird <code>cakePHP-1234</code>... name) into the name of your application, e.g. <code>missioncontrol</code>. Then in your browser: <code>http://localhost/missioncontrol</code> , proceed as instructed. This is a very quick method to get going, but you can develop other methods according to your build process.</p> <p>After you have developed your app and intend to deploy it on a host different than your local machine, use the link provided under edit1.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload