scieriro
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Admin interface not working properlyYes the issue manifests the same on both scenarios:
– auto install through Softaculous
– manual install deploymentsolved with adding define(‘CONCATENATE_SCRIPTS’, false); to config
Forum: Fixing WordPress
In reply to: Admin interface not working properlyThe issue appears on a fresh install, first I’ve installed through Softaculous and then installed by manually downloading and deploying the files.
@rahul
this means that is not blocked as a measure of security and is working fine, so the issue is not related to xmlrpc.
Also in my case I have my own server.In my case I had the same issue, which was caused by blocking access to xmlrpc.php in IPtables.
Forum: Fixing WordPress
In reply to: My log-in page can't be found…On “Event Services” page you have an loop on your programming. This could be caused by messing with the theme or with an plugin(I think that the theme is the issue – misses to close an while or something like that).
To disable all the plugins you should access the database and in wp-options search for active-plugins, copy all the contents into an text file and then delete the content from database and save.
Forum: Fixing WordPress
In reply to: Wp AttackRequest closed.
Forum: Fixing WordPress
In reply to: Wp AttackFinally solved the issue by passing the job from fail2ban to Iptables, so instead to fail2ban send lots of IP’s into the iptables table to be dropped, I’ve done the following rules into Iptables, so for now all the requests matching those strings will be dropped by the Iptables automatically:
Also I’ve used an plugin(hide login) to change my login page name, so I don’t need to have any references to the old wp-login.php.iptables -A INPUT -m string --algo bm --string "GET /wp-login.php HTTP/1.1" -j DROP iptables -A INPUT -m string --algo bm --string "GET /-/-/-/-/-/-/-/-/-/- HTTP/1.1" -j DROPForum: Fixing WordPress
In reply to: I crashed my WP site when moving itBasically you should check the permissions on the new folder where you moved the site.
Change all the settings relating to the new path into wp-config, also the screw up is more into the Db, where you should replace all the old references to the wp.akur.dk into the new address akur.dk.Forum: Fixing WordPress
In reply to: Wp AttackThe attack it seems to be called Slow HTTP DoS Attacks, usually it attacks Apache.
I have my own server, so far I’ve used fail2ban and Iptables, but the banned Ip list is growing faster.Forum: Fixing WordPress
In reply to: Wp AttackI have Wordfence and installed also NinjaFirewall(which didn’t do anything for me). Also Wordfence didn’t make any difference as it lists every requests but it can’t differentiate from an normal access.
Forum: Themes and Templates
In reply to: [Baskerville] Continue Reading-linkHi,
Change it back into functions.php, and change it into the theme file(main template – index, or whatever name it has in your theme).
Forum: Themes and Templates
In reply to: [Theme: Hueman] Main page headingHi,
You should look into the theme files(header.php – if the theme has one) and you will find out what is printing on that space.
In demo it prints the category/section on page and I think it uses an SEO plugin for the page titleForum: Themes and Templates
In reply to: How do I get rid of Archives and Meta from my wordpress theme?Hi,
You should look into the theme sidebar.php file if the theme has one, and not in the CSS.
Some themes have hard coded directly into the php files some elements, in your case is between#primary .content-areaand#secondary .widget-areaForum: Fixing WordPress
In reply to: Category articles listing as filtered listsHi Mike,
I’ve found this plugin which has an collapsible list, which is close to what I need.
https://ww.wp.xz.cn/plugins/content-views-query-and-display-post-page/Otherwise I will have to customize the theme view or some plugins
Thank you for the responses.Forum: Fixing WordPress
In reply to: Category articles listing as filtered listsHi Mike,
Thank you for the reply, unfortunately those don’t do what I want.
To be more explicit I have one category with let’s say 10 posts. Every post have some aditional custom fields.
I want that when I browse that category the posts to be listed like an ordered list with several columns:
Post name | custom field 1 | Custom field 2….
____________________________________________________________
My post 1 | colour red | size 1
_____________________________________________________________
My post 2 | colour blue | size 2
_____________________________________________________________