I am using Wordpress 3.8.4 with Total Cache (ver 0.9.4) and SyntaxHighlighter Evolved (ver 3.1.10) on my custom hosted wp site hosted at hostgator.
After I added SyntaxHighlighter plugin recently, I found its files are not loading properly when I am viewing site as a regular visitor (logged out), if I logged in as admin, it works fine.
The issue I was able to find was a some query string in URL being added to the plugin files which was added by SyntaxHighlighter plugin. But I have no clue how to fix this. If I check manually after removing query strings from URL it works.
Here is the URL that it is requesting and not loading:
http://domain.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css?b3141b?ver=3.0.9
This gives following error:
This one works:
http://domain.com/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css?b3141b
Can anyone point me to right direction, what could be the issue, and how to resolve this?
Related
I have an issue with my wordpress site. I have already clean core files, All plugin theme etc and DB as well. But Securi still shows malware error.
Known javascript malware: spam-seo.hidden_content
https://sitecheck.sucuri.net/results/https/cosanhome.com
Please see the link above
Thank you
After updating my Wordpress site manually (Using FTP), at my wordpress dashboard I still get a "An updated version of WordPress is available." As seen in the image. Please how can I get rid of it. Thank you
You can get the version number of your WordPress website by accessing your site via FTP and checking the file wp-includes/version.php. At the beginning of that file, you will see the real version number of the website, for example:
$wp_version = ‘5.6.2’
You can also check the releases category archive for what is the latest version.
https://wordpress.org/news/category/releases/
I've copied a live site to a test server to test updating Wordpress on a Magento site that uses Fishpig to bridge content from Wordpress to Magento. Since the udpate, the site always redirects from the homepage to the wordpress folder. e.g. dev.site.com goes to dev.site.com/wordpress. It's not an .htaccess issues, if I wipe them out in both directories it still does it, if I rename index.php in the wordpress folder it stops it but breaks the preview. If I rename the theme and plugins folders it still redirects, something in the core is causing it but I am having issues figuring out what it is. Thanks.
Also if I change the site to show the latest blog post instead of the static home page, it doesn't redirect but shows the blog page.
We will need more information to help solve your problem.
Are your FishPig extensions at the latest version?
What FishPig add-on extensions, if any, are you using?
Have you tried disabling all WordPress plugins?
Do you have any error messages in System > Configuration > WordPress?
My guess is that your WordPress URLs aren't setup correctly and you're using an out dated add-on extension (eg. Visual Composer). There was a bug in older versions of some add-ons that caused this issue, but this has now been fixed.
If you can provide the actual link to your dev site, it will make debugging the issue much easier.
In wordpress, All admin and front end pages are working except admin dashboard is now working... i changed in htaccess. permalinks and checked in theme and plugin
On dashboard below error is coming
The yve.today page isn’t working
yve.today is currently unable to handle this request.
HTTP ERROR 500
Please help how to resolve this
I believe you have changed something either in your functions.php of theme or installed a new plugin so because of that you are seeing this error.
A 500 error means there is something wrong with a piece of code being executed, this would in your case (most likely) be caused by a plugin or your theme, the only way to test this is through deactivation.
I suggest to access your server via FTP, or a file manager in your hosting account’s control panel, navigate to /wp-content/themes/WhatYourThemeName/, open functions.php and remove the code you added recently. or find it the recent plugin have installed recently and deactivate that to check.
I personally would recommend installing WordPress locally and testing any changes there before you do it on your live site.
I've made a clean install of Wordpress on my server and added WooCommerce plugin. Now, some of the pages in the admin panel doesn't display correctly (Dashboard, Media, WooCommerce, etc.).
This is a clean install, only WooCommerce plugin is active.
Do you have any idea why this is happening?
Thanks
Ok so there is VERY little information to go on here so here is the general "Wordpress Broke" debugging guide.
Disable WooCommerce and see if Wordpress goes back to normal. If this is the case then you have to Reinstall WooCommerce. This is where http://docs.woothemes.com/document/known-conflicts would come in handy
If it is still broken without any plugins then you have to check your directory permissions, file structure, and URL Structure.
99% of the time chrome devtools will be your best friend for debuging these problems. It looks like you are not loading some of the core CSS files so lets look to see if you have a a 404, 403, or 500 error when chrome requests them.
Open up chrome and go to the Wordpress admin
Right click anywhere on the page and "Inspect Element"
Look for the red error icon on the right side (top/bottom) and click it to expend the console.
You will probably see the failed requests in there. Make sure the requests are for the correct urls, such as: http://yourdomain.com/wp-admin/load-styles.php or http://yourdomain.com/wp-includes/js/thickbox/thickbox.css
If that are valid URLs and you have verified that the files exist on the server then you have to check directory permissions: http://codex.wordpress.org/Changing_File_Permissions
Best wishes, let me know how it goes
I have seen that problem quite a while right now. You can try adding a specialized theme that has WooCommerce support like BootFrame Core theme. Or any other themes supporting WooCommerce -> https://wordpress.org/themes/search/woocommerce/ . Once, I used a WooCommerce, installed the plugin before changing any theme and had to create a new DB because the one I made before got corrupted due to the theme not working with WooCommerce. It's just a rare case but it can happen.