Clarion Technologies
Forum Replies Created
-
Hello getalifeLSSA,
Can you please try once updating the permalink settings may be it due to permalink issue.
Thanks
Forum: Fixing WordPress
In reply to: Mobile redirection using .htaccess or php or js – only on homepageHi,
You can use any of the following plugins.
https://ww.wp.xz.cn/plugins/equivalent-mobile-redirect/
https://ww.wp.xz.cn/plugins/wp-mobile-detector/
https://ww.wp.xz.cn/plugins/simple-mobile-url-redirect/Thanks
Hi,
You can create a sub-domain and rebuild all features there and when you have to make like you just have to move the files from the sub-domain to main site folder and just change URL in database.
Also there are plugins which can help you to migrate
https://ww.wp.xz.cn/plugins/all-in-one-wp-migration/
https://ww.wp.xz.cn/plugins/duplicator/Thanks
Forum: Installing WordPress
In reply to: Can’t select databaseCheck in cpanel database having proper privileges or not, In cpanel click phpmyamdin and select database you will see privileges of database.
Forum: Fixing WordPress
In reply to: From Loopia's Autobahn to WordPress without losing the RankingIf you want to install wordpress install same domain the site rank will never lose because your installing same domain it self.
If its blogger find below migrate your blogger to WordPress
Forum: Networking WordPress
In reply to: Multisite – Site Specific ModificationsHello apatt124,
I will suggest you to create theme option page and provide the text area for adding the custom css and apply the saved custom css option to your theme. So you can change the css of the any site individually without disturbing other site theme.
Thanks
Forum: Fixing WordPress
In reply to: Edit Email notificationUse below plugin send custom notifications
https://ww.wp.xz.cn/plugins/custom-comment-notifications/screenshots/
Forum: Fixing WordPress
In reply to: WP multisite is not workingTry to use below is a .htaccess form a similar multisite submain project that is working…
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{SERVER_PORT} !^443$ RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R,L] RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: Image uploads (HTTP error)Add this below code in function.php fle
add_filter( 'wp_image_editors', 'change_graphic_lib' ); function change_graphic_lib($array) { return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' ); }If above code is not work , follow below steps to remove error
1. Decrease the image’s size. Don’t add a 2000 x 1500 image, for example. If your post content area is 700px wide, don’t add an image larger than that.
2. Change the image’s extension from .png to .jpg, or vice versa, then upload it again.
3. If the problem appears after installing a plugin, deactivate it and try it again. Some plugins can trigger the error.
4. Increase your PHP memory. Add this code define(‘WP_MEMORY_LIMIT’, ’64M’) into your wp-config.php file. This setting may not work if your host does not allow you to increase the PHP memory limit, so I suggest talking to your support directly and ask them to change the limit for you. You’ll skip the hassle.
Read this guide if you need to know how to access and edit your WordPress files.
5. Add one of these codes in .htaccess:
<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>or
# Exclude the file upload and WP CRON scripts from authentication
<FilesMatch "(async-upload\.php|wp-cron\.php|xmlrpc\.php)$"> Satisfy Any Order allow,deny Allow from all Deny from none </FilesMatch>or
AddType x-mapp-php5 .php (at the very top of your .htaccess file)
Forum: Fixing WordPress
In reply to: Not able to visualize previewRemove all cookies from the cache, restart the browser or pc and log in at your wordpress correctly.
You will see that the problem is solved.
If not please let me knowForum: Fixing WordPress
In reply to: Post on the front page shows as uncategorizedHi,
Please can you provide your site URL.
Thanks
Forum: Plugins
In reply to: [Simple Social Share] Not working on archive pagesHello protorob,
In plugin option setting page their is option saying “Show on” in which you need to check the archive page option also.Please check the setting once.
Thanks
Forum: Fixing WordPress
In reply to: Intermitent HTTP Error on Media uploadsAdd this below code in function.php fle
add_filter( 'wp_image_editors', 'change_graphic_lib' ); function change_graphic_lib($array) { return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' ); }If above code is not work , follow below steps to remove error
1. Decrease the image’s size. Don’t add a 2000 x 1500 image, for example. If your post content area is 700px wide, don’t add an image larger than that.
2. Change the image’s extension from .png to .jpg, or vice versa, then upload it again.
3. If the problem appears after installing a plugin, deactivate it and try it again. Some plugins can trigger the error.
4. Increase your PHP memory. Add this code define(‘WP_MEMORY_LIMIT’, ’64M’) into your wp-config.php file. This setting may not work if your host does not allow you to increase the PHP memory limit, so I suggest talking to your support directly and ask them to change the limit for you. You’ll skip the hassle.
Read this guide if you need to know how to access and edit your WordPress files.
5. Add one of these codes in .htaccess:
<IfModule mod_security.c> SecFilterEngine Off SecFilterScanPOST Off </IfModule>or
# Exclude the file upload and WP CRON scripts from authentication
<FilesMatch "(async-upload\.php|wp-cron\.php|xmlrpc\.php)$"> Satisfy Any Order allow,deny Allow from all Deny from none </FilesMatch>or
AddType x-mapp-php5 .php (at the very top of your .htaccess file)
Forum: Fixing WordPress
In reply to: Gallery images no longer appearFor this which plugin you are using. Check folder permission also
Forum: Fixing WordPress
In reply to: Integration of blog with websiteCheck below tutorial of integration of wordpress
http://blog.spoongraphics.co.uk/tutorials/how-to-build-a-custom-wordpress-theme-from-scratch