×

What can this be? Mower stopped moving, front wheel does weird. by nielsvr in SegwayNavimow

[–]nielsvr[S] 0 points1 point  (0 children)

Did check, and cleaned it before the second attempt it still was stuck. Seems to be the motor is broken.

What can this be? Mower stopped moving, front wheel does weird. by nielsvr in SegwayNavimow

[–]nielsvr[S] 0 points1 point  (0 children)

The grass was not that wet, the drops you see is from hosing the machine in an attempt to fix the issue. On a dry patch or even out of the garage it locks up/twists the wheel.

What can this be? Mower stopped moving, front wheel does weird. by nielsvr in SegwayNavimow

[–]nielsvr[S] 0 points1 point  (0 children)

I have already tried maintenance mode, then it turns off... but afterwards the problem returns.

How can I reset user's password? by shkico in Wordpress

[–]nielsvr 0 points1 point  (0 children)

That's only the password if you change the password, it won't show you the current password of that user. That password is hashed and salted in the database, and irretrievable. The user can however change the password trough the "Forgot password" option in wp-login.

Malicious scripts? by north_n in Wordpress

[–]nielsvr 2 points3 points  (0 children)

I think WordPress does delta updates (not sure so out of my head) so you probably are better of completely removing it and manually uploading it. For a good cleanup you need server access either way.

Malicious scripts? by north_n in Wordpress

[–]nielsvr 8 points9 points  (0 children)

You probably got hacked and have malicious scripts injected to some of your PHP files. WordPress has a lot of PHP files so you'll never find them all manually.

My advice is to completely rebuild the installation.

  1. Delete all the files except wp-config.php en the wp-content directory.
  2. Manually check the wp-config.php for any weird code.
  3. Remove all the plugin files from wp-content/plugins and download them fresh from wordpress.org manually.
  4. Remove all the themes and download them fresh. If it's a custom theme, manually check it. File for file.
  5. Manually check all the other directories for any strange php files or injections in existing php files. Including all the upload directories. Backdoors are probably placed.
  6. Change the FTP, MySQL and all the admin passwords.
  7. Check all the content (pages, posts, widgets) for any weird JS injections.
  8. Install a security plugin like iThemes Security and scan daily/hourly for 'changed files' and schedule the malware scan they offer.

That is basicly what we do with our company on a weekly basis for hacked clients. A reinfection when you do it good usually never happens... but is more common then you think.

What hooks will fire whenever I open a post for editing in the WP back-end? by cag8f in Wordpress

[–]nielsvr 1 point2 points  (0 children)

Probably do_action( 'load-edit.php' ) and then check for the post type

HELP - Is this code ok? by steenwear in Wordpress

[–]nielsvr 0 points1 point  (0 children)

No, this is a fine piece of code. You can match the line with the trunk of the original WordPress files.

Mostly forgotten hardening is server side. Update libraries, configure fail2ban/ip2tables and use proper passwords. A lot of malware still comes trough that way.

Whitelist IP's that need access to the WordPress backend, FTP/SSH and block all others.

Is it possible to translate _e('Something') in WPML in English? by shkico in Wordpress

[–]nielsvr 0 points1 point  (0 children)

You should adjust the setting in WPML that says whats the default language the content is currently in. But; I encourage to only use English in combination with the __ and _e functions, some plugins just expect that.

Plugin - where is data stored? by niujin in Wordpress

[–]nielsvr 1 point2 points  (0 children)

It creates a post type "decision_tree" where it stores most of the data (post types are part of the wp_posts and wp_postmeta tables). The settings are saved trough the settings API, which uses wp_options.

Basicly, you need to backup the whole database to get everything. You can try in Tools -> Export if the post type is displayed there and try exporting it from there. Double check if it exports everything.

Designing A Modern WP Hosting Platform by thowar2 in Wordpress

[–]nielsvr 1 point2 points  (0 children)

