I was installing the SSL for my website. The SSL is installed but I get an error which is in the attached image:
define('OW_URL_HOME', 'https://sitename.co/');
and
# Use PHPBETA as defaultAddHandler application/x-httpd-phpbeta .php# For security reasons, Option followsymlinks cannot be overridden.#Options +FollowSymLinksOptions +SymLinksIfOwnerMatch
RewriteEngine On RewriteCond %{HTTPS} !=onRewriteRule ^(.*)$ https://sitename.co/$1 [R=301,L]
AddEncoding gzip .gzAddEncoding gzip .gzip<FilesMatch "\.(js.gz|js.gzip)$"> ForceType text/javascript</FilesMatch><FilesMatch "\.(css.gz|css.gzip)$"> ForceType text/css</FilesMatch>
RewriteCond %{HTTP_HOST} ^sitename\.co [NC]
RewriteCond %{REQUEST_URI} !^/index\.phpRewriteCond %{REQUEST_URI} !/ow_updates/index\.phpRewriteCond %{REQUEST_URI} !/ow_updates/RewriteCond %{REQUEST_URI} !/ow_cron/run\.phpRewriteCond %{REQUEST_URI} !/e500\.php#RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]RewriteCond %{REQUEST_FILENAME} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC]RewriteRule (.*) index.php
These are the changes that I have made.