Update Guide

Note: If you are installing the script for the first time you don't need to apply this update.

Important: We are not going to update your application, ever time a new update is released. You have to update it yourself own. So keep the backup copy always.

What's New

How to update

1. Login to FTP account.

2. Adding/Replacing some important files

[Add] app/artvenue/events ( folder )

[Replace] app/artvenue/repository/ImagesRepository.php

[Replace] app/controller/ImageController.php

[Replace] app/controller/MostController.php

[Replace] app/filter.php

[Replace] app/routes.php

[Delete and Replace] vendor ( folder )

3. Updating theme files

All theme files are in app/views folder

[Replace] app/views/gallery ( folder )

[Replace] app/views/image ( folder )

[Replace] app/views/master/navbar.blade.php ( file )

[Replace] app/views/user ( folder )

4. Updating the database

Place the below code in app/routes.php and visit yoursite.com/update delete the code after success message

Route::get('update',function(){
Schema::table('images', function($table)
{
$table->integer('views')->default(0)->after('type');
});

return 'Success';
});

List of files modified.

All files that are modified or added is provide in files to replace folder

Some tips