ViserHotel - Ultimate Hotel Booking Solution
已破解 

ViserHotel - 最佳酒店预订解决方案 3.0.0 Nulled

免费下载需要注册或登录
已加入
2021/09/11
消息
10,150
回应得分
3,057
Credits
$15,214
感谢亲爱的会员 @theresa提交了一个新的资源:ViserHotel - Ultimate Hotel Booking Solution-ViserHotel是带有PHP Laravel的终极酒店预订解决方案。
查看附件 85842
ViserHotel 是一个带有 PHP Laravel 的 Ultimate 酒店预订解决方案。它为那些想要开设酒店网站的人而开发。用户可以从网站上预订房间,这被视为预订请求。管理员或前台需要批准该请求并通过分配房间来处理。用户可以通过在线支付系统付款。
Read more about this resource...
 
thanks to dear member @Zechariah updated ViserHotel - Ultimate Hotel Booking Solution with a new update entry:

13th June 2024

[ADD] Push Notification
[ADD] Social Login
[ADD] Binance Payment Gateway
[ADD] Aamarpay Payment Gateway
[ADD] SslCommerz Payment Gateway
[ADD] Slug Management for Blogs
[ADD] SEO Content Management for Blog
[ADD] Slug Management for Policy Pages
[ADD] SEO Content Management for Policy Pages
[ADD] Input Type Number, URL, Date, and Time in the Form Generator
[ADD] Configurable Input Filed Width in the Form Generator
[ADD] Configurable Hints/Instructions for Input Fields in the Form Generator...

Read the rest of this update entry...
 
core/storage/framework/ nécessite l'autorisation 0775. L'autorisation actuelle est 0755 i have this error
 
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 :-(
 
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

代码:
                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
 
上次编辑:
demo sql and .env info
.env
代码:
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
 
附件
返回
顶部