An AJAX/PHP webcomic page built with CodeIgniter (under development)
- make a better layout for comics home view
- admin: user management
- admin: add titles to pages
- admin: comic page / cover hover?
- comic view: fullscreen image
- comic view: comic download button?
- comic view: select page from dropdown / archive view
- hande weird filenames like "blah.jpg-100"
Just a small database setup and a few config modifications are needed
Open and modify application/config/database.php after running the database script supplied in "dbdump" to match your database setup
Add yourself to the users table with the role as "admin"
If you want to upload a lot of files at once (or big ones), you can change some things in php.ini
upload_max_filesize = 14M
max_file_uploads = 200
post_max_size = 14M
Set the encryption_key in application/config/config.php
$config['encryption_key'] = 'somethingelse';
If you're using Linux, open /etc/apache2/apache2.conf and change to
AllowOverride All
then enable apache mod rewrite
sudo a2enmod rewrite
and restart Apache
sudo service apache2 restart
Also, set permissions for uploads directory to 777
sudo chmod -R 777 uploads
This project is licensed under the MIT License - see the LICENSE file for details