Recent Topics

Members
Stats
  • Total Posts: 10,737
  • Total Topics: 1,372
  • Online today: 229
  • Online ever: 879
  • (Jan 21, 20, 05:49:15 PM)
Users Online
Users: 0
Guests: 196
Total: 196

New to Cripzone, new to forums generally

Started by nidec, Sep 20, 19, 09:01:02 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Skhilled

#10
I was just at your site and noticed you've changed the theme and have the same issue. This makes me think one of your mods is not installed correctly or may be conflicting with another mod and is causing this issue.

I can see that your left and right TP panels do not have the border completely around them. The top and bottom parts of the border are missing. I see that with every theme you have installed or switched to within the past two hours.

nidec

#11
What's really puzzling me is that it was fine up to yesterday.  All ive done is added some padding around the search box in Cleantek and changed to https.
Other themes ive tried work better than Cleantek although I haven't got my logo showing, and I much prefer Cleantek.
I've put it back to Cleantek for now so you can see how much is missing

Skhilled

#12
Quote from: nidec on Oct 08, 19, 06:31:00 PM
Ive added a ticker tape showing live share and forex prices.
Is there a way to remove the "News" like we have at top left on this site?


One other thing,  ive noticed that if I click on my forum url in my 1st post above I get an old version that used to show before I did the repair to make everything https instead of http (does that make sense? )

Remember when you said that? I noticed this as well and that's what I saw when using www. Without it the site worked fine. This was happening before you added the https. Please post the contents of your .htaccess file. Also, was there another way that you tried to implement https before the way I showed you?

What mods do you have installed?

nidec

Hi, I think Im getting there.
.htaccess contains this

      text/x-generic .htaccess  (  UTF-8 Unicode English text )
RewriteEngine on #RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC] #RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC] # php -- BEGIN cPanel-generated handler, do not edit # Set the "ea-php71" package as the default "PHP" programming language. <IfModule mime_module> AddHandler application/x-httpd-ea-php71 .php .php7 .phtml </IfModule> # php -- END cPanel-generated handler, do not edit 

Skhilled

#14
You do have the first line of the code I showed you from my site but not the other 2:


RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]


If you already have a .htaccess file you'll want to add ONLY the 2nd and 3rd lines directly after the first instance of:

RewriteEngine On

The rest of the code after the first that you have was generated by cPanel.

EDIT: Basically, it should look like this:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
#RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]
# php -- BEGIN cPanel-generated handler, do not edit
# Set the "ea-php71" package as the default "PHP" programming language.
<IfModule mime_module> AddHandler application/x-httpd-ea-php71 .php .php7 .phtml </IfModule>
# php -- END cPanel-generated handler, do not edit

Skhilled