dwinden
Forum Replies Created
-
@*B.V.RammannaRaau*
Probably ABSPATH is not being set correctly.
File System Information Document Root Path is never based on ABSPATH.
WordPress Configuration wp-config.php Location and Content Directory values are both based on ABSPATH.
If WP_CONTENT_DIR is already defined in wp-config.php then the Content Directory value is not based on ABSPATH.
dwinden
@msousa
This has nothing to do with multisite.I noticed from the topic opened on the Multilanguage by BestWebSoft forum that you were able to solve the issue. Turns out to be a hardcoding issue in the Multilanguage by BestWebSoft plugin.
Since this issue seems to be solved please take a moment to mark both topics as ‘resolved’.
dwinden
Thanks for confirming reinstallation indeed solved the issue.
As the issue is solved please take a moment to mark this topic as ‘resolved’.
dwinden
This bug turns out to be fixed in the 5.3.0 release.
The ITSEC_Lib::ip_mask_to_range() function has been replaced by ITSEC_Lib_IP_Tools::ip_cidr_to_ip_regex() function.
Tested and it seems to be working fine.
If the above info answers your question please mark this topic as ‘resolved’.
dwinden
Sounds like the iTSec plugin install got corrupted as a result of updating.
You could try and reinstall the iTSec 5.3.0 plugin manually using FTP.
dwinden
Malware Scan Scheduling is an iTSec Pro feature.
Therefore please submit a ticket for this issue at iThemes support.dwinden
Please make sure WP cron is NOT disabled in the wp-config.php file like this:
define( 'DISABLE_WP_CRON', true );Even when WP cron is disabled it might be because it is replaced with a Linux WP cron script which is running on the server totally independant of WordPress. If so make sure that that WP cron process is indeed running on the server.
Anyway the Clear Logs button at the bottom of the iTSec plugin Logs page should always work. Though it will only empty the wp_itsec_log table.
dwinden
The iTSec plugin has the ‘jquery’ script handle hardcoded.
So the iTSec plugin assumes there is always a script registered with a handle named ‘jquery’.When you move jQuery from the head section to the footer, just make sure the jQuery script is registered with the same handle ‘jquery’.
For example:
add_action( 'wp_enqueue_scripts', 'jquery_to_footer' ); function jquery_to_footer() { if ( ! is_admin() ) { wp_deregister_script( 'jquery' ); wp_deregister_script( 'jquery-migrate' ); wp_register_script( 'jquery-migrate', '/wp-includes/js/jquery/jquery-migrate.js', array( 'jquery' ), '1.2.1', true ); wp_register_script( 'jquery', '/wp-includes/js/jquery/jquery.js', false, '1.11.3', true ); wp_enqueue_script( 'jquery-migrate' ); } }If the above info answers your question please mark this topic as ‘resolved’.
dwinden
Depending on what type of files these are you can only determin whether they are malicious by looking at the content.
Another option would be to use a malware\exploit scan plugin.
Or simply run the Malware Scan feature included in the iTSec plugin.But in general the content of cache folders change all the time. So it would be best to exclude the cache folder from the File Change Detection scan. Saves you a lot of false positives …
Note the iTSec Pro plugin includes a Compare Files Online setting.
When enabled any file changes detected for WordPress core and iTSec plugins\themes files will be compared to clean online files to determin whether the change was malicious or not.
If the changed file is identical to the clean online copy the change is removed from the scan result.If the info provided above answers your question please mark this topic as ‘resolved’.
dwinden
I’ve added jQuery in a minified file in the footer of my website.
How exactly did you do this ?
dwinden
It’s just a matter of refreshing the iTSec plugin Dashboard page in the browser.
dwinden
Forum: Plugins
In reply to: iThemesSecurity – can't get to login page kicks to homepageNot sure what you did but the idea was to open a new topic in the iTSec plugin forum.
We seem to be in the Plugins and Hacks forum now …
Anyway, suddenly being redirected to the home page while logged into WP Dashboard is a typical symptom of the iTSec plugin Away Mode feature. People tend to forget about it …
To overrule Away Mode delete the following temporary file if it exists:
wp-content/uploads/ithemes-security/itsec_away.confg
This way you should be able to login again.
dwinden