Clarion Technologies
Forum Replies Created
-
Hello snowdragonspirit,
For which folders have you set the permissions to 755 ? If you have set it for single folder please make it recursive for all directories inside uploads.
Thanks
Forum: Fixing WordPress
In reply to: Some strange warnings on my wordpress websiteOpen wp-config.php file from root directory
Find below code and change true to false
define( ‘WP_DEBUG’, false );
Forum: Fixing WordPress
In reply to: Error establishing a database connectionHello
Hello heartofachanpion,
As Error is showing may be because user that you have in wp-config.php file has not permission to access your database So Can you please check the in server MySQL database whether the database has the user assigned or not which you are using in config file.If not assign user to database and there details in wp-config.php file.Please follow below link will guide you where you need to add those user and database details:
https://codex.ww.wp.xz.cn/Editing_wp-config.php
Thanks
Forum: Fixing WordPress
In reply to: Copying contents from one blog to anotherHello lungingthroughlife,
If you are getting the error of upload_max_filesize issue then in that can blue-host support can help you on this 1) Ask him to import your database file through SSH command line.
Thanks
Forum: Fixing WordPress
In reply to: Sticky Post showing on all paged pagesHello lisajwells,
You have applied the three conditions in “pre_get_posts” filter but the code of ignoring the sticky post is out side the condition So please add it like this:
if ( $query->get( 'paged', 1 ) == 1 ) { $query->set ( 'post__not_in', array( 658 ) ); return; }Thanks
Forum: Fixing WordPress
In reply to: Database Error when attempting to access the my domain.Hello heartofachanpion,
As Error is showing “Access denied for user” means the user that you have in wp-config.php file has not permission to access your database So Can you please check the in server MySQL database whether the database has the user assigned or not which you are using in config file.If not assign user to database and there details in wp-config.php file.Please follow below link will guide you where you need to add those user and database details:
https://codex.ww.wp.xz.cn/Editing_wp-config.php
Thanks
Forum: Fixing WordPress
In reply to: Password protected page just reloadsHello cmacom,
Can you please try by putting a www in the WordPress Address and Site Address in General Settings.
Thanks
Forum: Fixing WordPress
In reply to: WP Admin error when installing pluginHello stuff2600,
You are getting this error due the folder permission issue Please contact with your amzon ec2 support team only they can help you on this issue.
Thanks
Forum: Fixing WordPress
In reply to: Making one category hide on homepageHello tashacarolina,
If you want to hide the category “portfolio” post from FrontPage please pass your portfolio category id to query post:
<?php query_posts(‘cat=- $cat_id’); ?> If there is not “query_posts(‘cat=- $cat_id’);” on your home page template please add this please follow the below link will guide you:https://css-tricks.com/snippets/wordpress/remove-specific-categories-from-the-loop/
Thanks
Forum: Themes and Templates
In reply to: List taxonomies with linksHello devmitrovics,
Please replace your code with below code:
$terms = get_the_terms( $post->ID , 'pravilnici' ); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) { $count = count( $terms ); $i = 0; $term_list = '<p>'; foreach ( $terms as $term ) { $i++; $term_list .= '<a href="' . esc_url( get_term_link( $term ) ) . '" alt="' . esc_attr( sprintf( __( 'View all post filed under %s', 'my_localization_domain' ), $term->name ) ) . '">' . $term->name . '</a>'; if ( $count != $i ) { $term_list .= ' · '; } else { $term_list .= '</p>'; } } echo $term_list; }Thanks
Forum: Fixing WordPress
In reply to: Virtue theme image quality lossPost same query here, theme author will help you
Forum: Fixing WordPress
In reply to: Link between old site and new siteHello aventuriculinarein2
Can you please check whether siteurl and home entries in wp_options in database whether they are having Old URL or New if old the then change it to new.Then Goto permalink setting update the permalink setting.Now check your site.
Thanks
Forum: Fixing WordPress
In reply to: 90 degree image rotation from iPhoneCan you provide site link we will check. Maybe that is CSS related issue
Forum: Fixing WordPress
In reply to: Can I do something about the speed…Please follow below steps to increase site speed:
Step1:
Properly formatting and compressing images can save many bytes of data.
Step2:
Setting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network.You can test site speed on below url:
https://developers.google.com/speed/pagespeed/insights/Forum: Fixing WordPress
In reply to: ImagesDepending on the theme you can display a large image in the single page. Check in theme having a full-width template or not, if not, just create custom file for without sidebar code.