Viewing 13 replies - 16 through 28 (of 28 total)
  • Thread Starter stavroch

    (@stavroch)

    any news?

    Plugin Support angelo_nwl

    (@angelo_nwl)

    just to narrow down the problem and help us debug the issue is it possible to try the following temporarily:

    – deactivating all other plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
    – switching to the default theme to rule out any theme-specific problems

    I’ve just cleared the whole database, theme is TwentyEleven and still nothing. The only thing that is changing after pressing Save button is URL from

    /wp-admin/edit.php?post_type=event&page=events-manager-options#general

    to

    /wp-admin/edit.php?post_type=event&page=events-manager-options#general#general

    If you wish i could give you every needed permissions if you wanted to figure it out by yourself, just mail me at t00kson(at)gmail.com

    Sorry, we’re not able to provide a service like that via these forums (it’s against forum rules to post contact and other personal information).

    Can you post a link to your site?

    Sure, this is the one with new database: https://bc.t00kie.pl
    I’m trying to turn off location – no can do :/

    Plugin Support angelo_nwl

    (@angelo_nwl)

    since we are unable to replicate this, would it be possible to enable wp_debug or check your php log to see if there’s any other error ?

    // Enable WP_DEBUG mode
    define('WP_DEBUG', true);
    
    // Enable Debug logging to the /wp-content/debug.log file
    define('WP_DEBUG_LOG', true);
    
    // Disable display of errors and warnings
    define('WP_DEBUG_DISPLAY', true);
    @ini_set('display_errors',0);
    
    // Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
    define('SCRIPT_DEBUG', true);
    
    // log php errors
    @ini_set('log_errors','On'); // enable or disable php error logging (use 'On' or 'Off')
    @ini_set('display_errors','On'); // enable or disable public display of errors (use 'On' or 'Off')
    @ini_set('error_log','/wp-content/php-errors.log'); // path to server-writable log file

    This is how my wp-config.php looks like now. Still – no visible errors, php-errors.log is empty and there is no debug.log file created.

    Maybe it works with some specific PHP version or something? I’ve tried with 5.2 and 5.4.

    The line that says

    @ini_set('display_errors',0);

    is turning off PHP errors. Can you test with that line changed to the one below?

    error_reporting(E_ALL);

    // Enable WP_DEBUG mode
    define('WP_DEBUG', true);
    
    // Enable Debug logging to the /wp-content/debug.log file
    define('WP_DEBUG_LOG', true);
    
    // Disable display of errors and warnings
    define('WP_DEBUG_DISPLAY', true);
    error_reporting(E_ALL);
    
    // Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
    define('SCRIPT_DEBUG', true);
    
    // log php errors
    @ini_set('log_errors','On'); // enable or disable php error logging (use 'On' or 'Off')
    @ini_set('display_errors','On'); // enable or disable public display of errors (use 'On' or 'Off')
    @ini_set('error_log','/wp-content/php-errors.log'); // path to server-writable log file

    like this? nothing’s change :/

    I’ve created a new database and still nothing.. so maybe some permissions issues?
    Although every other plugin works fine..

    Thread Starter stavroch

    (@stavroch)

    when will you release the new version which will be fixed this issue?

    Plugin Support angelo_nwl

    (@angelo_nwl)

    sorry no eta yet

    All I can say is that when I’ve moved my site to the other host eveything works great. So it has to be issue with server config or php config..

Viewing 13 replies - 16 through 28 (of 28 total)
  • The topic ‘Settings changes are not saved’ is closed to new replies.