• Free MU CMS - Latest Release 5 0 5 1

Free MU CMS - Latest Release

Started by Expert, Dec 26, 2024, 11:27 PM

Expert

Free MU CMS by Pulse - Latest Release

This is from his github

Development is now private.

For a Season 20 compatible version, you can contact me on discord: pulse1986 price is $100

It comes with all the premium plugins that many sell, and the default realmuv2 template, the support for bug fixes will be provided.

Each new season update will be paid 60$

The cms has no license system so your free to use on any server.

It is open source so sharing with others is on your conscience, but if you want good working relationships i would suggest not sharing or reselling it.

I accept only crypto payments.

We now know that Salvis is Pulse and planning to scam tons of people again since he only accepts crypto as a payment method so no refund will be made, i am releasing this as a gift to the community.

Please use it at your own risk! This is an open source so feel free to check for any backdoors he might added there

Merry Christmas and Happy New Year everyone!

You require the following to view this post content:
  • To see this content, please click the "-SAY THANKS-" button located on the bottom-right of this post.


Jacamo

#1
Thanks.
  •  
    The following users thanked this post: fratika

Expert


Mosulica

  •  
    The following users thanked this post: fratika

Jacamo

the site is no working. i mean the index , admin panel is work after installed.

Screenshot_2.png
Screenshot_3.png
Screenshot_4.png
   
  •  

Expert

Maybe you are using lower version.

Go to application\views\pulse\home\ rename the view.homeS6.php to view.home.php since view.home.php uses season 20 template.

also, make sure to add the code inside add_to_constants.txt to constants.php

Jacamo

I did, but it's not working, still the same. I use S6 Louis, Sovahost hosting. I tried changing from PHP 8.1 to 8.4, but the issue remains.


Server Error
We're sorry! The server encountered an internal error and was unable to complete your request. Please try again later.

error 500 | 27. 12. 2024 00:45
  •  
    The following users thanked this post: fratika

Expert

Go to constants.php change production to development and save. Then error will display

Jacamo

Solution for SQL Server Compatibility and Arca Battle Issues

I've resolved the issue, and I'd like to share my experience to help others facing similar problems.

The problem occurred because I'm using SQL Server 2008, while the site is designed for newer versions like SQL Server 2012 or higher. This caused compatibility issues, particularly with SQL queries using OFFSET ... FETCH, which isn't supported in SQL Server 2008.



The Issue and Fix

Affected File:
/application/libraries/DBEngines/pdo_dblib.php

Original Problem:
The query method in this file needed adjustments to replace the incompatible OFFSET ... FETCH syntax with a compatible alternative for SQL Server 2008.

Fix:
I modified the query function to detect and adjust SQL queries dynamically. Here's the updated code:

public function query($query) { try { // Detect and adjust queries using OFFSET FETCH if (stripos($query, 'OFFSET') !== false && stripos($query, 'FETCH') !== false) { // Extract FETCH NEXT limit if (preg_match('/FETCH NEXT (\d+) ROWS ONLY/i', $query, $matches)) { $fetchLimit = intval($matches[1]); // Remove OFFSET FETCH syntax $query = preg_replace('/OFFSET \d+ ROWS FETCH NEXT \d+ ROWS ONLY/i', '', $query); // Add TOP to SELECT $query = preg_replace('/^SELECT/i', 'SELECT TOP ' . $fetchLimit, $query); } }

kotlin
Copy code
    // Execute the adjusted query
    $this->query = $this->db_conn->query($query);

    // Log SQL if enabled
    if (defined('LOG_SQL') && LOG_SQL == true) {
        $this->log($this->query->queryString, 'database_log_' . date('Y-m-d', time()) . '.txt');
    }

    return $this;
} catch (Exception $e) {
    // Log the error and query
    $this->log($query, 'database_error_log_' . date('Y-m-d', time()) . '.txt');
    $this->log($e, 'database_error_log_' . date('Y-m-d', time()) . '.txt');
    throw new Exception('SQL syntax error. Please check application/logs/database_error_log_' . date('Y-m-d', time()) . '.txt for details.');
}
}

This adjustment ensures compatibility by replacing OFFSET ... FETCH with SELECT TOP syntax.



Resolving Arca Battle Issues

The second issue was related to the Arca Battle feature and occurred because the site was using a view file for a different season (e.g., Season 19). Since I'm using Season 6, I had to update the corresponding view file.

Solution:

Navigate to the directory:
/application/views/pulse/home/
Rename the files as follows:
view.home.php → view.home123.php
view.homeS6.php → view.home.php
This ensures that the correct view file for Season 6 is used.



Outcome

After making these changes:

The SQL Server compatibility issue was resolved, and the site runs perfectly on SQL Server 2008.
The Arca Battle view now loads correctly for Season 6, without errors or missing data.



Screenshot_5.png
Screenshot_6.png
Screenshot_7.png
   
  •  
    The following users thanked this post: fratika

Jacamo

Can you please explain to me why the old username doesn't let me log in?
Why doesn't the ranking and online players feature work, except in the admin panel where it works perfectly?
I registered a new username, and it lets me log in with it, but it's strange that it doesn't show online players and ranking
  •  
    The following users thanked this post: fratika

dmtuan23

can you write a summary of the installation steps? i get an error at the sql config step.

  •  
    The following users thanked this post: fratika

dmtuan23

[2024-12-27 02-45-11] Exception: SQLSTATE: HYT00, code: 0, message: [Microsoft][ODBC Driver 17 for SQL Server]Login timeout expired<br />SQLSTATE: 08001, code: 87, message: [Microsoft][ODBC Driver 17 for SQL Server]MAX_PROVS: Connection string is not valid [87]. <br />SQLSTATE: 08001, code: 87, message: [Microsoft][ODBC Driver 17 for SQL Server]A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online.<br /> in /home/muguidec/tintuc.muguide.com.vn/application/libraries/DBEngines/sqlsrv.php:55  @  https://tintuc.muguide.com.vn/setup/index.php?action=setup/step3  @@  exception--2024-12-27--02-45--ee61ae3676.html
  •  
    The following users thanked this post: fratika

Expert

No idea, i tried installing it on Louis V38 Update and I can login even old accounts.

For rankings you should go to

admincp/manage-settings/rankings and enable it

Make sure you set the table to Louis

admincp/manage-settings/tables

Add your gameserver here

admincp/game-server-list-manager
  •  
    The following users thanked this post: fratika

Expert

Quote from: dmtuan23 on Dec 27, 2024, 04:54 AM[2024-12-27 02-45-11] Exception: SQLSTATE: HYT00, code: 0, message: [Microsoft][ODBC Driver 17 for SQL Server]Login timeout expired<br />SQLSTATE: 08001, code: 87, message: [Microsoft][ODBC Driver 17 for SQL Server]MAX_PROVS: Connection string is not valid [87]. <br />SQLSTATE: 08001, code: 87, message: [Microsoft][ODBC Driver 17 for SQL Server]A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible. Check if instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online.<br /> in /home/muguidec/tintuc.muguide.com.vn/application/libraries/DBEngines/sqlsrv.php:55  @  https://tintuc.muguide.com.vn/setup/index.php?action=setup/step3  @@  exception--2024-12-27--02-45--ee61ae3676.html

Make sure you created database for website and add dbowner permission
  •  
    The following users thanked this post: fratika

NghienMU

why is he a scammer? i don't understand. can someone explain to me?
  •  
    The following users thanked this post: fratika

fratika

There's no one scammer, there were just misunderstandings between developers.
everything starts with money.  ;)
Fratika is the best :D
  •  

Powered by SMFPacks Ads Manager Mod