Index of /Fundme v5.5/Upgrades/Update-v4.4/

NameLast ModifiedSize
UpParent Directory
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <link rel="icon" href="../Updates from v1.1 to v3.5/assets/images/favicon.png"> <title>Guide upgrade to Laravel 8</title> <!-- Bootstrap core CSS --> <link href="../Updates from v1.1 to v3.5/assets/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom styles for this template --> <link href="../Updates from v1.1 to v3.5/assets/css/styles.css" rel="stylesheet"> <link href="../Updates from v1.1 to v3.5/assets/css/prism.css" rel="stylesheet"> <link href="../Updates from v1.1 to v3.5/assets/css/prism-line-highlight.css" rel="stylesheet"> <link href="../Updates from v1.1 to v3.5/assets/css/all.min.css" rel="stylesheet"> <link href='https://fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css' /> </head> <body> <main role="main" class="container"> <div class="header-title"> <p class="lead">Update v4.4</p> <h1>Guide upgrade to Laravel 8</h1> <p class="lead">Fundme Crowdfunding Platform</p> </div> <div class="row"> <div class="col-md-12"> <h2 class="title2">Step by Step</h2> <div class="alert alert-info" role="alert"> If you are downloading for the first time you should not perform these steps. </div> <ul class="list-cgl"> <li class="title-list">Requirements:</li> <li>PHP &gt;= 7.4.0</li> <li>MySQL 5.6</li> <li>BCMath PHP Extension</li> <li>OpenSSL PHP Extension</li> <li>PDO PHP Extension</li> <li>Mbstring PHP Extension</li> <li>Tokenizer PHP Extension</li> <li>XML PHP Extension</li> <li>Ctype PHP Extension</li> <li>JSON PHP Extension</li> <li>cURL</li> <li>Fileinfo PHP Extension</li> </ul> <ul class="list-cgl"> <li class="title-list">First steps</li> <li>Create a folder on your server for example called <code>_NEW</code></li> <li>Upload the files found inside the <code>Script</code> folder to the folder you just created on your server <code>_NEW</code></li> <img class="img-fluid my-3" src="../Updates from v1.1 to v3.5/assets/images/upgrade/01.jpg"> <li>Do not delete the files that you will copy below because you will lose all the changes you have made.</li> <li>You should only copy the files from your current site to the folders mentioned below.</li> </ul><!-- /.ul list-cgl --> <div class="alert alert-warning" role="alert"> <strong>IMPORTANT:</strong> If you have any questions to update or do not know how to do it, contact me before you start, once you have made the changes it can not be reversed. You must copy the files from your current site to the folder you created with the new version. </div> <ul class="list-cgl affected-files"> <li class="title-list"><code><i class="fas fa-folder-open"></i> Root directory</code></li> <div class="alert alert-warning" role="alert"> You must copy the data of your App Name, App Url, database, email, captcha and social login in the .env file located in the <strong>_NEW</strong> folder </div> <div class="alert alert-sm alert-warning" role="alert"> <i class="fas fa-exclamation-triangle"></i> <strong>IMPORTANT:</strong> If you have other variables in your .env file you must also copy them. </div> <li class="title-list">App Name</li> <pre class="line-numbers"><code class="language-markup">APP_NAME="Fundme"</code></pre> <li class="title-list">App Url</li> <pre class="line-numbers"><code class="language-markup">APP_URL=http://localhost</code></pre> <small class="form-text text-muted"> Don't put a slash at the end of the url </small> <li class="title-list">Database</li> <pre class="line-numbers"><code class="language-markup">DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=DB DB_USERNAME=USER DB_PASSWORD="PASS"</code></pre> <li class="title-list">Mail Driver</li> <pre class="line-numbers"><code class="language-markup">MAIL_MAILER=sendmail MAIL_HOST=smtp.mailtrap.io MAIL_PORT=2525 MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null MAIL_FROM_ADDRESS=no-reply@miguelvasquez.com</code></pre> <li class="title-list">reCAPTCHA</li> <pre class="line-numbers"><code class="language-markup">INVISIBLE_RECAPTCHA_SITEKEY=YOU_KEY INVISIBLE_RECAPTCHA_SECRETKEY=YOU_SCRETKEY</code></pre> <li class="title-list">Set Timezone</li> <pre class="line-numbers"><code class="language-markup">TIMEZONE=UTC</code></pre> <li class="title-list">Social Login</li> <pre class="line-numbers"><code class="language-markup">FACEBOOK_CLIENT_ID= FACEBOOK_CLIENT_SECRET= GOOGLE_CLIENT_ID= GOOGLE_CLIENT_SECRET=</code></pre> <div class="alert alert-sm alert-warning" role="alert"> <i class="fas fa-exclamation-triangle"></i> <strong>IMPORTANT:</strong> Place all data without spaces </div> <li class="title-list"><code><i class="fas fa-folder-open"></i> <em>app</em></code></li> <ul> <li>Copy the <code>Models</code> folder of your current site</li> <img class="img-fluid mb-2" src="../Updates from v1.1 to v3.5/assets/images/upgrade/02.jpg"> <img class="img-fluid" src="../Updates from v1.1 to v3.5/assets/images/upgrade/03.jpg"> <li>Copy the <code>app/Http/Controllers</code> folder of your current site</li> <img class="img-fluid" src="../Updates from v1.1 to v3.5/assets/images/upgrade/04.jpg"> </ul> <li class="title-list"><code><i class="fas fa-folder-open"></i> <em>public</em></code></li> <ul> <li>Copy all the folders from your current site</li> <img class="img-fluid" src="../Updates from v1.1 to v3.5/assets/images/upgrade/06.jpg"> </ul> <li class="title-list"><code><i class="fas fa-folder-open"></i> <em>resources</em></code></li> <ul> <li>Copy the folder <code>resources/lang</code> of your current site</li> <li>Copy the folder <code>resources/views</code> of your current site</li> <img class="img-fluid" src="../Updates from v1.1 to v3.5/assets/images/upgrade/07.jpg"> </ul> <li class="title-list"><code><i class="fas fa-folder-open"></i> <em>routes</em></code></li> <ul> <li>Open the file <code>routes/web.php</code> of your current site, And put the following line <code>use Illuminate\Support\Facades\Route;</code> at the beginning of the file:</li> <pre class="line-numbers" data-start="5"><code class="language-php">&lt;?php use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | This file is where you may define all of the routes that are handled | by your application. Just tell Laravel the URIs it should respond | to using a Closure or controller method. Build something great! | */ </code></pre> <li> After adding the line, save and copy to the <code>_NEW/routes</code> folder </li> </ul> </ul><!-- /.ul list-cgl --> <hr /> <p> Once all the folders and files have been copied, create a new folder called <code class="font-weight-bold">_backup</code> there will move all the files of your current site as backup, after you move all the files, move all the files of the new folder where I copy the aforementioned files . There should not be any problem. </p> <img class="img-fluid mb-2" src="../Updates from v1.1 to v3.5/assets/images/upgrade/08.jpg"> <img class="img-fluid mb-4" src="../Updates from v1.1 to v3.5/assets/images/upgrade/09.jpg"> <div class="alert alert-warning mb-4" role="alert"> <strong>IMPORTANT:</strong> After copying all files, change the password of the database user. </div> <div class="alert alert-warning mb-5" role="alert"> <strong>IMPORTANT:</strong> If after updating you have a <strong>500 error</strong>, make sure you have <strong>PHP 7.2 or higher</strong>, or if you have this error: <strong>The server requested authentication method unknown to the client...</strong> just change the password of the database user. My recommendation is to change the password of the database user to avoid problems. </div> <hr /> <div class="card-deck"> <div class="card" style="width: 18rem;"> <a href="https://miguelvasquez.net/product/16/paystack-payment-gateway-for-fundme" target="_blank"> <img class="card-img-top" src="../Updates from v1.1 to v3.5/assets/images/paystack-fundme.png"> </a> <div class="card-body"> <h5 class="card-title">Paystack Payment Gateway for Fundme</h5> <a href="https://miguelvasquez.net/product/16/paystack-payment-gateway-for-fundme" target="_blank" class="btn btn-sm btn-success"><i class="fas fa-shopping-cart"></i> Buy now</a> </div> </div> <div class="card" style="width: 18rem;"> <a href="https://codecanyon.net/item/razorpay-payment-gateway-for-fundme/26416408" target="_blank"> <img class="card-img-top" src="../Updates from v1.1 to v3.5/assets/images/razorpay-fundme.png"> </a> <div class="card-body"> <h5 class="card-title">Razorpay Payment for Fundme</h5> <a href="https://codecanyon.net/item/razorpay-payment-gateway-for-fundme/26416408" target="_blank" class="btn btn-sm btn-success"><i class="fas fa-shopping-cart"></i> Buy now</a> </div> </div> <div class="card" style="width: 18rem;"> <a href="https://codecanyon.net/item/sponzy-support-creators-content-script/28416726" target="_blank"> <img class="card-img-top" src="../Updates from v1.1 to v3.5/assets/images/sponzy.jpg"> </a> <div class="card-body"> <h5 class="card-title">Sponzy - Support Creators Content Script</h5> <a href="https://codecanyon.net/item/sponzy-support-creators-content-script/28416726" target="_blank" class="btn btn-sm btn-success"><i class="fas fa-shopping-cart"></i> Buy now</a> </div> </div> </div><!-- card group --> <hr /> <div class="text-center"> <p class="lead">Any problem or doubt send me an email to <strong>support@miguelvasquez.net</strong> <br/> Do not forget to visit <strong><a href="https://miguelvasquez.net/?utm_source=updategostockv29&utm_medium=v29" target="_blank">miguelvasquez.net</a></strong></p> </div> </div><!-- /.col-md-12 --> </div><!-- /.row --> </main><!-- /.container --> <footer class="footer"> <div class="container"> <span class="text-muted">&copy; Miguel Vasquez - Web Design and Development All Rights Reserved. <a href="https://www.facebook.com/MiguelVasquezWeb"><i class="fab fa-facebook"></i></a> <a href="https://twitter.com/MigueVasquezweb"><i class="fab fa-twitter"></i></a> <a href="https://instagram.com/miguelvasquezweb"><i class="fab fa-instagram"></i></a> </span> </div> </footer> <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script type="text/javascript" src="../Updates from v1.1 to v3.5/assets/js/jquery-3.3.1.min.js"></script> <script type="text/javascript" src="../Updates from v1.1 to v3.5/assets/js/bootstrap.min.js"></script> <script type="text/javascript" src="../Updates from v1.1 to v3.5/assets/js/prism.js"></script> <script type="text/javascript" src="../Updates from v1.1 to v3.5/assets/js/prism-line-highlight.js"></script> <script type="text/javascript" src="../Updates from v1.1 to v3.5/assets/js/jquery.scrollTo.min.js"></script> </body> </html>
Proudly Served by LiteSpeed Web Server at sabbalfoundation.com.ng Port 443