Sequenzia LTS (MyImouto LTS - ACR Rev.) - Mirror http://code.acr.moe/kazari/sequenzia
Go to file
2013-12-07 15:35:14 -05:00
app fixed User::is_level... methods when anonymous 2013-12-06 05:13:03 -05:00
config more changes to advertisements 2013-12-04 15:19:11 -05:00
db Installation is now made using CLI. 2013-12-07 15:35:14 -05:00
lib fixed some GIF thumbnails resulting in "corrupt" images. 2013-12-06 14:02:47 -05:00
log more files 2013-10-26 22:34:21 -05:00
public Installation is now made using CLI. 2013-12-07 15:35:14 -05:00
script/daemons more files 2013-10-26 22:34:21 -05:00
tmp more files 2013-10-26 22:34:21 -05:00
vendor more updating 2013-11-08 11:47:26 -05:00
.gitignore more updating 2013-11-08 11:47:26 -05:00
composer.json Installation is now made using CLI. 2013-12-07 15:35:14 -05:00
install.php Installation is now made using CLI. 2013-12-07 15:35:14 -05:00
LICENSE license, composer config 2013-10-27 00:35:20 -05:00
README.md updated readme 2013-12-01 21:26:48 -05:00

MyImouto

MyImouto is a port of Moebooru to PHP and MySQL. In order for this to be an actual port (or as close as possible), MyImouto uses a custom framework that is based on Ruby on Rails, thus the code from Moebooru is transcribed to PHP with some modifications here and there to fit the target language and framework.

MyImouto features some changes and additions. More details can be found in the Wiki.

Requirements

  • Requires PHP 5.4+. It was developed under PHP 5.4.7 and MySQL v5.5.27.
  • Must have PHP libraries are GD2 (for image processing), PDO (database) and cURL (for both Image search and Search external data features).
  • Recommended libraries are Imagick and Memcached.
  • If running under Apache, the Rewrite mod must be enabled. Also, to serve gzipped assets (css and js files), the Headers mod is needed.
  • Both Git and Composer are needed for installation/update. How to install Composer can be found here and/or here.

Installation

Go to the location where you want MyImouto to be installed, then clone the repo, then install dependencies:

git clone https://github.com/myimouto/myimouto
cd myimouto
composer install
  • Wait for Composer to download MyImouto and all its dependencies. After that, wait a little longer as the asset files will be compiled.
  • Point the document root of your web server to the /public folder.
  • Create the database for the booru.
  • Create config/config.php and config/database.yml.example by copying their respective ".example" files.
  • Set your database configuration in config/database.yml.
  • Set your MyImouto configuration in config/config.php (read the config/default_config.php file to see the available options). For the system for work correctly only the server_host and url_base options are the most important.
  • If you're not accessing the site locally, list the IP address you'll connect from in the 'safe_ips' array in install/config.php.
  • Go to your site to complete the installation. After installation is completed, you may delete the install folder.
  • After installation is completed, run php config/boot.php db:migrate to run database migrations.

Updating

Every time you update the files with git remote update or something, also run composer update to update dependencies, specially for the framework, and also php config/boot.php db:migrate to run database migrations.

Troubleshooting

Access denied for xxx.xxx.xxx.xxx

If this is all you see when you go to your booru to complete the installation, the problem is that the IP address you're connecting from isn't listed under the allowed IP addresses.

You simply need to allow the IP address you see in the notice. Go to install/config.php and look for:

'safe_ips' = [
  '127.0.0.1',
  '::1',
]

Enter the IP address you got in the notice in a new line, like this:

'safe_ips' = [
  '127.0.0.1',
  '::1',
  'xxx.xxx.xxx.xxx'
]

Now refresh the page.

Parse error: syntax error, unexpected '[' in ...

If you see this error, it means you're running PHP 5.3 or lower. You have to upgrade to PHP 5.4 or higher.