. .
ShallHelp

×


| Home | home
| Consumers |
| Quote |
| Licensed Professionals |
| Clients |

| EXPLORE |
| Community / Forum |
| Articles / Blogs |
| Members Chat |

| MY ACCOUNT | person
| Sign In or Register |
| Missions |
| Tech Team |

9 thoughts on “Session: Sept. 10 2020, Thursday

  1. I am taking a coffee, and Praise & Worship break 6AM.

    I started with:

    The Judgment of Babylon – (Isaiah 13:1-22) KJV

    and ended with:

    The Lord, the Only Savior – (Isaiah 45:14-25) KJV

    I noticed an error, on Isaiah 45:14, which wrote “… there is no God.”, instead of “…there is no other God.”

    I did a translation verse comparison which I added to the article at:

    Lost in Translation or Changed in Translation?

    I was an Editor in Chief from a past chapter in my life, I know I have to go through the text again so I can spot it all over again.

    When I do the initial “copy pasting” from the forum to the main pages, sometimes, I work on it so quickly that it feels like I’m playing the piano.

    Then a verse catches my eyes, and then I have to slow down, and then really scrutinize if I am actually seeing what I am reading.

    “There is no God” — WHAT???

    And then I open my KJV pocket bible, my KJV big bible, e-Sword bible, and SEE that it indeed states that in the text.

    That is when I would have to do a bible verse by verse comparison, to see and possibly correctly publish on our CLG website, what the context should have been, as printed.

    I don’t have to be a bible scholar to spot or publish what is correct, as God allows me to see and notice it.

    Will be back. 🙂 Break time.

  2. Completed at CLG Main

    Book of Isaiah.

    From
    The Idols of Babylon and the One True God – (Isaiah 46:1-13) KJV

    Up to:

    Final Judgment and Glory of the Lord – (Isaiah 66:15-24) KJV

    Links to Scripture By Topic – Isaiah

    1) All the bottom navigation links hardcoded manually for the 107 webpages

    2) Top Menu link for Isaiah

    6) Dropdown Menu link for Isaiah.

    Isaiah 107 webpages.

    462 – 107 = 355 web pages more to go 🙂

    (1,978 WP completed thus far. – Thank you Jesus.

  3. In the class-posts.php file located in wp-content/plugins/wpforo/wpf-includes folder, find the following line (line 987):

     

    Changing Code FROM: 

     $words = str_word_count($args['needle'], 1);

    in 

     if($args['needle']){
    if( in_array($args['type'], array('entire-posts', 'titles-only')) ){
    $words = str_word_count($args['needle'], 1);
    $words = array_slice($words, 0, 10);
    $words = array_map(function($w){
    return '+' . esc_sql( str_replace(array('(', ')', '*', '+', '-', '~', '<', '>', '@', '"'), '', $w) ) . '*';
    }, $words);
    $needle = implode(' ', $words);
    }else{
    $needle = esc_sql( $args['needle'] );
    }

     

     

    Changing Code TO: 

    $words = preg_split('#\s+#u', $args['needle']);

    in

     if($args['needle']){
    if( in_array($args['type'], array('entire-posts', 'titles-only')) ){
    $words = preg_split('#\s+#u', $args['needle']);
    $words = array_slice($words, 0, 10);
    $words = array_map(function($w){
    return '+' . esc_sql( str_replace(array('(', ')', '*', '+', '-', '~', '<', '>', '@', '"'), '', $w) ) . '*';
    }, $words);
    $needle = implode(' ', $words);
    }else{
    $needle = esc_sql( $args['needle'] );
    }

     

     

     

  4. Latest Message: 0 minutes ago
    ShallHelp Chat Forum : Welcome to the Chat Forum! Chat sessions are automatically erased every 60 minutes. Just select the REFRESH link above to go to the latest chat session. We are glad you are here!
    CrisW : test
    CrisW : test2 – see if the needle error is getting triggered
    CrisW :check error logs
    CrisW :it should have 4, including this if it is still not fixed. Check the error log via ftp – or via backened using server tools
    CrisW : recheck, I emptied the error logs
    CrisW :crap.. the error just moved from line 550 to line 558

  5. ShallHelp Chat Forum : Welcome to the Chat Forum! Chat sessions are automatically erased every 60 minutes. Just select the REFRESH link above to go to the latest chat session. We are glad you are here!
    CrisW : test
    CrisW : test2 – see if the needle error is getting triggered
    CrisW : check error logs
    CrisW : it should have 4, including this if it is still not fixed. Check the error log via ftp – or via backened using server tools
    CrisW : https://www.shallhelp.com/chat/
    CrisW : recheck, I emptied the error logs
    CrisW : crap.. the error just moved from line 550 to line 558
    Consultant : Test
    Consultant : Your link causes the chat area to go left to right on mobile. Can u delete the link?

  6. Also added this code below: 

     

     if (strpos($current_url, $needle) !== false) {

    return true;

    wp_register_script('sac', $resource_url, array('jquery'), $sac_version, true);
    wp_enqueue_script('sac');

    }

Comments are closed.