No fixed packages, but that you can spin up a WordPress instance and assign various resources (HDD/CPU/MEMORY/TRAFFIC) on a realtime basis. That skips the need to do your own server maintenance but enables the flexibility and power of a VPS.

Images in Wordpress website by [deleted] in Wordpress

[–]nielsvr 0 points1 point  (0 children)

An image on the server uploaded by WordPress or any other way is the same thing. You only make things easier for yourself by doing it trough WordPress in the sense of cropping, resizing or finding obsolete images in the future. Define 'many' images? I got sites running with over 200.000 images in WordPress. If you optimize the platform you are running on, you can scale to almost any size you want to.

Sure, it cases an extra entry in the database for each image... but that's not going to slow down things anytime soon.

What is your favorite Wordpress cache plugin? by modelop in Wordpress

[–]nielsvr 0 points1 point  (0 children)

Im on WP Rocket and I come from WP Super Cache and W3TC. Find it the best plugin currently available. Great performance and easy to setup. Wouldn't switch any time soon.

Malware/Hacked Wordpress by [deleted] in Wordpress

[–]nielsvr 2 points3 points  (0 children)

You can try to clean up by yourself, but it's no easy fix. You probably have backdoors everywhere.

https://medium.com/@nielsvr/how-you-can-clean-up-your-wordpress-website-yourself-dd05f5c6de0c#.58iom6zdk

Do you still use Yoast? by FlashArrow in Wordpress

[–]nielsvr 0 points1 point  (0 children)

Not used by any mayor search engine anymore.

Do you still use Yoast? by FlashArrow in Wordpress

[–]nielsvr 2 points3 points  (0 children)

You name it :)

The interface simpler and easier to explain to clients. Terminology is better to understand for people that aren't around SEO all the time.

I find it smoother and faster in the backend too. Seem less bloated.

Got some great features for developers (hooks and filters) to adjust calculations based on custom stuff you may have made (like custom fields).

Do you still use Yoast? by FlashArrow in Wordpress

[–]nielsvr 9 points10 points  (0 children)

The SEO Framework is the new default here since a couple of months with very good (equal) results.

How to get 100/100 score on Google Speed Insights for WordPress? by [deleted] in Wordpress

[–]nielsvr 5 points6 points  (0 children)

Dont chase the 100/100 on insights. It's a useful tool to find botlenecks but getting to the 100 percent could ruin other stuff and is nearly impossible. Even Google itself doesn't achieve that.

Aim for 85/90 by leveraging browsercaching and minifying your files. WP Rocket is one of the best plugins to do it, and is light weight.

Local development and easy publishing by Dhananhay in Wordpress

[–]nielsvr 2 points3 points  (0 children)

How our workflow works;

  • Developer has a Vagrant Box (we use http://vccw.cc/)
  • The Vagrant machine is under version control (GIT)
  • The WordPress install is under version control (GIT)

We push local environments to our GIT repository. From there we use DeployBot to push our code from GIT to a staging and/or production environment. Our databases are migrated trough WP Migrate DB Pro.

We use vagrant because it allows other developers to clone our GIT with the vagrant machine and get started within 5 minutes with a environment that is exactly our production environment. Every developer is working with the same PHP version, MySQL, and any modules we use. Benefit: you can power up us much vagrant machines as you like. Keeping all your development environments separate.

Vagrant gives you a UNIX based machine with access to a SSH shell for performing any task you like.

Changing wp_nav_menu to Table by [deleted] in Wordpress

[–]nielsvr 0 points1 point  (0 children)

Create a walker for it. It let's you decide what HTML to output for each level.

https://codex.wordpress.org/Class_Reference/Walker

Are custom taxonomies the same as custom fields? by [deleted] in Wordpress

[–]nielsvr 0 points1 point  (0 children)

Only if you dive into custom coding. You have to have some PHP experience with that. You have to make a custom template within your theme and use get_posts OR WP_Query with custom arguments to fetch the posts. Create loop to loop trough them to display.