• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Xaxino - Ultimate Casino Platform

Xaxino - Ultimate Casino Platform v2.3 Untouched

No permission to download
bo bro. ssl work for real domain names. for localhost u need fix main url on scripts or db
I am running on local LAN, on my apache, i access through localhost, on another PC, i access by private IP address, what do you mean "fix main url on scripts"?
my xaxino is 1.2, installation when smooth, DB already imported successfully, everything run smoothly, just that unable to display css stylesheet.
 
I am running on local LAN, on my apache, i access through localhost, on another PC, i access by private IP address, what do you mean "fix main url on scripts"?
my xaxino is 1.2, installation when smooth, DB already imported successfully, everything run smoothly, just that unable to display css stylesheet.
check /core/.env pls
Code:
APP_URL=http://localhost
or
Code:
APP_URL=https://localhost
?
 
check /core/.env pls
Code:
APP_URL=http://localhost
or
Code:
APP_URL=https://localhost
?
when I am accessing from my another PC, here are the error (shown in developer mode) (all javascript unable to load, there is no error register in apache or at laravel log file at all)

34324324.PNG
 
when I am accessing from my another PC, here are the error (shown in developer mode) (all javascript unable to load, there is no error register in apache or at laravel log file at all)

34324324.PNG
on db mysql table general_settings search column force_ssl and set 0
check it
 
  • Like
Reactions: lorfalo
could you tell me your setup? apache version, php version, ubuntu version, mysqlversion?
mine are as follow

  • Server: Localhost via UNIX socket
  • Server type: MySQL
  • Server connection: SSL is not being used Documentation
  • Server version: 8.0.32-0buntu0.20.04.1 - (Ubuntu)
  • Protocol version: 10
  • User: root@localhost
  • Server charset: UTF-8 Unicode (utf8mb4)
  • Apache/2.4.41 (Ubuntu)
  • Database client version: libmysql - mysqlnd 8.1.14
  • PHP extension: mysqliDocumentation curlDocumentation mbstringDocumentation
  • PHP version: 8.1.14
  • Phpmyadmin Version information: 4.9.5deb2
 
force_ssl already was 0
pls delete 0 and save(test must be null column)

/core/app/Providers/AppServiceProvider.php
Code:
if($general->force_ssl){
            \URL::forceScheme('https');
        }
mybe it reason
 
could you tell me your setup? apache version, php version, ubuntu version, mysqlversion?
mine are as follow

  • Server: Localhost via UNIX socket
  • Server type: MySQL
  • Server connection: SSL is not being used Documentation
  • Server version: 8.0.32-0buntu0.20.04.1 - (Ubuntu)
  • Protocol version: 10
  • User: root@localhost
  • Server charset: UTF-8 Unicode (utf8mb4)
  • Apache/2.4.41 (Ubuntu)
  • Database client version: libmysql - mysqlnd 8.1.14
  • PHP extension: mysqliDocumentation curlDocumentation mbstringDocumentation
  • PHP version: 8.1.14
  • Phpmyadmin Version information: 4.9.5deb2


pls delete 0 and save(test must be null column)

/core/app/Providers/AppServiceProvider.php
Code:
if($general->force_ssl){
            \URL::forceScheme('https');
        }
mybe it reason
del.PNG

delete this row, right?
 
could you tell me your setup? apache version, php version, ubuntu version, mysqlversion?
mine are as follow

  • Server: Localhost via UNIX socket
  • Server type: MySQL
  • Server connection: SSL is not being used Documentation
  • Server version: 8.0.32-0buntu0.20.04.1 - (Ubuntu)
  • Protocol version: 10
  • User: root@localhost
  • Server charset: UTF-8 Unicode (utf8mb4)
  • Apache/2.4.41 (Ubuntu)
  • Database client version: libmysql - mysqlnd 8.1.14
  • PHP extension: mysqliDocumentation curlDocumentation mbstringDocumentation
  • PHP version: 8.1.14
  • Phpmyadmin Version information: 4.9.5deb2



del.PNG

delete this row, right?
not delete
if change
Code:
if($general->force_ssl){

            \URL::forceScheme('https');

        }
to
Code:
if($general->force_ssl){

            \URL::forceScheme('http');

        }

or delete 0 from force_ssl column.

check it pls
 
not delete
if change
Code:
if($general->force_ssl){

            \URL::forceScheme('https');

        }
to
Code:
if($general->force_ssl){

            \URL::forceScheme('http');

        }

or delete 0 from force_ssl column.

check it pls
can't delete the 0, is error #1067 - Invalid default value for 'force_ssl'

can i just set it to NULL?

also i change from https to http at the code, wont works.
 
You filled 1 and a half page of discussion but you both don't realize something:
localhost means local host. If you want to access it from lan or web it isn't localhost anymore.
you have 2 options (beside setting force_ssl to 0 though I don't think is a good idea as paths might be hardcoded in the script)
1. in your env file instead of http://localhost put http://your-local-lan-machine-ip
2. edit your hosts file and add:
Code:
127.0.0.1 xaxino.test
192.(your machine ip) xaxino.test
then access your local staging website with xaxino.test
(it's possible that you might have to change hosts file also on machine you're accessing from lan and put 192.(xaxino host ip) xaxino.test)
 
  • Like
Reactions: lorfalo
You filled 1 and a half page of discussion but you both don't realize something:
localhost means local host. If you want to access it from lan or web it isn't localhost anymore.
you have 2 options (beside setting force_ssl to 0 though I don't think is a good idea as paths might be hardcoded in the script)
1. in your env file instead of http://localhost put http://your-local-lan-machine-ip
2. edit your hosts file and add:
Code:
127.0.0.1 xaxino.test
192.(your machine ip) xaxino.test
then access your local staging website with xaxino.test
(it's possible that you might have to change hosts file also on machine you're accessing from lan and put 192.(xaxino host ip) xaxino.test)
Code:
FORCE_HTTPS=false
on .env of this verion not avallibe
only hardcode
 
  • Like
Reactions: lorfalo
@FTD Team i have done, all the above steps, but problem persist. I cant post lengthy post here, as i have newbie restriction when posting. pastebin/vnCFzVcN this is the url for my browser error, which i believe my apache2 conf is not done properly
 
Last edited:
here is the update, I can verify the problem lies with laravel, I use the \Documentation folder and hosted on the apache, it can load the page with css without any problem at all.
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock