Skip to content

Commit

Permalink
#25
Browse files Browse the repository at this point in the history
- use php 7.0
- use https://photolancer.zone as URL
- update NetLicensing APIKey
  • Loading branch information
r-brown committed Oct 20, 2017
1 parent 6351da1 commit a8b331e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ INVISIBLE_RECAPTCHA_DEBUG=false
LABS64_NETLICENSING_USERNAME=demo
LABS64_NETLICENSING_PASSWORD=demo
# obtained via https://go.netlicensing.io/console/v2/content/vendor/apiaccess.xhtml
LABS64_NETLICENSING_APIKEY=73ed204b-155f-4513-a349-77d34774ccaf
LABS64_NETLICENSING_APIKEY=15542083-93d6-46d8-9955-d74d50eb99a1
LABS64_NETLICENSING_SECURITY_MODE=APIKEY
LABS64_NETLICENSING_PRODUCT_NUMBER=LB-DEMO
# Demo product module
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ _Laravel Boilerplate_ provides a very flexible and extensible way of building yo

## System Requirements
To be able to run Laravel Boilerplate you have to meet the following requirements:
- PHP > 5.6.4
- PHP > 7.0
- PHP Extensions: PDO, cURL, Mbstring, Tokenizer, Mcrypt, XML, GD
- Node.js > 6.0
- Composer > 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion resources/assets/admin/js/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
success: function (response) {
var html = '<ul>';

var href = 'http://photolancer.zone/photos';
var href = 'https://photolancer.zone/photos';

$.each(response, function () {
html += '<li><a href="' + href + '/' + this.slug + '/detail" target="_blank"><img src="' + this.thumbnails.file.photos.small + '" alt="' + this.name + '"/></a></li>';
Expand Down
4 changes: 2 additions & 2 deletions resources/views/admin/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
<div class="row x_title">
<div class="col-md-6">
<h3>
{!! __('views.admin.dashboard.sub_title_5',['href'=>'http://photolancer.zone']) !!}
{!! __('views.admin.dashboard.sub_title_5',['href'=>'https://photolancer.zone']) !!}
</h3>
</div>
</div>
Expand Down Expand Up @@ -263,4 +263,4 @@
@section('styles')
@parent
{{ Html::style(mix('assets/admin/css/dashboard.css')) }}
@endsection
@endsection

0 comments on commit a8b331e

Please sign in to comment.