Xaxino - Ultimate Casino Platform

Xaxino - Ultimate Casino Platform v3.2 NULLED

No permission to download

lorfalo

New member
Jan 22, 2023
15
1
3
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.
 

CKRU

Member
Jan 10, 2023
43
10
8
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
?
 

lorfalo

New member
Jan 22, 2023
15
1
3
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
 

CKRU

Member
Jan 10, 2023
43
10
8
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

lorfalo

New member
Jan 22, 2023
15
1
3
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
 

lorfalo

New member
Jan 22, 2023
15
1
3
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?
 

CKRU

Member
Jan 10, 2023
43
10
8
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
 

lorfalo

New member
Jan 22, 2023
15
1
3
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.
 

FTD Team

Active member
Null Master
Trusted Uploader
Banned User
Dec 20, 2020
57
101
33
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

CKRU

Member
Jan 10, 2023
43
10
8
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

lorfalo

New member
Jan 22, 2023
15
1
3
@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:

lorfalo

New member
Jan 22, 2023
15
1
3
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.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu