This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.
hey people long time no see, I just learned how to use Surge XT Vst free plugin for music composing, I have composed few tacks, I will compose one more, it will take time to set it up my new music on my website
what happened to your website, I see a blank page ?
Maybe it was temporary as it worked fine on my browser.
I have suggestions to the website. It is currently not user-friendly. If you want to attract visitors, then you need to make it look attractive in terms of UI/UX. Visitors will bounce-back and will never return if they are not impressed within 3-5 seconds after first visit.
How can I add http to https to have both .htacess? RewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteCond %{HTTPS} off RewriteCond %{HTTP:CF-Visitor} !{"scheme":"https"} RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Is this correct ?
RewriteEngine On
# ensure www.
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# ensure https
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# ensure http
RewriteCond %{HTTP:X-Forwarded-Proto} !http
RewriteCond %{HTTP} off
RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
I would avoid to redirect to HTTP when there’s already a HTTPS redirect; maybe it’s better not to have any redirect to HTTPS at all if you also want your website to be available with HTTP as well, which isn’t recommended. You also have this part repeated:
RewriteEngine On
# ensure www.
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
I strongly suggest you to remove their second occurrences.
hey people I have been setting up, xaamp on my laptop, and my new music is almost ready to upload, always back up your website people
Hey people I have renovated my website yet again Now I have to work on mobile version
Why the menu isn’t working in android chrome?
It probably is a problem with the screen size.
when I check it, it seems that your CSS file refers to the menu button as “3 bars”, even though it shows as 2 on my end. Not sure how to fix that though, i’m not exactly a profesional at programming
Would suggest removing the mycustom.js refrence since that file doesnt exist, and changing the http:// link above to https:// instead
Also i don’t think this is intended:
Mixed content!
When you’re using HTTPS, each content must be loaded through the HTTPS protocol. To fix that, jQuery must be loaded through HTTPS; what you have to do is add an s
after http
to where jQuery’s CDN is referenced.
As for your other JavaScript file, make sure it’s uploaded correctly and referenced correctly in your code; that’s also the reason as to why your menu doesn’t open up. Also note that Linux servers are case-sensitive, so mycustom.js
isn’t the same as, say, MyCustom.js
or MyCustom.JS
.
I think the reason as to why that one is shown is because of a superfluous class="dropdown">
in his website’s code; so, @LukaszMusic2023, make sure to remove that one between the link that brings to the second music player and the third one as well to make sure the navbar shows up correctly on desktop devices.
What is a good free responsive dropdown menu that will work with mobile devices and on computers
Try using bootstrap or write your own
I’m going continue to work on the website, I went back to original code for now, I think I found the menu I like, I’m going to do more editing tomorrow
I think I have found the right template, I have tested it on the phone and it seems to be working, I will edit this template soon, now its brake time for me, I already started editing the template, its going to take time, the code is much cleaner
I was learning VisualStudio Code for editing websites, hopefully it will work better then Notepad++
Having used both, I prefer notepad++ myself. But each to their own