Experienced Elementalist
Joined
Apr 1, 2024
Messages
242
Reaction score
167
I had been working on this website for a while, then stopped — it was just missing a few final touches. I left it almost identical to the Pollux site, with only a few minor differences due to some things I couldn’t replicate. It still includes several systems from EP8 (like point converter, starter kit, VIP system, and so on). Some systems I removed, like character transfer and prize roulette, but most of them are still there.


For anyone looking for a site and struggling to find something more up to date — this one uses Bootstrap 5, Tailwind, and Java pretty much everywhere. It’s relatively secure (nothing extremely robust, so if you need stronger protection, you’ll have to implement it yourself), but overall, it’s a clean, simple, and functional website.


It follows the same structure as other sites that have been shared here, like Pandemonium’s — with content pages stored under template/request, and general configuration in web_conexao. The databases are included and already configured to work properly. It’s also compatible with EP35, since it supports all 9 classes, though you’ll need to edit a few things because the database structure will obviously be different.

Works for EP33 And EP8 (6 and 9 Class)




If you have any questions, feel free to reply here and I’ll help you solve them. :cool:

Password: ragezone
 
Last edited:
Fatal error : Uncaught PDOException: SQLSTATE[42S22]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Invalid column name 'ClassStyle'. in C:\xampp\htdocs\template\request\ranking_online.php:12 Stack trace: #0 C:\xampp\htdocs\template\request\ranking_online.php(12): PDOStatement->execute() #1 C:\xampp\htdocs\index.php(315): include('C:\\xampp\\htdocs...') #2 {main} thrown in C:\xampp\htdocs\template\request\ranking_online.php on line 12

Latest News​

Error fetching news: SQLSTATE[42S02]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Invalid object name 'webdb.dbo.cabal_m_get_notices'.

No news found.


DB support EP33 👇

View attachment 286621



View attachment 286620
Look at your webdb it's webdb,bak instead of webdb.bak and you need to restore it too.

+

The bold one is not found on your database.

Invalid column name 'ClassStyle'. in C:\xampp\htdocs\template\request\ranking_online.php:12 Stack trace: #0

PS: I didn't use or tried to setup this website, just telling base on your log error.
 
Fatal error : Uncaught PDOException: SQLSTATE[42S22]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Invalid column name 'ClassStyle'. in C:\xampp\htdocs\template\request\ranking_online.php:12 Stack trace: #0 C:\xampp\htdocs\template\request\ranking_online.php(12): PDOStatement->execute() #1 C:\xampp\htdocs\index.php(315): include('C:\\xampp\\htdocs...') #2 {main} thrown in C:\xampp\htdocs\template\request\ranking_online.php on line 12

Latest News​

Error fetching news: SQLSTATE[42S02]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Invalid object name 'webdb.dbo.cabal_m_get_notices'.

No news found.


DB support EP33 👇

View attachment 286621



View attachment 286620
webdb,bak? it's webdb.bak
Is this DB suitable and supported for ep33 or do I need to modify some DB files? bcos some DB for EP8
Yes, it's suitable, but you'll need to adjust some parts of the code. For example, the ClassStyle column exists in the cabal_character_table in EP8 databases, but it might not exist in the EP33 version you're using. The table structure could be different, so you may need to adapt your code accordingly depending on the schema of your current database.
 
Is this DB suitable and supported for ep33 or do I need to modify some DB files? bcos some DB for EP8
put that into you website folder, replace everything and your website will work with ep33+ dbs.

P.S. if you want to use Starter Kit, create this table in server01:
USE [SERVER01]
GO

/****** Object: Table [dbo].[cabal_Kit_Log] Script Date: 08/06/2025 01:09:37 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING ON
GO

CREATE TABLE [dbo].[cabal_Kit_Log](
[UserNum] [int] NOT NULL,
[DataEnvio] [datetime] NULL,
[Kit] [int] NULL,
[Enviado] [int] NULL,
[Enviado1] [int] NULL,
[Enviado2] [int] NULL,
[Enviado3] [int] NULL,
[Enviado4] [int] NULL,
[Enviado5] [int] NULL,
[Enviado6] [int] NULL,
[Enviado7] [int] NULL,
[Enviado8] [int] NULL,
[Enviado9] [int] NULL,
[Kit1] [int] NULL,
[Kit2] [int] NULL,
[Kit3] [int] NULL,
[Kit4] [int] NULL,
[Kit5] [int] NULL,
[Kit6] [int] NULL,
[Kit7] [int] NULL,
[Kit8] [int] NULL,
[Kit9] [int] NULL,
[ID] [varchar](50) NULL
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO


use the .sql file that i put inside this fix to create the send_starter_kit procedure and it will work.
 

Attachments

1754485287466 - Website NewCabal - RaGEZONE Forums

1754485333465 - Website NewCabal - RaGEZONE Forums

1754485501613 - Website NewCabal - RaGEZONE Forums
 
your ranking_geral.php probably isn't the right one, if you are using ep8 9 class use the files from the post, but if you are using ep33+ files, use the fix for ep33+: https://forum.ragezone.com/attachments/fix-for-ep33-database-rar.286713/

you are using ep33+ files, use the fix for ep33 https://forum.ragezone.com/attachments/fix-for-ep33-database-rar.286713/
 
Back