ViserHotel - Ultimate Hotel Booking Solution 3.0.0 Nulled

No permission to download
Joined
Sep 11, 2021
Messages
5,558
Reaction score
2,677
Credits
$2,751
thanks to dear member @theresa submitted a new resource:

ViserHotel - Ultimate Hotel Booking Solution - ViserHotel is an Ultimate Hotel Booking Solution that comes with PHP Laravel.


Read more about this resource...
 
thanks to dear member @Zechariah updated ViserHotel - Ultimate Hotel Booking Solution with a new update entry:

13th June 2024


Read the rest of this update entry...
 
you need to config folder permisson to 0777 ,you can find result on installation page
Thank you for response ,
It's ok for permission , but there is an other probleme with databe :

Problem Occurred When Importing Database!​

Try again. Or you can ask for support by creating a support ticket.​

I try in cpanel to creat and i try in other server not working :-(
 
it is only support mysql8- ,you can not use mysql8.4 and mysql9 etc
make sure your database username and password was right
 
Thank you for your answer my host is hostinger I have a cloud hosting
I checked the mysql version on phpmyadmin answer: 10.11.9-MariaDB
I tested on another cpanel server of namehseap same problem
Thank you for your help
 
Thank you for your answer my host is hostinger I have a cloud hosting
I checked the mysql version on phpmyadmin answer: 10.11.9-MariaDB
I tested on another cpanel server of namehseap same problem
Thank you for your help
you can find DATABaSE limit from install/index.php

Code:
                if (strtolower($engine) == 'mariadb') {
                    if (!version_compare($version, '10.6', '>=')) {
                        $response['error']   = 'error';
                        $response['message'] = 'MariaDB 10.6+ Or MySQL 8.0+ Required. <br> Your current version is MariaDB ' . $version;
                    }
                } else {
                    if (!version_compare($version, '8.0', '>=')) {
                        $response['error']   = 'error';
                        $response['message'] = 'MariaDB 10.6+ Or MySQL 8.0+ Required. <br> Your current version is MySQL ' . $version;
                    }
                }
            } catch (Exception $e) {
                $response['error']   = 'error';
                $response['message'] = $_POST['db_type'] == 'create-new-database' ? 'There is a problem with creating the database.' : 'Database Credential is Not Valid';
            }
        }
        if (@$response['error'] == 'ok') {
            try {
                $query = file_get_contents("database.sql");
                $stmt  = $db->prepare($query);
                $stmt->execute();
                $stmt->closeCursor();
            } catch (Exception $e) {
                $response['error']   = 'error';
                $response['message'] = 'Problem Occurred When Importing Database!<br>Please Make Sure The Database is Empty.';
            }
        }

it is not support your database version .you can try to import database.sql to your database.
you can find online dmeo in here
 
Last edited:
demo sql and .env info
.env
Code:
APP_NAME=viserhotel
APP_ENV=production
APP_KEY=base64:aDaFvlCBwjC9E/BYwRCw2pZkbMdnCqbf/YflISEFL0o=
APP_DEBUG=false
APP_URL=https://a8.neayo.com/
LOG_CHANNEL=stack
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=test80
DB_USERNAME=test80
DB_PASSWORD=test80
PURCHASECODE=10101000-0101-0100-0010-001101000010
 
Attachments