-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recipe for making it work-ish with php8 #569
Comments
I got it to php 8.1.23 with these additional changes:
|
I have opened a pull request fixing all issues i've found. Changes from your comments are also included. Captcha works too. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I followed these steps to get rid of all the errors in php8. Hope I didn't leave anything out.
/application/config/stikked.php
#36 $config['db_driver'] = 'mysqli';
/system/core/Input.php
#568 $which = FILTER_DEFAULT;
/application/libraries/Carabiner.php
#466 private function _asset($type, $dev_file, $prod_file = '', $combine = TRUE, $minify = TRUE, $media = 'screen', $group = 'main')
/system/libraries/Pagination.php
#525 if ( ! ctype_digit(strval($this->cur_page)) OR ($this->use_page_numbers && (int) $this->cur_page === 0))
Also, use google reCaptcha v2 - I was unable to make the old builtin captcha method to work.
The text was updated successfully, but these errors were encountered: