Forum Replies Created

Viewing 15 replies - 1 through 15 (of 56 total)
  • I would (never used haven) say that i would put my money on the theme
    If you check out how the menus should be for defferent devices
    A live demo of the theme
    You can switch between devices up in the right corner.

    What I would try is to create a new menu, make that menu primary and see if it reacts the same way or if it working.
    If you cant see any mobile settings in the theme configuration

    Well i can confirm that the mobile menu is not working.
    The mobile menu doesnt activate at all.
    It seems like a mobile device is trying to display the original menu.
    Are you sure the mobile menu is configured in the theme? Or activated?
    Check mobile menu settings in the theme settings

    You have reached the timeout value

    Check default settings in Xampp

    Try to change the value of the max_execution_time parameter from 30 to 60 seconds or greater.

    This is a local installation, check the section:
    Local Host Installs to get more relevant answers to your questions regarding Xampp, cheers 😉

    What theme are you using?
    Do you have a link to your site?

    Hi!
    First if you took a backup just restore that.

    If not.

    One way of doing it is to do this, is to run a SQL query.
    And, make a backup before you start working.

    Go to your phpmyadmin

    Navigate to wp_users table (replace wp_ if you changed it during install) and execute this SQL :
    (and first change values to your database, emails, passwords etc)

    INSERT INTOyour_databasename.wp_users(ID,user_login,user_pass,user_nicename,user_email,user_url,user_registered,user_activation_key,user_status,display_name`) VALUES (‘4’, ‘your_username’, MD5(‘your_password’), ‘Your Name’, ‘your@email’, ‘Your Website’, ‘2011-06-07 00:00:00’, ”, ‘0’, ‘Your Display name’);

    INSERT INTO databasename.wp_usermeta (umeta_id, user_id, meta_key, meta_value) VALUES (NULL, ‘4’, ‘wp_capabilities’, ‘a:1:{s:13:”administrator”;s:1:”1″;}’);

    INSERT INTO databasename.wp_usermeta (umeta_id, user_id, meta_key, meta_value) VALUES (NULL, ‘4’, ‘wp_user_level’, ’10’);`

    If that makes you feel unconfortable, the manual way is.
    Php my admin.

    wp_users table and click on “Insert” tab.
    ID – choose a number
    user_login – username for WP Dashboard
    user_pass – password for the user
    user_nickname – Add a nickname
    user_email – email for this account
    user_url – url to website
    user_registered – time and date for user creation
    user_status – set to 0
    display_name – name to show on site
    ClickGO

    now wp_usermeta table (insert tab)
    unmeta_id – leave blank
    user_id – User id from previous step
    meta_key – wp_capabilities
    meta_value – a:1:{s:13:”administrator”;s:1:”1″;}

    Insert a new row:
    unmeta_id – leave blank
    user_id – User id from first step
    meta_key – should be wp_user_level
    meta_value – 10
    Click GO

    Now you have a new user.
    Log in with and then goto Users and edit the one you just created so that WordPress can make update on it.

    Ok sorry about that you could access the old WP.

    Yes you have to check your database, like adeline there are changes the needs to be done.

    Here is a complete guide on Moving WordPress Manually

    Reading that out and using it as a checklist, could help you to make the steps to recover your site.

    Check the section: “Changing Your Domain Name and URLs”

    Easy bootstrap plugin?

    Make sure settings is on “use from theme or other plugin”

    Hi There!
    For this i use the full version of Updraft.
    That version has a “migration function”
    Updraft

    I guess there is others that can do the migration to, this one has been working perfect for me.

    Its just to many changes and to much headache and time to do it manually.

    Forum: Fixing WordPress
    In reply to: Saving Changes

    If you deactivate the plugin can you save?

    If you deactivate one language can you save?

    Are you up to date on the WPML? If not update and see if theres any difference.

    ewww image optimizer cloud? Have you tried that one?
    A bulk optimization on the pics can make a whole lot of difference.
    What plugins did you try, any cache plugin?

    The pics do seem to be the thing here

    Forum: Fixing WordPress
    In reply to: Saving Changes

    Are you using any language plugin?
    I had one site that i couldnt save if i used “both” languages but choosing one fixed the problem.

    I would testify on that, dont think its customizr

    I did have some problems on a multilanguage site with polylang and woo commerce involved but again, nothing to do with customizr.
    Is that the case here, soflauto?

    temhair, I just get the german verion on your site is it supposed to be in english to?
    Are you using any language plugin.
    Also are your pages with a / sign in the page title?

    Just realized that you on WAMP and local, Sorry about that.
    Maby something in my post can help you anyway.
    if not try this section:
    Localhostinstalls

    Do you get this as wp-admin login as well or just visiting the site?

    In wp-config.php double check and make sure everything is correct

    define('DB_NAME', 'database-name');
    define('DB_USER', 'database-username');
    define('DB_PASSWORD', 'database-password');
    define('DB_HOST', 'localhost');

    Most hosts use localhost but it can be different depending on what host you use. In some cases set Ip number.
    define('DB_HOST', '192.168.1.1:8889');
    Your servers Ip.

    Some cases it can be permissions.
    creata a file called testconnection.php
    Put this code in it (change to your setting offcourse)

    <?php
    	$link = mysql_connect('localhost', 'root', 'password');
    	if (!$link) {
    	die('Could not connect: ' . mysql_error());
    	}
    echo 'Connected successfully';
    mysql_close($link);
    ?>

    If this one works go back and check your wp-config for typos

    Automatic installers usually run the latest version.
    I think you have to do that manually.
    Is there any reason why you dont want the 4.3?

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