Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My website cannot be reached.Hi,
In this case I recommend you to contact your hosting provider as it is an server related issue.
Thanks
Forum: Fixing WordPress
In reply to: How to create a new page and copy the same features to new page.Hi,
Please see the below link for creating new page and adding content for it.
https://codex.ww.wp.xz.cn/Pages
Thanks
Hi,
Please contact your hosting provider as MYSQL extension is missing. Without it you cannot install WordPress.
They will install it.
Thanks
Forum: Installing WordPress
In reply to: Cannot log in to QuickinstallHi,
Please contact support of your hosting provider as this is not a WordPress issue.
Thanks
Forum: Localhost Installs
In reply to: database Repairing not workingHi,
It seems that all tables are not created while installing wordpress.
Please ensure that the MYSQL user that you are using to install WordPress are having all permission for the database used.Thanks
Forum: Localhost Installs
In reply to: Unable to update localhost install to 4.5.2Hi,
Try updating WordPress to latest version Manually.
Please follow the steps from the below link.
https://codex.ww.wp.xz.cn/Updating_WordPress#Manual_Update
Thanks
Forum: Fixing WordPress
In reply to: Landing Page will not loadHi,
You have Javascript error in your website. Please see console while loading.
SyntaxError: expected expression, got '<' <html><body><script type="text/javascript" src="/aes.js" ></Thanks
Forum: Fixing WordPress
In reply to: Cant update Plugins, themes anythingHello ryanodonnell,
Yes you need to contact support of your VPS provider because in error message its giving error “Destination directory for file streaming does not exist or is not writable” means folder has no permissions to write the files so you need to check for permission changes.
Thanks
Forum: Fixing WordPress
In reply to: WordPress site is working but no dashboardHello hooma,
Can you please make ‘WP_DEBUG’ to true in wp-config.php so that you get the what the actual error is.
define(‘WP_DEBUG’, true);
Thanks
Forum: Hacks
In reply to: Pagination only inside CATEGORYHello kodden,
Please replace your code with below code:
/* Post pagination /* ------------------------------------ */ if ( ! function_exists( 'ac_post_nav_arrows' ) ) { function ac_post_nav_arrows() { global $post; $prev_post = get_next_post(true,null,'category'); $next_post = get_previous_post(true,null,'category'); if( $prev_post ) { $prev_post_id = $prev_post->ID; $prev_post_url = get_permalink($prev_post_id); }; if( $next_post ) { $next_post_id = $next_post->ID; $next_post_url = get_permalink($next_post_id); }; echo '<div class="post-navigation clearfix">'; if( $prev_post ) { echo '<a href="' . esc_url( $prev_post_url ) . '" class="prev-post" title="' . __( 'Previous Post', 'justwrite' ) . '">' . ac_icon('angle-left', false) . '</a>'; } else { echo '<span class="prev-post">' . ac_icon('angle-left', false) . '</span>'; } if( $next_post ) { echo '<a href="' . esc_url( $next_post_url ) . '" class="next-post" title="' . __( 'Next Post', 'justwrite' ) . '">' . ac_icon('angle-right', false) . '</a>'; } else { echo '<span class="next-post">' . ac_icon('angle-right', false) . '</span>'; } echo '</div>'; } }Thanks
Forum: Fixing WordPress
In reply to: How do I remove index.php from my permalinks?Hello Chrissy,
Please follow the below link this will help you.
http://codex.ww.wp.xz.cn/Using_Permalinks#Permalinks_without_mod_rewrite
Thanks
Forum: Fixing WordPress
In reply to: woocommerce price filterHello Bee,
Can you please provide your website link on which page you trying to add the filter and the page where it is showing now so that I can check whats the issue is.
Thanks
Forum: Fixing WordPress
In reply to: Erro WordPressHi,
One of your plugin is conflicting. Please disable all plugin and then activate one by one and you will come to know which plugin is causing this error.
Thanks
Forum: Fixing WordPress
In reply to: Fatal Error after installingHi,
It seems that some of the files are missing. Try uploading files gain using FTP except the wp-config.php and your active theme files.
This should fix your problem.
Thanks
Forum: Fixing WordPress
In reply to: theme check issue