CDN Support For
Social
Image
Security
Configuration
Caching
Template
Coding Improvement
Admin Panel
Error pages
Docs
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.
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
Extract Main.zip
on your computer.
Open app/HTTP/routes.php
Paste the below code in it. Just after <?php
tags
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';
});
Save the file.
Login to you cPanel account.
Visit app/config
folder
Provide details from app.php
, mail.php
, database.php
anhskohbo/no-captcha/config.php
and artdarek/oauth-4-laravel/app.php
to .env
file. Please watch the attached video to know more
After providing the details create a zip
of all the file on your system. ( Do but do not select the public
folder )
Delete all the files from your server but not the public folder.
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
Upload the zip
that we have create just on local computer extract it.
After that visit your public
folder
Backup public/uploads
, public/avatars
Rename uploads
to images
Rename avatar
folder to avatars
Now delete everything from public
folder but not the avatars
and images
folder.
Upload the content of public
folder from extracted Main.zip
Move the re-named folders avatars
and images
folder to uploads
Visit example.com/update
Remove the code that we have place in the step-2 after success
You are done.
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.