Jump to content

Rhett

Administrator
  • Posts

    1,399
  • Joined

  • Last visited

  • Days Won

    33

Posts posted by Rhett

  1. Step 1: Uninstall any of these updates in: Control Panel -> Uninstall a Program -> View Installed Updates.

    • KB2966826
    • KB2966827
    • KB2966828

    Step 2: Then, retry installing the feature using the GUI (Server Manager), command line (dism), or PowerShell (Install-WindowsFeature)


    Additional information on enabling features


    Method 1: Using GUI - Server Manager

    Server Manager -> Add Roles and Features -> Role-based or feature-based installation -> Select Server -> Features -> .NET Framework 3.5 Features

    Method 2: Using Command Line - dism

    dism : Using local installation media/Windows update/WSUS

    dism /online /enable-feature /featurename:NetFx3 /all

    DISM: With a local 'Alternate Source'

    dism /online /enable-feature /featureName:NetFx3 /all /limitAccess /source:drive_letter:\sources\sxs

    Please replace drive_letter with the drive letter of your local drive where the installation files reside

    DISM: With a remote 'Alternate Source'

    dism /online /enable-feature /featurename:netfx3 /all /LimitAccess /source:\\share_name\sources\sxs

    Please replace share_name with the the UNC of the shared location where the installation files reside

    Method 3: Using PowerShell

    PowerShell: Using local installation media/Windows update/WSUS

    Install-WindowsFeature –name NET-Framework-Core

    PowerShell: With a local 'Alternate Source'

    Install-WindowsFeature –name NET-Framework-Core –source x:\sources\sxs /source:drive_letter:\sources\sxs

    Please replace drive_letter with the drive letter of your local drive where the installation files reside

    PowerShell: With a remote 'Alternate Source'

    Install-WindowsFeature –name NET-Framework-Core –source \\share_name\sources\sxs

    Please replace share_name with the the UNC of the shared location where the installation files reside

    Helpful Resources:

    http://www.askvg.com/fix-0x800f0906-and-0x800f081f-error-messages-while-installing-net-framework-3-5-in-windows-8/

    http://blogs.technet.com/b/askcore/archive/2012/05/14/windows-8-and-net-framework-3-5.aspx

  2. UPDATE core_members SET pp_main_photo = NULL, pp_thumb_photo = NULL, pp_main_height = NULL, pp_main_width = NULL, pp_thumb_height = NULL, pp_thumb_width = NULL, pp_gravatar = NULL, pp_photo_type = NULL;

    This will not remove images from the file system though. 

  3. On some setups, it may be needed to reduce your email sent per day, hour, cycle etc. Adjust this setting as needed, 500 is the default, 100 is a good setting.  This is per cycle, so each time the task is triggered it will sent x amount per cycle.

    Ad this to your constants.php

    <?php

    define( 'BULK_MAILS_PER_CYCLE', '100');

     

     

     

     

  4.     'CP_DIRECTORY'                        => 'admin',
                'IN_DEV'                            => FALSE,
                'DEV_USE_WHOOPS'                    => TRUE,
                'DEV_USE_FURL_CACHE'                => FALSE,
                'DEV_USE_MENU_CACHE'                => FALSE,
                'DEBUG_JS'                            => FALSE,
                'DEV_DEBUG_JS'                        => TRUE,
                'DEV_DEBUG_CSS'                        => FALSE,
                'DEBUG_TEMPLATES'                    => FALSE,
                'IPS_FOLDER_PERMISSION'                => 0777,
                'FOLDER_PERMISSION_NO_WRITE'        => 0755,
                'IPS_FILE_PERMISSION'                => 0666,
                'FILE_PERMISSION_NO_WRITE'            => 0644,
                'ROOT_PATH'                            => __DIR__,
                'NO_WRITES'                            => FALSE,
                'DEBUG_LOG'                            => FALSE,
                'LOG_FALLBACK_DIR'                    => '{root}/uploads/logs',
                'STORE_METHOD'                        => 'FileSystem',
                'STORE_CONFIG'                        => '{"path":"{root}/datastore"}',
                'CACHE_METHOD'                        => 'None',
                'CACHE_CONFIG'                        => '{}',
                'CACHE_PAGE_TIMEOUT'                => 30,
                'TEST_CACHING'                        => FALSE,
                'EMAIL_DEBUG_PATH'                    => NULL,
                'BULK_MAILS_PER_CYCLE'                => 500,
                'JAVA_PATH'                            => "",
                'ERROR_PAGE'                        => 'error.php',
                'UPGRADING_PAGE'                    => 'upgrading.html',
                'QUERY_LOG'                            => FALSE,
                'CACHING_LOG'                        => FALSE,
                'ENFORCE_ACCESS'                    => FALSE,
                'THUMBNAIL_SIZE'                    => '500x500',
                'PHOTO_THUMBNAIL_SIZE'                => 240, // The max we display is 120x120, so this allows for double size for high dpi screens
                'COOKIE_DOMAIN'                        => NULL,
                'COOKIE_PREFIX'                        => 'ips4_',
                'COOKIE_PATH'                        => NULL,
                'COOKIE_BYPASS_SSLONLY'                => FALSE,
                'CONNECT_NOSYNC_NAMES'                => FALSE,
                'BYPASS_CURL'                        => FALSE,
                'FORCE_CURL'                        => FALSE,
                'NEXUS_TEST_GATEWAYS'                => FALSE,
                'NEXUS_LKEY_API_DISABLE'            => TRUE,
                'NEXUS_LKEY_API_CHECK_IP'            => TRUE,
                'NEXUS_LKEY_API_ALLOW_IP_OVERRIDE'    => FALSE,
                'UPGRADE_MANUAL_THRESHOLD'            => 250000,
                'HTMLENTITIES'                        => ( version_compare( phpversion(), '5.4.0', '<' ) ) ? ENT_IGNORE : ENT_DISALLOWED,
                'SUITE_UNIQUE_KEY'                    => mb_substr( md5( '02bf3' . '$Rev: 3023$'), 10, 10 ),
                'CACHEBUST_KEY'                        => mb_substr( md5( '02bf3' . '$Rev: 3023$'), 10, 10 ), // This looks unnecessary but SUITE_UNIQUE_KEY can be set to a constant constant in constants.php whereas we need a version specific constant for cache busting.
                'SITE_SECRET_KEY'                    => NULL,
                'TEXT_ENCRYPTION_KEY'                => NULL,
                'CONNECT_MASTER_KEY'                => NULL,
                'USE_DEVELOPMENT_BUILDS'            => FALSE,
                'DEV_WHOOPS_EDITOR'                    => NULL,
                'DEFAULT_REQUEST_TIMEOUT'            => 10,        // In seconds - default for most external connections
                'LONG_REQUEST_TIMEOUT'                => 30,        // In seconds - used for specific API-based calls where we expect a slightly longer response time
                'TEMP_DIRECTORY'                    => sys_get_temp_dir(),
                'TEST_DELTA_ZIP'                    => '',
                'DELTA_FORCE_FTP'                    => FALSE,
                'BYPASS_ACP_IP_CHECK'                => FALSE

     

×
×
  • Create New...