Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the faculty-weekly-schedule domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/codebangers.com/httpdocs/wp-includes/functions.php on line 6114

Deprecated: Creation of dynamic property Simple_Code_Block_Loader::$shortcodes is deprecated in /var/www/vhosts/codebangers.com/httpdocs/wp-content/plugins/simple-code-block/core/class-simple-code-block-loader.php on line 61

Deprecated: version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated in /var/www/vhosts/codebangers.com/httpdocs/wp-content/themes/shop-isle/vendor/codeinwp/themeisle-sdk/load.php on line 31

Deprecated: version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated in /var/www/vhosts/codebangers.com/httpdocs/wp-content/themes/shop-isle/vendor/codeinwp/themeisle-sdk/load.php on line 36

Deprecated: Creation of dynamic property ThemeisleSDK\Product::$author_url is deprecated in /var/www/vhosts/codebangers.com/httpdocs/wp-content/themes/shop-isle/vendor/codeinwp/themeisle-sdk/src/Product.php on line 188

Deprecated: Creation of dynamic property Shopisle_Admin_Page::$theme_name is deprecated in /var/www/vhosts/codebangers.com/httpdocs/wp-content/themes/shop-isle/inc/admin/class-shopisle-admin-page.php on line 18

Deprecated: Creation of dynamic property Shopisle_Admin_Page::$theme_slug is deprecated in /var/www/vhosts/codebangers.com/httpdocs/wp-content/themes/shop-isle/inc/admin/class-shopisle-admin-page.php on line 19
Why does apt-get fail to resolve the mirror? – CodeBangers

Why does apt-get fail to resolve the mirror?

yes, the name server update does work and if it does work then you’ve probably updated your IP settings to be static and your server can no longer resolve URLs. Try the above and if it works reboot. if it fails after rebooting then do this:

edit the template file for the resolv.conf. Ubuntu server rebuilds this every boot.

sudo vi /etc/resolvconf/resolv.conf.d/tail

#add just these two lines >>
nameserver 8.8.8.8
nameserver 8.8.4.4

then save the file
then restart the service:

sudo /etc/init.d/resolvconf restart


8.8.8.8 and 8.8.4.4 are just googles Name Servers. You should be able to add in your own ISP’s if you want. if you don’t like vi use nano or vim. I figured it out reading this: http://www.cyberciti.biz/faq/ubuntu-linux-configure-dns-nameserver-ip-address/ so credit to them for the tip 🙂

Leave a Reply