View Single Post
Author Message
404UserNotFound
BANNED
Join Date: Dec 2011
Old 09-03-2013 , 14:55   Installing latest SourceBans from the Github
Reply With Quote #1

So I'm installing the latest SourceBans from the GitHub, and the installation screen's height is a tad off, which cuts off the last two items in the checklist ("Runtime Folder Writable (/application/runtime)" and "Database Config Writable (/application/config/sourcebans.php)" checks)

Here's the CSS fix:

Change this:
Code:
.step, .slider {
    height: 400px;
    overflow: hidden;
    width: 714px;
}

.buttons {
    bottom: 83px;
}

To this:
Code:
.step, .slider {
    height: 445px;
    overflow: hidden;
    width: 714px;
}

.buttons {
    bottom: 54px;
}



As well, it's looking to check the "/assets" and "/demos" folder to see if they're writable.....except they don't seem to exist.

Was I supposed to keep the old SourceBans install? I can't go forward in the installation because of the missing folders from the old installation.

I did manage to go forward by manually creating both folders and CHMOD'ing them to 777.

Last edited by 404UserNotFound; 09-03-2013 at 14:59.
404UserNotFound is offline