Udar Gromov

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • in reply to: nodemon crashes with error EADDRINUSE #4248

    Udar Gromov
    Keymaster

    The real problem for this error EADDRINUSE is not the port. The real problem was the old version of NODE.JS that was not working well with all the latest version of NODEMON installed via NPM.

    in reply to: Photo import settings in Windows 8 #3766

    Udar Gromov
    Keymaster

    This works if you have something to import.

    But how to change Photo import options if there is nothing to import?

    I could not find a way to open “Import Settings” dialog directly with a shortcut. Saw I had to modify Registry settigns directly with *.REG file.

    If you need to change your import location every January 1 (to change year folder), you can find you current settings at . . .

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Photo Acquisition\Camera

    . . . and save them into a file. Each year on Jannuary 1 your would replace old year with a new year and merge REG fiel back into registry. Luckily this particular REG manipulation allows you to search for 2015 and replace it with 2016. Clumsy, ugly, but it works.

    Not so for Word and Excel default data directories. For same reason they a recorded in HEX format in Registry – of course, for secrecy. You would use the same procedure, but you have to be much more careful and attentive. Year 2015 is recorded in registry as:

    32,00,30,00,31,00,35,00

    To change this number to 2016 all you need to do is to change 35 to 36. Wow!


    Udar Gromov
    Keymaster

    Problem solved using free NetBeans IDE 6.9.1 with Xdebug 2.1.0. Thank you!

    All I had to do was to add one line of code to ‘bbpressmy-templatesMYfunctions.php’ file:

    ‘add_filter( ‘pre_option_gmt_offset’,’wp_timezone_override_offset’ );’


    Udar Gromov
    Keymaster

    A TEMP solution for this problem is to hard-coded your offset fix in

    wp-includesformatting.php:

    // ***** 2011-03-08 TU 23:09  Use -5, if no offset returned *****
    // $string_localtime = gmdate($format, $string_time +
    get_option('gmt_offset')*3600);
    $myOffset = (get_option('gmt_offset'))? get_option('gmt_offset'): -5;
    $string_localtime = gmdate($format, $string_time + $myOffset*3600);


    Udar Gromov
    Keymaster

    I started to dig dipper. Function depends on GMT offset returned by get_option(‘gmt_offset’). When called from bbPress this function returns nothing. As a result get_date_from_gmt() always returns GMT time.

    Here is a chart:

    function get_date_from_gmt() is in wp-includesformatting.php

    function get_option() is in wp-includesfunctions.php

    in reply to: bbPress Latest Developments -1.0.3 is Out #2365

    Udar Gromov
    Keymaster

    Bad news – little was fixed in a new release.

    Still the same:

    – search by Forum doesn’t filter and

    – Relevant posts links still pointing to an generic page (topic.php#post-)

    – `<il>’ still kills topic formatting in IE

    What is now working:

    – Trying to find any documentation on what was actually fixed in this release? [19:22]

    – Menu at the bottom of “topic.php” is no longer wrapping – Fixed

    in reply to: bbPress Latest Developments -1.0.3 is Out #2364

    Udar Gromov
    Keymaster

    My Current Problems with bbPress are:

    – Relevant Links in search results are broken

    – Search by Forum is not filtering

    – get_date_from_gmt() always return GMT time if called from bbPress

    – Clarify error message, if Topic Title is blank

    – tags <li> without <ul> are ruining page format in IE


    Udar Gromov
    Keymaster

    Just fixed this problem for you.

    There is even an article on how to fix these type of problem in the future:

    XML Parsing Error

    in reply to: Shortcut to enable Excel 2007 macros #2358

    Udar Gromov
    Keymaster

    I found a different solution.

    Instead of fighting with this option over and over again, you can create a Digital Certificate for VBA and share it Between Several PC(s).

    I just finished an article here, and tested it on Windows 7 and Windows XP.

    in reply to: Close Excel 2007 with one click #2357

    Udar Gromov
    Keymaster

    Solution: Add an “Exit” button to your QAT in Excel.

    Details:

    QAT is Quick Access Toolbar. It is located in the upper left corner of Excel window, and contains your favorite one-click operations.

    “Exit” button looks like an over-sized letter X.

    If you click this button instead of application X in the upper right corner, you will close Excel in one click.

    in reply to: Your FAVICON.ICO doesn't work #2353

    Udar Gromov
    Keymaster

    STABILIZATION

    Both WEB03 and AMAZON sites are working. Finding some small problems and errors:

    (01) FAVICON.ICO doesn’t work because of type forwarding. This will be fixed in a few days, when we are back to DNS record.

    (02) bbPress header loading jquery.js from 192.168.0.188 – will be fixed next week.

    in reply to: Windows Server 2008 R2 and Windows 7 Enterprise #2347

    Udar Gromov
    Keymaster

    Problem with W2K8 R2 is that it only gives 10 days to activate in manual and 3 day to activate in automatic mode.


    Udar Gromov
    Keymaster

    Solution Found:

    Remark out line

    require_once(dirname(__FILE__) . '/../../wp-load.php');

    from ‘bb-config.php’

    Activate a plugin.

    Reactivate the line.

    in reply to: All ' and " get replaced by ' and " #2351

    Udar Gromov
    Keymaster

    This line of code definitely causes the problem that described on Internet as:

    “all apostrophes and quotation marks are prefixed with backslashes”.

    I liked the solution with writing a new plugin with this code in it:

    <?php
    /* Plugin Name: Strip Slashes */
    add_filter('pre_topic_title', 'stripslashes', 40);
    add_filter('pre_post', 'stripslashes', 40);
    add_filter('bb_add_topic_tags', 'stripslashes', 40);
    ?>

    Does it work? – Yes!

    in reply to: All ' and " get replaced by ' and " #2350

    Udar Gromov
    Keymaster

    It is possible that problem is with one line of code added to’ bb-config.php’

    Now I took it out, and reloaded the page …

    require_once(dirname(__FILE__) . '/../../wp-load.php');

Viewing 15 posts - 1 through 15 (of 18 total)