MCosmin
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Display menu inlineHi,
Yes, I have just succeeded to display them inline.
I didn’t change nothing in CSS, but I put list-inline as a class:<ul class=”poly list-inline”>…
I couldn’t align inline before because of the bootstrap.css.
But with list-inline I succeeded.Forum: Plugins
In reply to: [Custom Post Type UI] Remove a custom post from slugHi,
I succeeded with Remove slug from custom post type plugin and /%postname%/ on permalinks.
Thanks!
Forum: Plugins
In reply to: [Custom Post Type UI] Remove a custom post from slugI created a couple of custom posts. One of them is called ‘articles’.
I can see all these custom posts in browser like this:
domain.com/articles/art-1
domain.com/articles/art-2I want to see like this:
domain.com/art-1
domain.com/art-2So I want to remove ‘articles’ from the slug. But only for ‘articles’ custom posts. I have other custom posts too, but I don’t want to change nothing to them.
It is possible?
Thanks,
CosminForum: Plugins
In reply to: [WP-PostViews] Where are stored the viewsThanks a lot!
Forum: Plugins
In reply to: [WP-PostViews] Where are stored the viewsSorry, I can’t find this custom post field.
Do you know what is the table name from database with this field?Thanks,
CosminHi Mark,
Did you test this plugin on LiteSpeed server? Wordfence is working on LiteSpeed?
Some news from providers:
The website where wordfence can’t scan is posted on LiteSpeed server.
The website where wordfence works is posted on Apache server.These are for the moment the differences. Still investigate.
My host providers deactivated mod_security. I repeated the scan but still no results. I couldn’t figure out why on two almost identical websites, on one domain wordfence is working without any problems, on another one scan doesn’t finish.
But I will investigate more.Nothing in the error logs.
I think that something is wrong with mod_security. I tried this plugin on three websites: same configuration, same plugins. On the first website the scan doesn’t work. On two other websites from another provider this plugin works perfect. So I think some rules from mod_security don’t let wordfence scan to work.
Do you have some old reports regarding some issues of this plugin with some rules from mod_security?
Anyway, I’ll ask my host providers to check this issue also.Regards,
CosminHi Mark,
I put the logs on cpf.ro/tmp/lslog.txt. I put the logs on another website, for security reasons.
There is aprox. 15 minutes of logs, in this time I killed the process and then I started again the scan. I hope these logs can help you finding the issue.
Thanks for helping me resolving this issue.
I have access to only Error Logs from CPanel, but it is nothing there. I will try to ask my host providers for these logs.
Hi Mark,
Directive Local Value Master Value
memory_limit 128M 128MHi,
This is my test result:
Current maximum memory configured in php.ini: 128M
Current memory usage: 44.25M
Setting max memory to 90M.
Starting memory benchmark. Seeing an error after this line is not unusual. Read the error carefully to determine how much memory your host allows. We have requested 90 megabytes.
Completing test after benchmarking up to 80.25 megabytes.
–Test complete.–Congratulations, your web host allows you to use at least 80.25 megabytes of memory for each PHP process hosting your WordPress site.
I have installed Wordfence on another site, with same configuration, and it worked perfect. But on the first website, still nothing, the scan didn’t finished. I have same version of WordPress and almost same plugins on both websites. I can’t realize why on my first website wordfence scan can’t be completed.
On Scan Detailed Activity, sometimes the text show
Starting scan of file contents
another time show
Starting scan of file contents
Scanned contents of 96 additional files at 86.08 per second
Scanned contents of 140 additional files at 95.07 per second
Asking Wordfence to check URL’s against malware list.
Checking 87 host keys against Wordfence scanning servers.and then nothing happen.
Regards,
CosminForum: Reviews
In reply to: [Analyticator] It stoped workingI just couldn’t enter in settings section.
But I had patient, I updated the plugin and now it’s working again.
Thanks for your work!Forum: Plugins
In reply to: [WordPress Related Posts] "Edit Related Posts" Removed?Find in wp_related_posts.php the line
$posts_footer .= '<div class="wp_rp_footer"><a class="wp_rp_edit" href="#" id="wp_rp_edit_related_posts">Edit Related Posts</a></div>';
and replace with this one
$posts_footer .= '<br/><br/><a class="relPost2" href="#" id="wp_rp_edit_related_posts">Edit Related Posts</a><br/><br/>';
You have now to create the class relPost2 in your CSS file.
This is how I created:/* Related Post -------------------------------------------------------------- */ .relPost2 { color: #fff; background: #2b883d; padding: 5px 10px 5px 10px; margin-bottom: 25px; font-size: 12px; font-weight: normal; text-decoration: none; } a.relPost2:hover { color: #000; }
You can customize the code for your need.