Forum Replies Created

Viewing 10 posts - 981 through 990 (of 6,341 total)
  • Author
    Posts
  • in reply to: Problems with Theme Update #14046
    You must have valid license to access this content.
    in reply to: Website down after update! #14044
    You must have valid license to access this content.
    in reply to: Magnifier icon – portfolio featured image #14042
    You must have valid license to access this content.
    in reply to: Low image quality. #14040
    You must have valid license to access this content.
    in reply to: The theme directory "samsara" does not exist. #14006

    .htaccess file rewrite the page URL, for example, rewrite http://domain.com/?p=1 to http://domain.com/1
    so the theme keeps work even without this file.

    But I found if I enable the URL rewrite, the detail page or post still doesn’t work.

    This issue is my first time to see, but I’m sure it’s not the theme issue. Is it possible to reinstall WordPress?
    I’m not sure how you deployed this site on your site, so it’s hard to know the real reason. This guy had the same issue, you can check his article: https://codeinreview.com/145/my-wordpress-upgrade-process-and-fixing-a-blank-website-error/

    in reply to: Website down after update! #14003
    You must have valid license to access this content.
    in reply to: Problem with purchase code #14001
    You must have valid license to access this content.
    in reply to: The theme directory "samsara" does not exist. #13988

    I found if I set the permalink to default, the inner page works fine.
    So, please give two new test:

    1. delete .htaccess from wp root folder, then go to WP backend > Settings > permalinks, only resave it.
    2. check wp-content/themes/ folder, what’s the theme folder name? Samsara or samsara.

    Sorry for this, because I’m sure it’s a server issue if you install any news. I can’t control your server, so I can only search and ask you here.

    in reply to: Problem with purchase code #13984
    You must have valid license to access this content.
    in reply to: The theme directory "samsara" does not exist. #13968

    OK.

    On wp-config.php side, you can give couple of test as below

    Test 1:

    Remove the following codes from wp-config.php

    **
    * Other customizations.
    */
    define(‘FS_METHOD’,’direct’);define(‘FS_CHMOD_DIR’,0755);define(‘FS_CHMOD_FILE’,0644);
    define(‘WP_TEMP_DIR’,dirname(__FILE__).’/wp-content/uploads’);
    
    /**
    * Turn off automatic updates since these are managed upstream.
    */
    define(‘AUTOMATIC_UPDATER_DISABLED’, true);

    Then, deactivate the theme and reactivate it.

    Test 2: If test 1 doesn’t work, please try to add the following codes to wp-config.php

    if ( !defined('ABSPATH') )
        define('ABSPATH', dirname(__FILE__) . '/');
    
    define('WP_HOME', '/');
    define('WP_SITEURL', WP_HOME);
    define('WP_CONTENT_URL', WP_HOME . '/wp-content');
    define('WP_CONTENT_DIR', realpath(ABSPATH . '../wp-content/'));

    Thanks

Viewing 10 posts - 981 through 990 (of 6,341 total)