This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (testing)SCOTTs-Mac-Pro-2:malgorath1 scott$ ./manage.py migrate blog | |
| /Users/scott/.virtualenvs/testing/lib/python2.7/site-packages/widgy/utils.py:152: RemovedInDjango18Warning: `SelectRelatedManager.get_query_set` method should be renamed `get_queryset`. | |
| class SelectRelatedManager(models.Manager): | |
| /Users/scott/.virtualenvs/testing/lib/python2.7/site-packages/scss/__init__.py:86: RuntimeWarning: Scanning acceleration disabled (_speedups not found)! | |
| RuntimeWarning | |
| Operations to perform: | |
| Apply all migrations: blog | |
| Running migrations: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Boarding Form for {{ request.form['dog_name'] }} the {{ request.POST['dog_breed'] }} | |
| ------------------------------------------------------------------------------------ | |
| {% for field in form %} | |
| {{ field.label }}: {{ field.value }} | |
| {% endfor %} | |
| Sent from {{ request.META['REMOTE_ADDR'] }} at {% now "jS F Y H:i" %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require '../vendor/autoload.php'; | |
| require '../config.php'; | |
| session_start(); | |
| # initialize $app to contain slim framework | |
| $app = new \Slim\Slim(); | |
| # setup configurations for $app | |
| $app->config('debug', true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem env | |
| RubyGems Environment: | |
| - RUBYGEMS VERSION: 2.4.4 | |
| - RUBY VERSION: 2.1.5 (2014-11-13 patchlevel 273) [x86_64-darwin14.0] | |
| - INSTALLATION DIRECTORY: /Users/scott/.gem/ruby/2.1.5 | |
| - RUBY EXECUTABLE: /Users/scott/.rubies/ruby-2.1.5/bin/ruby | |
| - EXECUTABLE DIRECTORY: /Users/scott/.gem/ruby/2.1.5/bin | |
| - SPEC CACHE DIRECTORY: /Users/scott/.gem/specs | |
| - SYSTEM CONFIGURATION DIRECTORY: /Users/scott/.rubies/ruby-2.1.5/etc | |
| - RUBYGEMS PLATFORMS: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Illuminate\Database\QueryException thrown with message "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'updated_at' in 'order clause' (SQL: select * from `news` order by `updated_at` desc limit 3)" | |
| Stacktrace: | |
| #28 Illuminate\Database\QueryException in /home/vagrant/Code/canineharmony/vendor/laravel/framework/src/Illuminate/Database/Connection.php:625 | |
| #27 HomeController:index in <#unknown>:0 | |
| #26 Illuminate\Routing\Router:Illuminate\Routing\{closure} in <#unknown>:0 | |
| #25 PDOException in /home/vagrant/Code/canineharmony/vendor/laravel/framework/src/Illuminate/Database/Connection.php:299 | |
| #24 PDO:prepare in /home/vagrant/Code/canineharmony/vendor/laravel/framework/src/Illuminate/Database/Connection.php:299 | |
| #23 Illuminate\Database\Connection:Illuminate\Database\{closure} in /home/vagrant/Code/canineharmony/vendor/laravel/framework/src/Illuminate/Database/Connection.php:617 | |
| #22 Illuminate\Database\Connection:runQueryCallback in /home/vagrant/Code/canineharmony/vendor/laravel/framework/src/Illuminate/Database |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App; | |
| class HomeController { | |
| private $app; | |
| public function __construct() { | |
| $this->app = \Slim\Slim::getInstance(); | |
| } |
NewerOlder