-
Notifications
You must be signed in to change notification settings - Fork 64
Can't Install #63
Comments
@kavin-90 Could you provide more details or logs? I'm unable to reproduce this issue on |
PHP 5.6.x Its Related to DB errors so you might faced it in installation. Installation show error in can't session entry, after i fix that in Database Table which FoolSlide created it success install but admin user never created same with profile. On Series Create i face Database Errors this and that column default value is not given. First Error in Installation
No User is created in Installation so on Register Page 2nd Error
**3rd Error Related to Thumbnail, Updated if you don't provide you will get Database Error in Series Create Errors 3rd Error is Important "Incorrect integer value: '' for column 'id'"**
|
Looks like the only way to replicate your problem is to have the MySQL instance configured with |
Thanks it works but i don't wanna remove I got errors on Reader Route : /admin/preferences/reader/
|
Since you don't want to disable With regards to the error you mentioned, take a look at the following
$form[] = array(
_('Settings'),
array(
'type' => 'checkbox',
'name' => 'fs_dl_options',
'value' => array(
array(
'name' => 'fs_dl_enabled',
'preferences' => 'fs_dl',
'text' => _('Enable Direct Downloads')
'dataType' => 'boolean'
),
array(
'name' => 'fs_dl_volume_enabled',
'preferences' => 'fs_dl',
'text' => _('Enable Volume Downloads'),
'dataType' => 'boolean'
)
),
'help' => _('Note: Direct downloads usually increase bandwidth usage by one-third. The issue is whether you have enough space to keep both images and ZIP archives. FoOlSlide tries to avoid this problem by using on-the-fly ZIP compression and caching.')
)
);
function sanitize($value, $dataType) {
switch ($dataType) {
case 'boolean':
return $value === null ? false : boolval($value);
default:
return $value;
}
}
$field = $item[1];
if (isset($post[$field['name']])) {
$value = sanitize($field['name'], $field['dataType']);
} else {
$value = sanitize(null, $field['dataType']);
} Don't particularly like this solution, but it should work with some modifications. |
I study FoolSlide and found it follow Form data not own array of data which cause those error because php does not add empty field in $_POST so those empty field show error I will update it :) |
I tried to install it i got DB error this and that field is default value none given.
After fix that i logged in got 404 error on admin page , DB BUGS. can't create series, can't edit series,can't create admin user(In Installation), Can't create session db entry, can't update preference DB Errors,
😢 😢 😢 😢
The text was updated successfully, but these errors were encountered: