• Resolved Yola de Lusenet

    (@yola-de-lusenet)


    I’m working on the site https://www.ruinetheaterbatenburg.nl and use the Twentysixteen theme with a child theme.

    I’ve added a couple of widgets at the bottom of the home page with Site Origin Page Builder.However, the mobile menu that appears in the footer with smaller screens (vertical ipad and phone) now sits on top of these widgets.

    (NB Firefox developer tools don’t show this but I do see it irl on my iphone/ipad)

    I searched the forum and tried solutions suggested here:

    – to create a new footer.php in my childtheme without the code that refers to the navigation. This worked with the footer, but then the menu no longer appears on mouse-over of the MENU-button at the top of the page -consequently there is no menu left anywhere.

    – to use css with ‘display:none’, same result.

    I don’t mind whether the menu is down below or behind the button at the top or both. But I do not want to sit it on top of other text. Is there a way to move it downwards?

    I may be adding other widgets or have different widgets on different pages -so it cannot be the same fixed spot everywhere I guess.

Viewing 9 replies - 1 through 9 (of 9 total)
  • Couple methods if you want to always hide that footer menu to show is to customize with a child theme, modifying the footer, or with custom CSS:

    .site-footer .main-navigation {
        display: none;
    }

    Was this what you were looking for?

    Thread Starter Yola de Lusenet

    (@yola-de-lusenet)

    Thanks for the quick response, childthemestyles, sorry to be slow in responding, I wasn’t paying attention.

    The solution you propose hides the footer menu always, as you say. Which is okay but not strictly necessary. I’ve used more specifically:

    @media only screen and (max-device-width: 768px) {
    .site-footer.main-navigation {
    	display: none
    }
    }

    Then the menu disappears alright. But the problem, as I mentioned above, is that then the mobile MENU button goes dead as well. So you don’t get to see a popup menu either, in fact you get no menu at all at small screen sizes when this button provides access.

    On other pages of the site, where I have regular WP widgets, the problem does not occur, I’ve noticed. So I could simply ditch the Site Origin Pagebuilder widgets. A bit of a problem for what I need to do -the site is not finished yet- but a possible choice.

    NB I’ve searched Site Origin forums but did not see this problem mentioned there either.

    It would be best if I could force the footer menu downwards. But I don’t understand where it comes from and why, if it is part of the footer, it appears above the footer.

    I may want to use the mobile menu button plus the footer menu also on a landing page. If I can figure out how it works, I can use it any which way I want.

    odd….when I use display none in the webmaster tools on your site, the top mobile menu button works for me. There could be something else though that is causing a conflict if your menu isn’t working.

    As a side note, I noticed that your top menu is not floating on top of the lower content, but once I add this, then it’s OK:

    body #masthead .site-header-main { 
        z-index: 999;
        position: relative;
    }

    Do you have preference to have the menu at the bottom as well but not have it overlap the widgets under it? One thing that I did notice is that yes, you have your primary menu in the footer, but there should only be the social menu in the site footer area….you can see this when you open the footer.php file. However, go to your menu admin area Appearance >> Menus >> and look at the menu settings for the location of the menu. Make sure the only box checked is “Primary Menu”.

    Thread Starter Yola de Lusenet

    (@yola-de-lusenet)

    Thank you for the correction for the float! I did have some code for z-index but at the level of the ul – which is why there was no background. Much improved now!

    [I always have difficulty understanding at what level to specify things. I am trying now to work more consistently from the general to the specific but get lost occasionally.]

    The menu thing keeps puzzling me. I have no social menu selected, I don’t need one. There’s only one menu and that’s the only one selected under ‘appearance’.

    I’ve replaced my code for ‘display none’ with yours -after all there is no problem at wider screens when the full menu is at the top -then there is no menu at the bottom anyway. Now the mobile menu button works fine but the menu is still visible on top of the bottom-widgets.

    And, btw, it looks like the menu at the top did before your float-correction. So I’ve commented out my own misplaced effort at making the menu float, just in case there was some mysterious connection – but no luck.

    I’ve also tried creating a custom footer.php without reference to the menu, just tried it again -but then I lose access to the menu through the button.

    I don’t understand how these two are connected. I mean it should be possible to keep the link from the button and not have the menu appear in the footer, they’re two separate things.

    I don’t need the menu at the bottom. Just the button-link-menu at the top is fine.

    [By the way, my child-theme is accidentally called 2015 but in fact it is a cild of WP twentysixteen. I gave it the wrong name and then later when I tried correcting it the whole site went awry so I ‘m kinda stuck with it – stupid but no big deal]

    The menus work fine on other pages on the site, with the same page template, so it must be the widgets that cause the problem. I could get rid of them and try to do things in a different way.

    You are very welcome. Sometimes it takes some playing around to know which container or element needs CSS changes. I always use the webmaster tools in my browser that let’s me do just that and when I find what works, I then copy the code and put it into my stylesheet file. I use the Chrome browser which has the better webmaster tools.

    Anyway, I should apologize here because I just realized you are using the 2016 theme and kept thinking it was 2017. However, the display none code I presented should work and without affecting the top mobile menu as both are separate from one another. But if you are still running into problems with the top menu in mobile mode when doing the display none code, then there’s something else causing a problem.

    You mentioned you are using a child theme and that you called it 2015-child, but that is OK because what is important is that the child theme style.css template is using the 2016 theme…which it is.

    Because you are using a child theme, I would then say copy over the footer.php file into the child theme and remove this code:

    <?php if ( has_nav_menu( 'primary' ) ) : ?>
    <nav class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Primary Menu', 'twentysixteen' ); ?>">
    <?php
    wp_nav_menu( array(
    'theme_location' => 'primary',
    'menu_class'     => 'primary-menu',
     ) );
    ?>
    </nav><!-- .main-navigation -->
    <?php endif; ?>

    That would totally remove that from your website…better than using the display none method.

    I’m assuming based on what I see, you made several theme file modifications, or was it mostly CSS?

    WEird…my reply disappeared so I will try to retype what I just did.

    Anyway, because you are using a child theme (which is good) and rather than using the display none CSS I posted, the best method would be to copy over the footer.php from your twentysixteen theme and into the child theme. Then, remove this code:

    <?php if ( has_nav_menu( 'primary' ) ) : ?>
    <nav class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Primary Menu', 'twentysixteen' ); ?>">
    <?php
    wp_nav_menu( array(
    'theme_location' => 'primary',
    'menu_class'     => 'primary-menu',
    ) );
    ?>
    </nav><!-- .main-navigation -->
    <?php endif; ?>

    If the menu still shows after doing this, it could be that a copy of the page is still in a cache somewhere, like your browser, or, if the cache is a plugin, or from your web host, it might take a short while to change/update. However, removing it should work.

    Thread Starter Yola de Lusenet

    (@yola-de-lusenet)

    YESSS! It works!

    I did this earlier but then I lost the top-button-link. So I must have deleted a little too much, or not enough, or the float-business did interfere somehow.

    Looks ever so much better now, with the float and the clean widgets. Thanks a million, also for your perseverance.

    I’ll mark this as resolved, and with such a satisfying conclusion of the day will sleep an even more peaceful sleep ??

    That is awesome to hear ??
    …and you are very welcome.

    WordPress – 7.1 – Version code: 386
    Android device name: Samsung GT-I9192

    01 – [Apr-20 19:58 UTILS] WordPress.onCreate
    02 – [Apr-20 19:58 UTILS] App comes from background
    03 – [Apr-20 19:58 UTILS] ConnectionChangeReceiver.setEnabled true
    04 – [Apr-20 19:58 UTILS] Connection status changed, isConnected=true
    05 – [Apr-20 19:58 UTILS] Deferred Initialisation
    06 – [Apr-20 19:58 UTILS] trackLastActivity, activityId: My Site
    07 – [Apr-20 19:58 PROFILING] App Startup: begin
    08 – [Apr-20 19:58 PROFILING] App Startup: 208 ms, WPMainActivity.onCreate
    09 – [Apr-20 19:58 PROFILING] App Startup: 342 ms, WPMainActivity.onResume
    10 – [Apr-20 19:58 PROFILING] App Startup: end, 550 ms
    11 – [Apr-20 19:58 STATS] Number of old stats deleted : 0
    12 – [Apr-20 19:58 NOTIFS] Sending GCM token to our remote services: cgnpQM_naeA:APA91bE-dRftUG4kzqmpXlup9tW080xyFpgzQzqnsN6LMTfd_S6MCzZRDXSvhKlGzHeupC-oRP70qvmchU8PsysWADkDZB3vM0S24ZCLYfgTx6NhBL_ZcBVLVOQnJ-y2g7clKvERmSvY
    13 – [Apr-20 19:58 UTILS] trackLastActivity, activityId: Login Screen
    14 – [Apr-20 19:58 NUX] Google API client connected
    15 – [Apr-20 19:58 NUX] SmartLock: Unsuccessful credential request.
    16 – [Apr-20 19:59 API] Dispatching action: AccountAction-IS_AVAILABLE_EMAIL
    17 – [Apr-20 19:59 API] Dispatching action: AccountAction-CHECKED_IS_AVAILABLE
    18 – [Apr-20 19:59 NUX] User tries to sign in on Self Hosted: postbd.cf with username: [email protected]
    19 – [Apr-20 19:59 API] Dispatching action: AuthenticationAction-DISCOVER_ENDPOINT
    20 – [Apr-20 19:59 NUX] Calling system.listMethods on the following URLs: [https://postbd.cf/xmlrpc.php, https://postbd.cf/xmlrpc.php, https://postbd.cf, https://postbd.cf, postbd.cf]
    21 – [Apr-20 19:59 NUX] Trying system.listMethods on the following URL: https://postbd.cf/xmlrpc.php
    22 – [Apr-20 19:59 API] Volley error on https://postbd.cf/xmlrpc.php – exception: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    23 – [Apr-20 19:59 API] StackTrace: com.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:158)
    at com.android.volley.NetworkDispatcher.run(NetworkDispatcher.java:114)
    Caused by: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at java.net.InetAddress.lookupHostByName(InetAddress.java:424)
    at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
    at java.net.InetAddress.getAllByName(InetAddress.java:214)
    at okhttp3.Dns$1.lookup(Dns.java:39)
    at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:172)
    at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.java:138)
    at okhttp3.internal.connection.RouteSelector.next(RouteSelector.java:80)
    at okhttp3.internal.connection.StreamAllocation.findConnection(StreamAllocation.java:178)
    at okhttp3.internal.connection.StreamAllocation.findHealthyConnection(StreamAllocation.java:129)
    at okhttp3.internal.connection.StreamAllocation.newStream(StreamAllocation.java:98)
    at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:42)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:109)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:124)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:170)
    at okhttp3.RealCall.execute(RealCall.java:60)
    at org.wordpress.android.fluxc.network.OkHttpStack.performRequest(OkHttpStack.java:66)
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:97)
    … 1 more
    Caused by: libcore.io.GaiException: getaddrinfo failed: EAI_NODATA (No address associated with hostname)
    at libcore.io.Posix.getaddrinfo(Native Method)
    at libcore.io.ForwardingOs.getaddrinfo(ForwardingOs.java:59)
    at java.net.InetAddress.lookupHostByName(InetAddress.java:405)
    … 25 more
    Caused by: libcore.io.ErrnoException: getaddrinfo failed: ENOENT (No such file or directory)
    … 28 more

    24 – [Apr-20 19:59 NUX] The response of system.listMethods was empty for https://postbd.cf/xmlrpc.php
    25 – [Apr-20 19:59 NUX] Trying system.listMethods on the following URL: https://postbd.cf/xmlrpc.php
    26 – [Apr-20 19:59 API] Volley error on https://postbd.cf/xmlrpc.php – exception: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    27 – [Apr-20 19:59 API] StackTrace: com.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:158)
    at com.android.volley.NetworkDispatcher.run(NetworkDispatcher.java:114)
    Caused by: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at java.net.InetAddress.lookupHostByName(InetAddress.java:394)
    at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
    at java.net.InetAddress.getAllByName(InetAddress.java:214)
    at okhttp3.Dns$1.lookup(Dns.java:39)
    at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:172)
    at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.java:138)
    at okhttp3.internal.connection.RouteSelector.next(RouteSelector.java:80)
    at okhttp3.internal.connection.StreamAllocation.findConnection(StreamAllocation.java:178)
    at okhttp3.internal.connection.StreamAllocation.findHealthyConnection(StreamAllocation.java:129)
    at okhttp3.internal.connection.StreamAllocation.newStream(StreamAllocation.java:98)
    at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:42)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:109)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:124)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:170)
    at okhttp3.RealCall.execute(RealCall.java:60)
    at org.wordpress.android.fluxc.network.OkHttpStack.performRequest(OkHttpStack.java:66)
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:97)
    … 1 more

    28 – [Apr-20 19:59 NUX] The response of system.listMethods was empty for https://postbd.cf/xmlrpc.php
    29 – [Apr-20 19:59 NUX] Trying system.listMethods on the following URL: https://postbd.cf
    30 – [Apr-20 19:59 API] Volley error on https://postbd.cf – exception: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    31 – [Apr-20 19:59 API] StackTrace: com.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:158)
    at com.android.volley.NetworkDispatcher.run(NetworkDispatcher.java:114)
    Caused by: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at java.net.InetAddress.lookupHostByName(InetAddress.java:394)
    at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
    at java.net.InetAddress.getAllByName(InetAddress.java:214)
    at okhttp3.Dns$1.lookup(Dns.java:39)
    at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:172)
    at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.java:138)
    at okhttp3.internal.connection.RouteSelector.next(RouteSelector.java:80)
    at okhttp3.internal.connection.StreamAllocation.findConnection(StreamAllocation.java:178)
    at okhttp3.internal.connection.StreamAllocation.findHealthyConnection(StreamAllocation.java:129)
    at okhttp3.internal.connection.StreamAllocation.newStream(StreamAllocation.java:98)
    at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:42)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:109)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:124)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:170)
    at okhttp3.RealCall.execute(RealCall.java:60)
    at org.wordpress.android.fluxc.network.OkHttpStack.performRequest(OkHttpStack.java:66)
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:97)
    … 1 more

    32 – [Apr-20 19:59 NUX] The response of system.listMethods was empty for https://postbd.cf
    33 – [Apr-20 19:59 NUX] Trying system.listMethods on the following URL: https://postbd.cf
    34 – [Apr-20 19:59 API] Volley error on https://postbd.cf – exception: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    35 – [Apr-20 19:59 API] StackTrace: com.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:158)
    at com.android.volley.NetworkDispatcher.run(NetworkDispatcher.java:114)
    Caused by: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at java.net.InetAddress.lookupHostByName(InetAddress.java:394)
    at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
    at java.net.InetAddress.getAllByName(InetAddress.java:214)
    at okhttp3.Dns$1.lookup(Dns.java:39)
    at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:172)
    at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.java:138)
    at okhttp3.internal.connection.RouteSelector.next(RouteSelector.java:80)
    at okhttp3.internal.connection.StreamAllocation.findConnection(StreamAllocation.java:178)
    at okhttp3.internal.connection.StreamAllocation.findHealthyConnection(StreamAllocation.java:129)
    at okhttp3.internal.connection.StreamAllocation.newStream(StreamAllocation.java:98)
    at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:42)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:109)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:124)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:170)
    at okhttp3.RealCall.execute(RealCall.java:60)
    at org.wordpress.android.fluxc.network.OkHttpStack.performRequest(OkHttpStack.java:66)
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:97)
    … 1 more

    36 – [Apr-20 19:59 NUX] The response of system.listMethods was empty for https://postbd.cf
    37 – [Apr-20 19:59 NUX] Invalid URL: postbd.cf
    38 – [Apr-20 19:59 NUX] system.listMethods failed for postbd.cf – exception: null
    39 – [Apr-20 19:59 NUX] StackTrace: org.wordpress.android.fluxc.network.discovery.SelfHostedEndpointFinder$DiscoveryException
    at org.wordpress.android.fluxc.network.discovery.SelfHostedEndpointFinder.doSystemListMethodsXMLRPC(SelfHostedEndpointFinder.java:405)
    at org.wordpress.android.fluxc.network.discovery.SelfHostedEndpointFinder.checkXMLRPCEndpointValidity(SelfHostedEndpointFinder.java:364)
    at org.wordpress.android.fluxc.network.discovery.SelfHostedEndpointFinder.verifyXMLRPCUrl(SelfHostedEndpointFinder.java:187)
    at org.wordpress.android.fluxc.network.discovery.SelfHostedEndpointFinder.verifyOrDiscoverXMLRPCEndpoint(SelfHostedEndpointFinder.java:133)
    at org.wordpress.android.fluxc.network.discovery.SelfHostedEndpointFinder.access$100(SelfHostedEndpointFinder.java:40)
    at org.wordpress.android.fluxc.network.discovery.SelfHostedEndpointFinder$1.run(SelfHostedEndpointFinder.java:108)
    at java.lang.Thread.run(Thread.java:856)

    40 – [Apr-20 19:59 NUX] The XML-RPC endpoint was not found by using our ‘smart’ cleaning approach. Time to start the Endpoint discovery process
    41 – [Apr-20 19:59 NUX] Running RSD discovery process on the following URLs: [postbd.cf, https://postbd.cf, https://postbd.cf]
    42 – [Apr-20 19:59 NUX] Downloading the HTML content at the following URL: https://postbd.cf
    43 – [Apr-20 19:59 API] Volley error on https://postbd.cf – exception: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    44 – [Apr-20 19:59 API] StackTrace: com.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:158)
    at com.android.volley.NetworkDispatcher.run(NetworkDispatcher.java:114)
    Caused by: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at java.net.InetAddress.lookupHostByName(InetAddress.java:394)
    at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
    at java.net.InetAddress.getAllByName(InetAddress.java:214)
    at okhttp3.Dns$1.lookup(Dns.java:39)
    at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:172)
    at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.java:138)
    at okhttp3.internal.connection.RouteSelector.next(RouteSelector.java:80)
    at okhttp3.internal.connection.StreamAllocation.findConnection(StreamAllocation.java:178)
    at okhttp3.internal.connection.StreamAllocation.findHealthyConnection(StreamAllocation.java:129)
    at okhttp3.internal.connection.StreamAllocation.newStream(StreamAllocation.java:98)
    at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:42)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:109)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:124)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:170)
    at okhttp3.RealCall.execute(RealCall.java:60)
    at org.wordpress.android.fluxc.network.OkHttpStack.performRequest(OkHttpStack.java:66)
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:97)
    … 1 more

    45 – [Apr-20 19:59 NUX] Content downloaded but it’s empty or null. Skipping this URL
    46 – [Apr-20 19:59 NUX] Downloading the HTML content at the following URL: https://postbd.cf
    47 – [Apr-20 19:59 API] Volley error on https://postbd.cf – exception: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    48 – [Apr-20 19:59 API] StackTrace: com.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:158)
    at com.android.volley.NetworkDispatcher.run(NetworkDispatcher.java:114)
    Caused by: java.net.UnknownHostException: Unable to resolve host “postbd.cf”: No address associated with hostname
    at java.net.InetAddress.lookupHostByName(InetAddress.java:394)
    at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236)
    at java.net.InetAddress.getAllByName(InetAddress.java:214)
    at okhttp3.Dns$1.lookup(Dns.java:39)
    at okhttp3.internal.connection.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:172)
    at okhttp3.internal.connection.RouteSelector.nextProxy(RouteSelector.java:138)
    at okhttp3.internal.connection.RouteSelector.next(RouteSelector.java:80)
    at okhttp3.internal.connection.StreamAllocation.findConnection(StreamAllocation.java:178)
    at okhttp3.internal.connection.StreamAllocation.findHealthyConnection(StreamAllocation.java:129)
    at okhttp3.internal.connection.StreamAllocation.newStream(StreamAllocation.java:98)
    at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:42)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:109)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:124)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:92)
    at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:67)
    at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:170)
    at okhttp3.RealCall.execute(RealCall.java:60)
    at org.wordpress.android.fluxc.network.OkHttpStack.performRequest(OkHttpStack.java:66)
    at com.android.volley.toolbox.BasicNetwork.performRequest(BasicNetwork.java:97)
    … 1 more

    49 – [Apr-20 19:59 NUX] Content downloaded but it’s empty or null. Skipping this URL
    50 – [Apr-20 19:59 API] Dispatching action: AuthenticationAction-DISCOVERY_RESULT
    51 – [Apr-20 19:59 API] onDiscoveryResponse has error: NO_SITE_ERROR – NO_SITE_ERROR
    52 – [Apr-20 19:59 API] Discover error: NO_SITE_ERROR

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘blocking mobile menu in footer’ is closed to new replies.