Update 01 Install

ro 2024-06-12 23:28:55 +02:00
parent c02ddcee35
commit 59e64bc0f3

@ -2,7 +2,7 @@
## For Blogging ## For Blogging
If you're using Fipamo on a server to host and serve, it doesn't care what kind of web server you have. Just make sure the server points to `public/index.php` and it's all good. If you're using Fipamo on a server to host and serve, it doesn't care what kind of web server you have. Just make sure the server points to `public/index.php` and it's all good.
Once that is done, grab a copy of the latest [release](https://koodu.ubiqueros.com/are0h/Fipamo/releases) or clone `git clone https://koodu.ubiqueros.com/are0h/Fipamo.git --branch beta your-folder` (replace 'your-folder' with whatever you want) it to make it easier to update. Once you're in there run `php composer.phar install` (or just `composer install` if Composer is installed globally) to install Fipamo's dependencies. Once that is done, grab a copy of the latest [release](https://koodu.h-i.works/projects/fipamo/releases) or clone `git clone https://koodu.h-i.works/projects/fipamo.git your-folder` (replace 'your-folder' with whatever you want) it to make it easier to update. Once you're in there run `php composer.phar install` (or just `composer install` if Composer is installed globally) to install Fipamo's dependencies.
From here, you have a couple of options depending on where Fipamo is installed. If you're using it on your desktop, go into `public/index` and start up PHP's built in web server with `php -S localhost:8000` and then browse to localhost:8000/dashboard to get started with the install. If you're serving it from a web host, just go to yourcoolassdomain/dashboard. From here, you have a couple of options depending on where Fipamo is installed. If you're using it on your desktop, go into `public/index` and start up PHP's built in web server with `php -S localhost:8000` and then browse to localhost:8000/dashboard to get started with the install. If you're serving it from a web host, just go to yourcoolassdomain/dashboard.
@ -10,10 +10,10 @@ One thing to keep in mind is that Fipamo creates its own backup and they can get
To fix this you have to adjust your `upload_max_filesize` directive in your `php.ini` file. [Here's pretty good overview](https://stackoverflow.com/questions/2184513/change-the-maximum-upload-file-size) of how to make those changes without much fuss. To fix this you have to adjust your `upload_max_filesize` directive in your `php.ini` file. [Here's pretty good overview](https://stackoverflow.com/questions/2184513/change-the-maximum-upload-file-size) of how to make those changes without much fuss.
Up and running? [Learn how to use Fipamo.](https://koodu.ubiqueros.com/are0h/Fipamo/wiki/02-Usage) Up and running? [Learn how to use Fipamo.](https://koodu.h-i.works/projects/fipamo/wiki/02-Usage)
## For Dev Collaboration ## For Dev Collaboration
To contribute to Fipamo, you're going to need to grab a copy of the `develop` branch. Do that with `git clone https://code.playvicio.us/Are0h/Fipamo.git`. To contribute to Fipamo, you're going to need to grab a copy of rep0. Do that with `git clone https://koodu.h-i.works/projects/fipamo.git`.
Once you have a copy, follow the same instructions for the above 'For Blogging' section to get up and running. This branch contains the front end scripting and style pages for the Dashboard. Once you have a copy, follow the same instructions for the above 'For Blogging' section to get up and running. This branch contains the front end scripting and style pages for the Dashboard.
@ -45,6 +45,6 @@ Also it is strongly recommened to set up a ssl certificate to protect yourself i
### Updating Fipamo ### Updating Fipamo
There are two ways to update Fipamo. If you're using git, you can just go into the directory where you set up your site and do a `git pull` to get the latest. If you're not using git, just grab the latest [release](https://koodu.ubiqueros.com/are0h/Fipamo/releases) and replace your files. There are two ways to update Fipamo. If you're using git, you can just go into the directory where you set up your site and do a `git pull` to get the latest. If you're not using git, just grab the latest [release](https://koodu.h-i.works/projects/fipamo/releases) and replace your files.
Easy peasy. Easy peasy.