Forum Replies Created

Viewing 15 replies - 1 through 15 (of 85 total)
  • Thread Starter Neo

    (@firefliespilots)

    Hello @markwolters , Ok, thank you very much. I have installed the plugin from github. Unfortunately it did not bring any solution. The problem is still there. All the settings still can not be activated. Neither on rocket.net nor on cloudways servers. Thank you. Greetings and have a nice weekend Jack

    Neo

    (@firefliespilots)

    Dear @markwolters i have the same conflict. 

    I can’t save the settings if I want to enable Tracking Ajax Search or other settings. Where exactly does this “wpsi_exclude_admin” function need to go in the database? Directly just in the wp option and is there generally a general solution? Since I have noticed it on different hostings and different websites even with blank themes and without plugins.

    Thank you guys for help. Cheers and have a great day you guys.

    • This reply was modified 1 year, 1 month ago by Neo.
    Neo

    (@firefliespilots)

    Dear @flector and @markwolters, i have the same conflict.

    I can’t save the settings if I want to enable Tracking Ajax Search or other settings. Where exactly does this “wpsi_exclude_admin” function need to go in the database? Directly just in the wp option and is there generally a general solution? Since I have noticed it on different hostings and different websites even with blank themes and without plugins.

    Thank you guys for help. Cheers and have a great day you guys.

    Thread Starter Neo

    (@firefliespilots)

    Dear @hesseldejong, many thanks. Have a nice day. Best regards Jack (-;

    Thread Starter Neo

    (@firefliespilots)

    Hi, as mentioned, users can not set listings with me. Listings are only set by myself in the backend. From that reason, it would make sense to create a compatibility. Gtranslate etc. is not the same as they are based differently.

    Thank you. Many greetings Neo

    Thread Starter Neo

    (@firefliespilots)

    Hi, thank you. Yes I understand that. But there can’t set user listings for example with me, only me from the backend. Many greetings Neo

    Thread Starter Neo

    (@firefliespilots)

    Hi, it’s good to hear from you. I find that very good.

    Whether it is nevertheless GDPR compliant, is unfortunately nevertheless to doubt, because it is not legally clarified nevertheless, because the IP is nevertheless sent outside the EU. See eb. new judgment from Austria regarding google anlaytics.

    It is to be assumed that it is similar here. Because either way, the consumer within the EU would have to give his consent that his IP is sent to a non-EU country. Therefore, the anonymization does not matter, because according to the GDPR, this is exactly what must not happen. So if you have to get consent from the user first as an EU company, they are unlikely to agree to it.

    I am with this tool on very firmly convinced, with other handling, many users would take and use. Because as mentioned, according to my research is the best counter tool of recaptcha and Co.

    I am also firmly convinced that even smaller prices e.g. 5€ upwards would bring an enormous amount of users. We are active in the web segment and in our experience there is no customer who would not pay a few euros for more transparency, security and privacy.

    I think here a new price / server concept would be unique.

    Thank you very much. Cheers Neo

    Neo

    (@firefliespilots)

    Hi @jokerfool, well I am not a programmer and only a designer, or project developer. But i use the plugin for very big 2 sites. One site also has a forum. I also use two other security plugins. I have not been able to find any problem after countless tests. I have also installed only the free version.

    This already does a lot without Pro. If you want to reset everything at once, it is enough to click the link from the plugin or just click the reset button.

    I will also definitely buy the Pro version for two reasons. 1. the free version is already excellent and then you can use the pro version even more. Second: Every plugin has to be created as an idea in the head first and then it has to be developed. Then it has to be developed and updated. That costs time and resources. Who should do that without money? Do you go to work without money? Free things still need to be maintained. And the plugin does for the free everything that was stated here.

    I find it very unfair as an outsider to always read such things and a pity. This is also the reason why often developers stop with your great work.

    If you have no interest in the free plugin, then rate it correctly and not ala pseudo. That would be really nice and helps the user in your search and evaluation of plugins. I always report exactly about this in my blog. The users should and must be able to form good opinions.

    Thanks Cheers

    Forum: Plugins
    In reply to: [Asgaros Forum] errors
    Thread Starter Neo

    (@firefliespilots)

    Hi, So I actually always have Patchstack (firewall) turned on in front of it with this customer. Now I have switched off Patchstack. But I will turn it on again, because I also think that these are unauthorized queries.

    Thank you and have a nice day. Cheers Neo

    Forum: Plugins
    In reply to: [wpForo Forum] Error plugin
    Thread Starter Neo

    (@firefliespilots)

    Dear @gvectorsdevs, I have copied it out here. But I have now again quickly written in manually and now it runs. Super. Do you already have a date when the update will come? Thank you

    Forum: Plugins
    In reply to: [wpForo Forum] Error plugin
    Thread Starter Neo

    (@firefliespilots)

    Hi @gvectorsdevs, no problem. (-; I have added it below. Now I have a parse error

    line 867: return rtrim( trim($dir), DIRECTORY_SEPARATOR );

    ————————————————————–

    function wpforo_write_file( $new_file, $content ) {
    $return = array( ‘error’ => ”, ‘file’ => ” );
    $new_file = wpforo_fix_dir_sep( $new_file );
    $dir = dirname( $new_file );
    if( !is_dir( $dir ) ) wp_mkdir_p($dir);
    $ifp = @fopen( $new_file, ‘wb’ );
    if( ! $ifp ) {
    if( is_resource( $ifp ) ) {
    @fclose( $ifp );
    }
    $return = array( ‘error’ => sprintf( __( ‘Could not write file %s’ ), $new_file ) );
    } else {
    @fwrite( $ifp, $content );
    fclose( $ifp );
    clearstatcache();
    // Set correct file permissions
    $stat = @stat( dirname( $new_file ) );
    $perms = $stat[‘mode’] & 0007777;
    $perms = $perms & 0000666;
    @chmod( $new_file, $perms );
    clearstatcache();
    $return[‘file’] = $new_file;
    }
    return $return;
    }

    function wpforo_fix_dir_sep($dir){
    $dir = str_replace( array('/', '\\', '\\\\'), DIRECTORY_SEPARATOR, $dir );
    return rtrim( trim($dir), DIRECTORY_SEPARATOR );
    }

    —————————————————————————–

    Parse error: syntax error, unexpected token "return" in /var/www/html/site/public_html/wp-content/plugins/wpforo/wpf-includes/functions.php on line 867
    
    Notice: is_page was called incorrectly. Conditional query tags do not work before the query is run. Before then, they always return false. Please see Debugging in WordPress for more information. (This message was added in version 3.1.0.) in /var/www/html/site/public_html/wp-includes/functions.php on line 5663
    
    Notice: is_singular was called incorrectly. Conditional query tags do not work before the query is run. Before then, they always return false. Please see Debugging in WordPress for more information. (This message was added in version 3.1.0.) in /var/www/html/site/public_html/wp-includes/functions.php on line 5663
    
    Notice: is_embed was called incorrectly. Conditional query tags do not work before the query is run. Before then, they always return false. Please see Debugging in WordPress for more information. (This message was added in version 3.1.0.) in /var/www/html/site/public_html/wp-includes/functions.php on line 5663
    
    Notice: is_search was called incorrectly. Conditional query tags do not work before the query is run. Before then, they always return false. Please see Debugging in WordPress for more information. (This message was added in version 3.1.0.) in /var/www/html/site/public_html/wp-includes/functions.php on line 5663
    • This reply was modified 2 years, 4 months ago by Neo.
    Forum: Plugins
    In reply to: [wpForo Forum] Error plugin
    Thread Starter Neo

    (@firefliespilots)

    Hi @gvectorsdevs i have it

    function wpforo_write_file( $new_file, $content ) {
       $return = array( 'error' => '', 'file' => '' );
       $new_file = wpforo_fix_dir_sep( $new_file );
       $dir = dirname( $new_file );
       if( !is_dir( $dir ) ) wp_mkdir_p($dir);
       $ifp    = @fopen( $new_file, 'wb' );
       if( ! $ifp ) {
          if( is_resource( $ifp ) ) {
             @fclose( $ifp );
          }
          $return = array( 'error' => sprintf( __( 'Could not write file %s' ), $new_file ) );
       } else {
          @fwrite( $ifp, $content );
          fclose( $ifp );
          clearstatcache();
          // Set correct file permissions
          $stat  = @stat( dirname( $new_file ) );
          $perms = $stat['mode'] & 0007777;
          $perms = $perms & 0000666;
          @chmod( $new_file, $perms );
          clearstatcache();
          $return['file'] = $new_file;
       }
    	return $return;
    }
    Forum: Plugins
    In reply to: [wpForo Forum] Error plugin
    Thread Starter Neo

    (@firefliespilots)

    Hi @gvectorsdevs,

    is not working

    Fatal error: Uncaught Error: Call to undefined function wpforo_fix_dir_sep() in /var/www/html/site/public_html/wp-content/plugins/wpforo/wpf-includes/functions.php:841 Stack trace: #0 /var/www/html/site/public_html/wp-content/plugins/wpforo/wpf-includes/wpf-hooks.php(1267): wpforo_write_file('/var/www/html/s...', 'window.wpforo_p...') #1 /var/www/html/site/public_html/wp-content/plugins/wpforo/wpf-includes/wpf-hooks.php(1302): wpforo_dynamic_phrases_register() #2 /var/www/html/site/public_html/wp-includes/class-wp-hook.php(303): wpforo_frontend_register_scripts('') #3 /var/www/html/site/public_html/wp-includes/class-wp-hook.php(327): WP_Hook->apply_filters(NULL, Array) #4 /var/www/html/site/public_html/wp-includes/plugin.php(470): WP_Hook->do_action(Array) #5 /var/www/html/site/public_html/wp-includes/script-loader.php(2083): do_action('wp_enqueue_scri...') #6 /var/www/html/site/public_html/wp-includes/class-wp-hook.php(303): wp_enqueue_scripts('') #7 /var/www/html/site/public_html/wp-includes/class-wp-hook.php(327): WP_Hook->apply_filters(NULL, Array) #8 /var/www/html/site/public_html/wp-includes/plugin.php(470): WP_Hook->do_action(Array) #9 /var/www/html/site/public_html/wp-includes/general-template.php(3015): do_action('wp_head') #10 /var/www/html/site/public_html/wp-content/themes/my-listing/header.php(8): wp_head() #11 /var/www/html/site/public_html/wp-includes/template.php(770): require_once('/var/www/html/s...') #12 /var/www/html/site/public_html/wp-includes/template.php(716): load_template('/var/www/html/s...', true, Array) #13 /var/www/html/site/public_html/wp-includes/general-template.php(48): locate_template(Array, true, true, Array) #14 /var/www/html/site/public_html/wp-content/themes/my-listing/page.php(1): get_header() #15 /var/www/html/site/public_html/wp-includes/template-loader.php(106): include('/var/www/html/s...') #16 /var/www/html/site/public_html/wp-blog-header.php(19): require_once('/var/www/html/s...') #17 /var/www/html/site/public_html/index.php(6): require('/var/www/html/s...') #18 {main} thrown in /var/www/html/site/public_html/wp-content/plugins/wpforo/wpf-includes/functions.php on line 841

    Forum: Plugins
    In reply to: [wpForo Forum] Error plugin
    Thread Starter Neo

    (@firefliespilots)

    Hi @gvectorsdevs , ok, thank you very much. I will try it right away. When is the next version coming? Thanks a lot

    Thread Starter Neo

    (@firefliespilots)

    Hello, ok. How about the errors with a lot of accesses until then. What is the load on the server with these errors? Thanks. Cheers

Viewing 15 replies - 1 through 15 (of 85 total)