vb5 on iPhone4s

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mnicholet
    Member
    • Sep 2012
    • 40

    vb5 on iPhone4s

    I get forum error

    HTTP 0 -

    in iphone4s occasionally;

    My logo in header is missing in safari and chrome on the 4s.

    Thank you.
  • vijayninel
    Senior Member
    • Mar 2009
    • 235
    • 3.8.x

    #2
    Also on iPad .. .but it seems to be ok Dolphin browser/android tablet except that pinch to zoom does not work.


    Last edited by vijayninel; Mon 1 Oct '12, 9:45pm.
    www.erodov.com :cool:

    Comment

    • Wayne Luke
      vBulletin Technical Support Lead
      • Aug 2000
      • 73979

      #3
      the URL for the demo is http://www.vbulletin.com/vb5demo. Without the www. you will get that http -0 error. They are supposed to be updating the .htaccess so it redirects before it hits the software.
      Translations provided by Google.

      Wayne Luke
      The Rabid Badger - a vBulletin Cloud demonstration site.
      vBulletin 5 API

      Comment

      • Paul K
        Senior Member
        • Jun 2010
        • 436

        #4
        Originally posted by Wayne Luke
        the URL for the demo is http://www.vbulletin.com/vb5demo. Without the www. you will get that http -0 error. They are supposed to be updating the .htaccess so it redirects before it hits the software.

        Is this a general 'feature'? Is this only at vb.com or is this bug also in the main product?

        Comment

        • soniceffect
          Senior Member
          • Feb 2005
          • 938
          • 4.2.X

          #5
          Not so much a bug, as a redirect problem as Wayne said. Not sure if its in the redirect file in the download to be honest.
          Husky Owners Forum - For all Siberian Husky Owners

          Comment

          • Trevor Hannant
            vBulletin Support
            • Aug 2002
            • 24325
            • 5.7.X

            #6
            Originally posted by Paul K
            Is this a general 'feature'? Is this only at vb.com or is this bug also in the main product?
            I would always recommend picking one or the other and using .htaccess to redirect all traffic to that version
            Vote for:

            - Admin Settable Paid Subscription Reminder Timeframe (vB6)
            - Add Admin ability to auto-subscribe users to specific channel(s) (vB6)

            Comment

            • Paul K
              Senior Member
              • Jun 2010
              • 436

              #7
              Originally posted by Trevor Hannant
              I would always recommend picking one or the other and using .htaccess to redirect all traffic to that version
              I figured so, I've got it on a subdomain, but the question was, does it run/work on both www. and without without a problem as on vb.com?

              Comment

              • Wayne Luke
                vBulletin Technical Support Lead
                • Aug 2000
                • 73979

                #8
                Originally posted by Paul K
                I figured so, I've got it on a subdomain, but the question was, does it run/work on both www. and without without a problem as on vb.com?
                Not at the same time. All "www" entails is it is a subdomain. If you have it installed within a subdomain your users will have to access it via subdomain.domain.tld. They will not be able to access it via domain.tld.
                Translations provided by Google.

                Wayne Luke
                The Rabid Badger - a vBulletin Cloud demonstration site.
                vBulletin 5 API

                Comment

                • OhioDave
                  Banned
                  • Jul 2012
                  • 244

                  #9
                  so if someone types

                  domain.com it will work

                  but if they type

                  www.domain.com it wont work?

                  Comment

                  • Wayne Luke
                    vBulletin Technical Support Lead
                    • Aug 2000
                    • 73979

                    #10
                    Originally posted by OhioDave
                    so if someone types

                    domain.com it will work

                    but if they type

                    www.domain.com it wont work?
                    Just like with vb4, you would want to redirect them to one or the other to make sure everything works.
                    Translations provided by Google.

                    Wayne Luke
                    The Rabid Badger - a vBulletin Cloud demonstration site.
                    vBulletin 5 API

                    Comment

                    • mnicholet
                      Member
                      • Sep 2012
                      • 40

                      #11
                      Example for htaccess file

                      Redirect non-www to www (both: http + https)


                      RewriteCond %{HTTPS} off
                      RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
                      RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

                      RewriteCond %{HTTPS} on
                      RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
                      RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]

                      Comment

                      Related Topics

                      Collapse

                      Working...