Update Guide.

What’s New

CDN Support For

Social

Image

Security

Configuration

Caching

Template

Coding Improvement

Admin Panel

Error pages

Docs

Update service

We can update your website to very latest version in $10. Send me email with your purchase code at abhimanyusharma003@gmail.com

Sorry for taking this charge, we work really hard to provide updates.

No worries updates are free if you do them by your own, just follow the below guide and watch the video.

How to update.

Some important points to not in this update.

Make sure that your server has

PHP 5.5.9 or greater // very important.
GD or Imagick
Curl
Fileinfo Extension
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension

Please note that PHP 5.4 is dead we are not supporting it any more, contact your hosting provider and asks them to update your server. PHP is free they don’t have pay anything for using it. So why stay at outdated version of PHP.

!!!!!! Backup your website database and public/uploads , public/avatars and app/config folder. !!!!!!

Watch the video you will get better understanding about the update

Route::get('update', function () {
    \Illuminate\Support\Facades\Artisan::call('cache:clear');
    \Illuminate\Support\Facades\Artisan::call('route:clear');
    \Illuminate\Support\Facades\Artisan::call('config:clear');
    \Illuminate\Support\Facades\Schema::table('users', function ($table) {
        $table->string('email_confirmation')->nullable()->after('email_favorite');
        $table->string('twid')->nullable()->after('gid');
        $table->timestamp('confirmed_at')->nullable()->after('remember_token');
    });
    $users = \App\Artvenue\Models\User::where('confirmed', '=', 1)->get();
    foreach ($users as $user) {
        $user->confirmed_at = $user->created_at;
        $user->email_confirmation = null;
        $user->save();
    }
    \Illuminate\Support\Facades\Schema::table('users', function ($table) {
        $table->dropColumn('confirmed');
    });
    \Illuminate\Support\Facades\Schema::rename('reply', 'replies');
    \Illuminate\Support\Facades\Schema::rename('reply_votes', 'replies_votes');
    \Illuminate\Support\Facades\Schema::rename('notification', 'notifications');
    \Illuminate\Support\Facades\Schema::rename('report', 'reports');
    \Illuminate\Support\Facades\Schema::rename('favorite', 'favorites');
    \Illuminate\Support\Facades\Schema::rename('follow', 'follows');
    \Illuminate\Support\Facades\Schema::rename('password_reminders', 'password_resets');
    \Illuminate\Support\Facades\DB::table('migrations')->truncate();
    DB::table('migrations')->insert([
        ['migration' => '2013_09_09_122201_create_users_table', 'batch' => '1'],
        ['migration' => '2013_09_09_122550_create_images_table', 'batch' => '1'],
        ['migration' => '2013_09_10_065628_create_comments_table', 'batch' => '1'],
        ['migration' => '2013_09_10_120052_create_follows_table', 'batch' => '1'],
        ['migration' => '2013_09_14_090643_create_sitesettings_table', 'batch' => '1'],
        ['migration' => '2013_09_16_093046_create_favorites_table', 'batch' => '1'],
        ['migration' => '2013_09_16_165324_create_reports_table', 'batch' => '1'],
        ['migration' => '2013_09_21_103558_create_notifications_table', 'batch' => '1'],
        ['migration' => '2013_09_21_152334_create_replies_table', 'batch' => '1'],
        ['migration' => '2014_03_28_133937_create_blogs_table', 'batch' => '1'],
        ['migration' => '2014_04_24_165259_create_categories_table', 'batch' => '1'],
        ['migration' => '2014_07_10_185007_create_images_info_table', 'batch' => '1'],
        ['migration' => '2014_10_12_100000_create_password_resets_table', 'batch' => '1'],
        ['migration' => '2015_02_08_195447_create_comments_votes_table', 'batch' => '1'],
        ['migration' => '2015_02_08_195508_create_replies_votes_table', 'batch' => '1']
    ]);

    $users = \App\Artvenue\Models\User::all();
    foreach ($users as $user) {
        if ($user->avatar != 'user' || $user->avatar != null) {
            $user->avatar = $user->avatar . '.jpg';
            $user->save();
        }
    }

    return 'Your database is now updated';
});

here is the list that you have delete

app
bootstrap
.bowerrc
.gitattributes
.gitignore
CONTRIBUTING.md
artisan
bower.json // If exists
composer.json
gulpfile.js // If exists
phpunit.xml
readme.md
server.php

Watch the video if you stuck at any point. Also make sure to read new docs, for twitter and amazon s3 integration.

Once more..!!

We can update your website to very latest version in $10. Send me email with your purchase code at abhimanyusharma003@gmail.com

Sorry for taking this charge, we work really hard to provide updates.

No worries updates are free if you do them by your own, just follow the below guide and watch the video.