Blog

Securing DB Credentials Options

User For above I've two options 1- use one time open_ssl encryption at CodeIgniter side and get db password and username ecryption values and use this in our global plugin This is not full proof but can hide textual reprenstation of db credentials. Although open_ssl library is usually avaliable for php 7.2+ everywhere but it […]

Change DB User Password

User hetzner.cloud portal I have given ssh idrsa public to the client then he create an ssh user for me now I want to change database user password Assistant Great! Since your client added your SSH public key and created an SSH user for you on the Hetzner Cloud server, and you now have SSH […]

MySQL Access Denied Troubleshooting

User admin1@PC-274:~$ ssh -i /home/admin1/.ssh/id_rsa nethues@116.203.33.80 -p 1322 Last login: Mon Apr 7 08:35:01 2025 from 14.141.174.122 [nethues@DB1-alma-4gb-nbg1-2 ~]$ mysql –v mysql: [ERROR] unknown option '–v'. [nethues@DB1-alma-4gb-nbg1-2 ~]$ mysql -v ERROR 1045 (28000): Access denied for user 'nethues'@'localhost' (using password: NO) [nethues@DB1-alma-4gb-nbg1-2 ~]$ mysql -u dashboardklass_6tghji898u76ty ERROR 1045 (28000): Access denied for user 'dashboardklass_6tghji898u76ty'@'localhost' (using […]

Hiding DB Credentials WP

User Can we hide db credentionals exernal from wordpress plugin Assistant Yes, you **can and should** hide your **database credentials** externally from a WordPress plugin for better **security and maintainability**. Here are some recommended ways to do this: — ### ✅ Recommended Approaches #### 1. **Use Environment Variables (`.env`)** – Install [vlucas/phpdotenv](https://github.com/vlucas/phpdotenv) (already included in […]

SSH Access and User Management

User Generated public/private key to get ssh access of hetzner from client and checking the new user creation and change of exisitng user password Correct above sentence in more formal way Assistant Generated a public/private key pair to obtain SSH access to the Hetzner server from the client, and verified the creation of a new […]

Elementor form settings fix

User Too few arguments to function ElementorProModulesFormsClassesForm_Record::get_form_settings(), 0 passed in /html/autohaus-lange/website-autohaus-lange/web/app/themes/autohaus-lange/functions.php on line 286 and exactly 1 expected add_action('elementor_pro/forms/new_record', function($record, $handler) { $form_name = $record->get_form_settings('form_name'); if ('Home Form' !== $form_name) { return; } $raw_fields = $record->get('fields'); $department = ''; foreach ($raw_fields as $id => $field) { if ($id === 'field_17e133f') { $department = $field['value']; break; […]

Elementor form server error

User our submission failed because of a server error. elementor form Assistant If you're seeing the message: > **"Our submission failed because of a server error."** when submitting an **Elementor form**, it usually points to an issue with the backend processing. Here's how you can troubleshoot and fix it: — ### ✅ **1. Check Console […]

Server error troubleshooting

User our submission failed because of a server error. Assistant Could you please clarify where this error occurred? For example: – Was it on a **form submission** on your website? – Was it from a **Vue/Laravel** or **WordPress** app? – Was there any **error message in the browser console or server logs**? If you can […]

Change MySQL User Password

User hetzner cloud I have ssh access now want to change password of mysql user Assistant Great! If you have SSH access to your Hetzner Cloud server and want to change the password of a MySQL user, you can follow these steps: — ### ✅ **Step-by-step: Change MySQL User Password via SSH** 1. **SSH into […]

Change Leaflet Map Icon

User Leaflet Map – WordPress plugin change map icon Assistant To **change the map marker icon** in a **Leaflet Map** using a **WordPress plugin** (e.g., Leaflet Map plugin by Leaflet.js or other similar), follow the method that best matches how you’ve implemented the map. Below are **common approaches** to customize the marker icon. — ## […]