teşekkürler
Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz..
Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
vSRO Paylaşım vSRO PHP Panel - PurePanel Ücretsiz (8 Farklı Tema) En gelişmiş vSRO Panel (Kurulum Videolu)
- Konuyu Başlatan Spare
- Başlangıç tarihi
abi link varmi ?
Msg 1781, Level 16, State 1, Line 55
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 55
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 58
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 58
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 61
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 61
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 64
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 64
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 67
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 67
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 70
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 70
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 73
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 73
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 76
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 76
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 79
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 79
Could not create constraint or index. See previous errors.
Completion time: 2025-10-05T06:01:23.9385321+04:00
Msg 1781, Level 16, State 1, Line 55
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 55
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 58
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 58
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 61
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 61
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 64
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 64
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 67
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 67
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 70
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 70
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 73
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 73
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 76
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 76
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 79
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 79
Could not create constraint or index. See previous errors.
Completion time: 2025-10-31T00:46:36.3644146+04:00
USE [SRO_VT_ACCOUNT]
GO
/****** Object: Table [dbo].[TB_User] Script Date: 06.07.2019 16:12:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[TB_User](
[JID] [int] IDENTITY(1,1) NOT NULL,
[StrUserID] [varchar](25) NOT NULL,
[password] [varchar](50) NOT NULL,
[Status] [tinyint] NULL,
[GMrank] [tinyint] NULL,
[Name] [nvarchar](50) NULL,
[varchar](50) NULL,
[sex] [char](2) NULL,
[certificate_num] [varchar](30) NULL,
[address] [nvarchar](100) NULL,
[postcode] [varchar](10) NULL,
[phone] [varchar](20) NULL,
[mobile] [varchar](20) NULL,
[regtime] [datetime] NULL,
[reg_ip] [varchar](25) NULL,
[Time_log] [datetime] NULL,
[freetime] [int] NULL,
[sec_primary] [tinyint] NOT NULL CONSTRAINT [DF_TB_User_sec_primary] DEFAULT ((3)),
[sec_content] [tinyint] NOT NULL CONSTRAINT [DF_TB_User_sec_content] DEFAULT ((3)),
[AccPlayTime] [int] NOT NULL CONSTRAINT [DF__TB_User__AccPlay__3BFFE745] DEFAULT ((0)),
[LatestUpdateTime_ToPlayTime] [int] NOT NULL CONSTRAINT [DF__TB_User__LatestU__3CF40B7E] DEFAULT ((0)),
[Play123Time] [int] NOT NULL CONSTRAINT [DF_TB_User_Play123Time] DEFAULT ((0)),
[Ban] [int] NULL CONSTRAINT [DF_TB_User_Ban] DEFAULT ((1)),
[Money] [real] NULL CONSTRAINT [DF_TB_User_Money] DEFAULT ((0)),
[Cafe] [int] NULL CONSTRAINT [DF_TB_User_Cafe] DEFAULT ((0)),
[last_login] [smalldatetime] NULL,
[last_ip] [varchar](50) NULL,
[joindate] [smalldatetime] NULL,
[credit] [int] NOT NULL CONSTRAINT [DF_TB_User_credit] DEFAULT ((0)),
[rememberpass] [varchar](50) NULL,
[game_credit] [int] NULL,
CONSTRAINT [PK_TB_User] PRIMARY KEY CLUSTERED
(
[JID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_sec_primary] DEFAULT ((3)) FOR [sec_primary]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_sec_content] DEFAULT ((3)) FOR [sec_content]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF__TB_User__AccPlay__3BFFE745] DEFAULT ((0)) FOR [AccPlayTime]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF__TB_User__LatestU__3CF40B7E] DEFAULT ((0)) FOR [LatestUpdateTime_ToPlayTime]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_Play123Time] DEFAULT ((0)) FOR [Play123Time]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_Ban] DEFAULT ((1)) FOR [Ban]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_Money] DEFAULT ((0)) FOR [Money]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_Cafe] DEFAULT ((0)) FOR [Cafe]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_credit] DEFAULT ((0)) FOR [credit]
GO
Msg 173, Level 15, State 13, Line 21
The definition for column 'varchar' must include a data type.
Msg 319, Level 15, State 1, Line 49
Incorrect syntax near the keyword 'with'. If this statement is a common table expression, an xmlnamespaces clause or a change tracking context clause, the previous statement must be terminated with a semicolon.
Msg 1781, Level 16, State 1, Line 55
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 55
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 58
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 58
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 61
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 61
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 64
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 64
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 67
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 67
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 70
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 70
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 73
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 73
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 76
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 76
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 79
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 79
Could not create constraint or index. See previous errors.
Completion time: 2025-10-31T00:51:14.0037775+04:00
varmi?
Dosyayı indir Prosedürler
Üst üste post gönderildiği için tek mesajda birleştirildi:
Msg 1781, Level 16, State 1, Line 55
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 55
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 58
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 58
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 61
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 61
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 64
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 64
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 67
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 67
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 70
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 70
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 73
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 73
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 76
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 76
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 79
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 79
Could not create constraint or index. See previous errors.
Completion time: 2025-10-05T06:01:23.9385321+04:00
Üst üste post gönderildiği için tek mesajda birleştirildi:
Msg 1781, Level 16, State 1, Line 55
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 55
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 58
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 58
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 61
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 61
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 64
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 64
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 67
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 67
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 70
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 70
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 73
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 73
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 76
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 76
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 79
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 79
Could not create constraint or index. See previous errors.
Completion time: 2025-10-31T00:46:36.3644146+04:00
Üst üste post gönderildiği için tek mesajda birleştirildi:
USE [SRO_VT_ACCOUNT]
GO
/****** Object: Table [dbo].[TB_User] Script Date: 06.07.2019 16:12:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[TB_User](
[JID] [int] IDENTITY(1,1) NOT NULL,
[StrUserID] [varchar](25) NOT NULL,
[password] [varchar](50) NOT NULL,
[Status] [tinyint] NULL,
[GMrank] [tinyint] NULL,
[Name] [nvarchar](50) NULL,
[varchar](50) NULL,
[sex] [char](2) NULL,
[certificate_num] [varchar](30) NULL,
[address] [nvarchar](100) NULL,
[postcode] [varchar](10) NULL,
[phone] [varchar](20) NULL,
[mobile] [varchar](20) NULL,
[regtime] [datetime] NULL,
[reg_ip] [varchar](25) NULL,
[Time_log] [datetime] NULL,
[freetime] [int] NULL,
[sec_primary] [tinyint] NOT NULL CONSTRAINT [DF_TB_User_sec_primary] DEFAULT ((3)),
[sec_content] [tinyint] NOT NULL CONSTRAINT [DF_TB_User_sec_content] DEFAULT ((3)),
[AccPlayTime] [int] NOT NULL CONSTRAINT [DF__TB_User__AccPlay__3BFFE745] DEFAULT ((0)),
[LatestUpdateTime_ToPlayTime] [int] NOT NULL CONSTRAINT [DF__TB_User__LatestU__3CF40B7E] DEFAULT ((0)),
[Play123Time] [int] NOT NULL CONSTRAINT [DF_TB_User_Play123Time] DEFAULT ((0)),
[Ban] [int] NULL CONSTRAINT [DF_TB_User_Ban] DEFAULT ((1)),
[Money] [real] NULL CONSTRAINT [DF_TB_User_Money] DEFAULT ((0)),
[Cafe] [int] NULL CONSTRAINT [DF_TB_User_Cafe] DEFAULT ((0)),
[last_login] [smalldatetime] NULL,
[last_ip] [varchar](50) NULL,
[joindate] [smalldatetime] NULL,
[credit] [int] NOT NULL CONSTRAINT [DF_TB_User_credit] DEFAULT ((0)),
[rememberpass] [varchar](50) NULL,
[game_credit] [int] NULL,
CONSTRAINT [PK_TB_User] PRIMARY KEY CLUSTERED
(
[JID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_sec_primary] DEFAULT ((3)) FOR [sec_primary]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_sec_content] DEFAULT ((3)) FOR [sec_content]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF__TB_User__AccPlay__3BFFE745] DEFAULT ((0)) FOR [AccPlayTime]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF__TB_User__LatestU__3CF40B7E] DEFAULT ((0)) FOR [LatestUpdateTime_ToPlayTime]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_Play123Time] DEFAULT ((0)) FOR [Play123Time]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_Ban] DEFAULT ((1)) FOR [Ban]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_Money] DEFAULT ((0)) FOR [Money]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_Cafe] DEFAULT ((0)) FOR [Cafe]
GO
ALTER TABLE [dbo].[TB_User] ADD CONSTRAINT [DF_TB_User_credit] DEFAULT ((0)) FOR [credit]
GO
Üst üste post gönderildiği için tek mesajda birleştirildi:
Msg 173, Level 15, State 13, Line 21
The definition for column 'varchar' must include a data type.
Msg 319, Level 15, State 1, Line 49
Incorrect syntax near the keyword 'with'. If this statement is a common table expression, an xmlnamespaces clause or a change tracking context clause, the previous statement must be terminated with a semicolon.
Msg 1781, Level 16, State 1, Line 55
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 55
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 58
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 58
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 61
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 61
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 64
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 64
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 67
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 67
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 70
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 70
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 73
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 73
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 76
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 76
Could not create constraint or index. See previous errors.
Msg 1781, Level 16, State 1, Line 79
Column already has a DEFAULT bound to it.
Msg 1750, Level 16, State 0, Line 79
Could not create constraint or index. See previous errors.
Completion time: 2025-10-31T00:51:14.0037775+04:00
Üst üste post gönderildiği için tek mesajda birleştirildi:
varmi?
Dosyayı indir Prosedürler
Kurulum videosu aşağıda mevcut.
Bu paylaşım panel sahibi tarafından yapıldı, kendisi panelin paylaşılmasına sebep olan bir takım hatalar yapmış olmasından dolayı banlandı ve konu aktif bir üyeye devredildi.
Panel Archera Online , ExSro gibi serverlerde sorunsuzça kullanıldı .
İndirme Dosyaları :
Panel Dosyaları İndirme Linki[Güncel] : *** Gizli metin: alıntı yapılamaz. ***
Panel Ve Logger Database : İndir Backup rar
Alttaki Spoilerdeki query okutarak öncelikle varsayılan db siliniz
Ardından burdaki query okutunuz
Öncellikle İis serveri aktif edip sonrasında bu dosyaları kuruyoruz
Download PHP Manager for IIS 7 1.2 for Windows - Filehippo.com
Download Microsoft Visual C++ 2015 Redistributable Update 3 from Official Microsoft Download Center
Download Microsoft® ODBC Driver 13 for SQL Server® - Windows + Linux from Official Microsoft Download Center
Panel dosyalarından kendinize tasarım secip tasarımı C diskinde inetbup bölümünde bir yere atın
Sonrasında fonkisyonlar klösüründe config.php dosyasında kendinizin sql ayarlarına göre düzenleyin
ve sonrasında klosör icindeki php1 dosyasınıda c icinde bir yere atıp iistan php managere okutun ve kurulum hazır
güzel
Kurulum videosu aşağıda mevcut.
Bu paylaşım panel sahibi tarafından yapıldı, kendisi panelin paylaşılmasına sebep olan bir takım hatalar yapmış olmasından dolayı banlandı ve konu aktif bir üyeye devredildi.
Panel Archera Online , ExSro gibi serverlerde sorunsuzça kullanıldı .
İndirme Dosyaları :
Panel Dosyaları İndirme Linki[Güncel] : *** Gizli metin: alıntı yapılamaz. ***
Panel Ve Logger Database : İndir Backup rar
Alttaki Spoilerdeki query okutarak öncelikle varsayılan db siliniz
Ardından burdaki query okutunuz
Öncellikle İis serveri aktif edip sonrasında bu dosyaları kuruyoruz
Download PHP Manager for IIS 7 1.2 for Windows - Filehippo.com
Download Microsoft Visual C++ 2015 Redistributable Update 3 from Official Microsoft Download Center
Download Microsoft® ODBC Driver 13 for SQL Server® - Windows + Linux from Official Microsoft Download Center
Panel dosyalarından kendinize tasarım secip tasarımı C diskinde inetbup bölümünde bir yere atın
Sonrasında fonkisyonlar klösüründe config.php dosyasında kendinizin sql ayarlarına göre düzenleyin
ve sonrasında klosör icindeki php1 dosyasınıda c icinde bir yere atıp iistan php managere okutun ve kurulum hazır
teşekkürler
Benzer konular
vSRO Paylaşım
vSro php panel V2
- Cevaplar
- 70
- Görüntüleme
- 5K
- Cevaplar
- 53
- Görüntüleme
- 5K
vSRO Videolu Anlatım
vSro - Aspx ve Php Panel Kurulum
- Cevaplar
- 29
- Görüntüleme
- 9K
- Cevaplar
- 12
- Görüntüleme
- 4K
vSRO Paylaşım
VSRO PHP Web Panel
- Cevaplar
- 28
- Görüntüleme
- 10K










