Sometimes when you are moving files from one host to another, you have to change the files owner or permissions so the web server can utilize it properly.
Have you ever wanted to add in links to your plugins settings page or another website underneath the plugin name on the plugins main list? Well the following code will allow you to do just that. The following code would add a Support link and then a Settings link after the deactivate plugin link on the main plugins link page.
function custom_plugin_action_links($links) { $settings_url=get_admin_url(null,'options-general.php'); $support_url='https://falkensmaze.dev/'; $links[]='<a href="'.$support_url.'" target="_blank">Support</a>'; array_push($links,'<a href="'.$settings_url.'">Settings</a>'); return $links; } add_filter('plugin_action_links_'.plugin_basename(__FILE__),'custom_plugin_action_links');
Sometimes when you are moving files from one host to another, you have to change the files owner or permissions so the web server can utilize it properly.
Here is a Linux command line that searches for files that are over a certain size so that you can find where you might be able to free up some space. Useful to find error_logs that have run amok.
Here is a method to import a SQL file into a database via the Linux command line.
Copyright © 2025 FalkensMaze.dev - Sitemap