Page 1 of 2

Install Bludit in free web hosting

Posted: Tue May 14, 2019 10:49 pm
by diego
How to install Bludit in different free web hostings.

000webhost.com
Video tutorial: https://www.youtube.com/watch?v=KGwdL_1qW0g

Re: Install Bludit in free web hosting

Posted: Thu Aug 08, 2019 12:31 pm
by JaimeBurgos
Thanks for sharing the process. It really has ease the job. However, I want to know if the process is same for the Linode hosting server. If not then please create one generalized video covering other hosting providers. For example a video tutorial which lies for Microsoft Azure, Linode, and Cloudways, etc.

Re: Install Bludit in free web hosting

Posted: Wed Aug 21, 2019 8:53 pm
by diego
JaimeBurgos wrote: Thu Aug 08, 2019 12:31 pm Thanks for sharing the process. It really has ease the job. However, I want to know if the process is same for the Linode hosting server. If not then please create one generalized video covering other hosting providers. For example a video tutorial which lies for Microsoft Azure, Linode, and Cloudways, etc.
The Linode hosting server is free ?

Re: Install Bludit in free web hosting

Posted: Sat Jul 10, 2021 8:06 pm
by egglejan
This is a very useful video tutorial

Re: Install Bludit in free web hosting

Posted: Tue Jan 25, 2022 5:48 pm
by nferrari
Hello,

Bludit is available on alwaysdata Marketplace, meaning it can be installed with very few information, and in less then a minute. We do provide a free plan that is good enough to host Bludit 8-)

There you go: https://www.alwaysdata.com/en/marketpla ... rer:bludit

Regards,

Re: Install Bludit in free web hosting

Posted: Tue Jan 25, 2022 5:54 pm
by Edi
That's great! Thank you!

Re: Install Bludit in free web hosting

Posted: Sun Apr 09, 2023 5:29 pm
by 1dtravel
I Install Bludit in free web hosting.

My website was working at home. At localhost/bludit/. Now I have moved the site to hosting. In which files should I change the data in order for the site to work on my domain site.com?

I copied the files from the local hosting. Why am I getting error 500. If I want to log in to the site at mysite.com/admin / ?

The main page opens and there is no error. Error when I click a link or want to login.

Re: Install Bludit in free web hosting

Posted: Sun Apr 09, 2023 11:09 pm
by Edi
You can use the plugin Domain Migrator:

https://plugins.bludit.com/plugin/domain-migrator

Or you can change the URL in the file site.php in the directory /bl-content/databases.

Depending on the use of absolute or relative paths in the content you have to modify the links to images etc. manually.

Re: Install Bludit in free web hosting

Posted: Mon Apr 10, 2023 7:57 am
by 1dtravel
I was able to change the address in the admin panel to my domain. But the site is not working. Only the main page opens. Other pages are not working? Why?
Check it https://dtravel.name/burj-al-arab-hotel-location

https://dtravel.name/index.php

I see a error has appeared. The link should not be like this. It needs to be redirected 301. Otherwise it's a double. This is bad for the SEO.

I think a problem on .htaccess / Please, verify :
<IfModule mod_rewrite.c>

# Enable rewrite rules
RewriteEngine on

# Base directory
RewriteBase /

# Deny direct access to the next directories
RewriteRule ^bl-content/(databases|workspaces|pages|tmp)/.*$ - [R=404,L]

# All URL process by index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [PT,L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

</IfModule>

Re: Install Bludit in free web hosting

Posted: Mon Apr 10, 2023 8:50 am
by Edi
Please try with the default .htaccess:
AddDefaultCharset UTF-8

<IfModule mod_rewrite.c>

# Enable rewrite rules
RewriteEngine on

# Base directory
#RewriteBase /

# Deny direct access to the next directories
RewriteRule ^bl-content/(databases|workspaces|pages|tmp)/.*$ - [R=404,L]

# All URL process by index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [PT,L]

</IfModule>