Karun
Forum Replies Created
-
Hello
Can anyone help me?
Thank you
Forum: Plugins
In reply to: [WooCommerce] Checkout not working when Shipping is enabledThank you. ??
Forum: Plugins
In reply to: [WooCommerce] Checkout not working when Shipping is enabledNone, just WooCommerce. I went to woocommerce > settings > shipping and enabled it.
Forum: Fixing WordPress
In reply to: How to correct the url – unable to get into wp-adminYou should change the site url from the database.
In you database, table wp_options check for site_url and home_url.
you can change from there
Forum: Localhost Installs
In reply to: wamp problemsFor example: If your site path is
C:/wamp/www/{your-site-folder} OR C:/xampp/htdocs/{your-site-folder} then your URL will be https://localhost/{your-site-folder}but if your site path is C:/wamp/www/{some-folder}/{your-site-folder} OR C:/xampp/htdocs/{some-folder}/{your-site-folder} then your URL will be https://localhost/{some-folder}/{your-site-folder}
Forum: Fixing WordPress
In reply to: wp_posts:Table'mou.wp_posts'doesn't existTry to increase the Execution time limit and try again.
Check this link set_time_limit
Forum: Localhost Installs
In reply to: wamp problems- go to https://localhost/phpmyadmin
- select the Database of your site
- select wp_option
- You should change 2 things here. siteurl and home. You can find these under option_name
- Change https://something.com to https://localhost/something
Forum: Plugins
In reply to: My custom made plugin gives header already sent errorCan you post the full displayed error and also may be the error is arising from the setting.php file you’ve included.
But if you remove the [imageUpload] and place it outside of the fieldset the how to duplicate it??
Forum: Localhost Installs
In reply to: Move only posts with images between two local installations.You have to go manually. First copy the folders from his machine to yours and the copy the database also. In the database you have to replace all the existing site url to your site url.
Forum: Localhost Installs
In reply to: 404 error with all but home pageGo to setting and select permalink and choose default and save the setting. You problem will be solved.
Forum: Localhost Installs
In reply to: Only the root MySQL user can access the databaseAfter you create a new user in database and new database , you need to set permission to the user to all the privileges of the database. Have you done this?
Forum: Plugins
In reply to: Add widget to end of pageFor widget-id you can give any unique name you want like sidebar-2 , sidebar-right, etc
Forum: Plugins
In reply to: Add widget to end of pagePut the following code in your functions.php file
register_sidebar( array(
‘name’ => ‘Widget Name’,
‘id’ => ‘widget-id’,
‘description’ => __( ‘Widget Description’),
‘before_widget’ => ‘<article class=”grid_4 alpha”>’,
‘after_widget’ => “</article>”,
‘before_title’ => ‘<h2>’,
‘after_title’ => ‘</h2>’,
) );And put the following code where you want your widget to be displayed
<?php if ( is_active_sidebar( ‘widget-id’ ) ) : ?>
<?php dynamic_sidebar( ‘widget-id’ ); ?>
<!– #first .widget-area –>
<?php endif; ?>Changing the permalink back to how you want now will fix your problem.