Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

edival

About

Username
edival
Joined
Visits
279
Last Active
Roles
Member

Comments

  • Definitely worthwhile then.
  • I'll take a look. Thank you. The purifier.php config file is new, isn't it.
  • Yes! That worked. Thank you. I kept putting the module_name into the module_name spot instead of thinking it was the key 🤦‍♂️ I adjusted the code to be even simpler since all I want is the default value to be no. class My_blog_posts_model ext…
  • That sounds like the optimal solution, but I'm having a hard time getting the system to see My_blog_posts_model.php in /fuel/applications/models/ I've searched for the proper technique to overwrite the Blog module specifically, but no luck. He…
  • It doesn't seem to work. I set it as FALSE and turned the Settings-> Blog -> Allow Comments as checked and it makes the radio select yes by default. If the checkbox is unchecked it hides the option completely. If there's nothing built-in, I c…
  • No, that allows comments but turns them on by default. I want comments allowed, but turned off by default. Thanks
  • Interesting. That helps a lot. Thank you It's been a while since I worked in Fuel so just need to refresh my mind. I work in CI a lot, but Fuel is just different enough to forget the important parts
  • Is there a better way to do this then? This is all that I'm doing right now: <?php $posts = $this->fuel->blog->get_recent_posts(); ?>
    <?php print_r($posts); $this->db->debug_query(); ?> I couldn't find anything …
  • Fantastic, I'll look into this! I didn't even know that was an option.
  • I'm not sure I understand. Is there a walkthrough on how to apply that? I'm extremely curious how that works.
  • Hi @admin, I've updated to the new version of Fuel 1.4.7 and now seeing the following messages I thought you might like to look into for PHP 7.4. No rush for me, I can keep using 7.3 or 7.2 for now. Severity: 8192 Message: implode(): Passing glu…
  • @admin, awesome I see the new version in git! Thanks so much for addressing this.
  • I just got this same thing with the latest version of Fuel. Once I changed /fuel/codeigniter/libraries/Upload.php line 883 to: public function is_allowed_filetype($ignore_mime = TRUE) It worked fine. It returns false at the last return which me…
  • It looks like a new bug has surfaced with line 327 in fuel\modules\fuel\controllers\Module.php $url = fuel_url("'.$this->module_uri.'/delete/".$cols[$CI->model->key_field()]); Needs to be changed to: $url = fuel_url($this->module_ur…
    in PHP 7.2 Comment by edival May 2018
  • My apologies, I was expecting something different so I didn't fully read your comment. I applied that fix and with no other adjustments that error is gone. Thank you
    in PHP 7.2 Comment by edival May 2018
  • I updated the files that had been most recently modified which include: * /fuel/modules/fuel/libraries/parser/Fuel_dwoo_parser.php * /fuel/modules/fuel/libraries/Fuel_custom_fields.php I noticed you updated the following within the last co…
    in PHP 7.2 Comment by edival May 2018
  • Yes, that is correct, the exact same error message.
    in PHP 7.2 Comment by edival May 2018
  • It seems I'm still getting the same error message with the latest updates. Here is the code that is showing the error:
    <?php $bottom = get_bottom_info(); ?>
    <…
    in PHP 7.2 Comment by edival April 2018
  • I found that the Fuel cache was causing it so I wouldn't see the errors. I've cleared the cache and the errors re-appear. I'm going to implement your fix and make sure the errors are gone now.
    in PHP 7.2 Comment by edival April 2018
  • Yes, those are set. As you saw in the error message I posted earlier: Message: The each() function is deprecated. This message will be suppressed on further calls So, it doesn't look like it'll show the error to me again. I need a way…
    in PHP 7.2 Comment by edival April 2018
  • Do you know how I can re-enable the suppressed deprecated errors? I couldn't find a way. I'd be happy to help if I can make them show up again.
    in PHP 7.2 Comment by edival April 2018
  • It looks like the spacing thing happens when an error shows up. If there are no PHP errors, the script tags are shown correctly. I just need to make sure I go to the website and acknowledge the each() deprecated error once per page when I update to…
    in PHP 7.2 Comment by edival April 2018
  • It's fun when they decide to deprecate useful features eh?
    in PHP 7.2 Comment by edival April 2018
  • Yes, that's just the beginning of the code. The spacing in the script ends at the
    in PHP 7.2 Comment by edival April 2018
  • The $l_delim warnings have been taken care of, however, this popped up next: A PHP Error was encountered
    Severity: 8192
    Message: The each() function is deprecated. This message will be suppressed on further calls
    Filename: Dwoo/C…
    in PHP 7.2 Comment by edival April 2018
  • Hi, thanks for that fix! Here is what the same code should look like: function maskIt($element) {
    in PHP 7.2 Comment by edival April 2018
  • Interesting, it's not doing it to all the pages, only the front page. Any clue what could be causing it? I put a <?php die(); ?> at the bottom of my footer block view file and it fixed this issue but created new issues with various tags, ob…
    in PHP 7.2 Comment by edival April 2018
  • The beautiful website for the hamlet of Nordegg in Alberta, Canada: http://nordeggliving.ca
  • This is also very weird. It seems that everything within my header view between tags is looking like this:
    f u n c t i o n m as k I t ( $ e l e m e n t ) { Nothing else looks like this on the page, just the code between the tags. …
    in PHP 7.2 Comment by edival April 2018
  • Hi! This is great, but I've noticed a "Notice" error you might want to be aware of: A PHP Error was encountered
    Severity: Notice
    Message: Undefined variable: l_delim
    Filename: parser/Fuel_dwoo_parser.php
    Line Number: 1…
    in PHP 7.2 Comment by edival April 2018