|
You last visited: Today at 15:51
Advertisement
[RELEASE] Secure PHP Web Registration Script
Discussion on [RELEASE] Secure PHP Web Registration Script within the Shaiya PServer Guides & Releases forum part of the Shaiya Private Server category.
07/31/2012, 01:52
|
#196
|
elite*gold: 0
Join Date: Apr 2011
Posts: 216
Received Thanks: 127
|
I have a problem with this. I do all as i should do, on the end that happens is i make an account, click "Create game Account" It loads to BLANK page. I did all good. And it doesn't make one acc either tried to log in.
If anyone have any clue would be nice
EDIT: I fixed it.
|
|
|
08/16/2012, 11:46
|
#197
|
elite*gold: 0
Join Date: Jun 2011
Posts: 208
Received Thanks: 25
|
Registration Script
Warning: mssql_query() [function.mssql-query]: message: Cannot insert the value NULL into column 'UserUID', table 'PS_UserData.dbo.Users_Detail'; column does not allow nulls. INSERT fails. (severity 16) in C:\xampp\htdocs\teste\verify.php on line 74
Warning: mssql_query() [function.mssql-query]: Query failed in C:\xampp\htdocs\teste\verify.php on line 74
Fatal error: Uncaught exception 'phpmailerException' with message 'SMTP Error: Could not connect to SMTP host.' in C:\xampp\htdocs\teste\PHPMailer\class.phpmailer.ph p:820 Stack trace: #0 C:\xampp\htdocs\teste\PHPMailer\class.phpmailer.ph p(705): PHPMailer->SmtpConnect() #1 C:\xampp\htdocs\teste\PHPMailer\class.phpmailer.ph p(576): PHPMailer->SmtpSend('Date: Thu, 16 A...', '--b1_bf23e3bea6...') #2 C:\xampp\htdocs\teste\mail.php(33): PHPMailer->Send() #3 C:\xampp\htdocs\teste\verify.php(80): require('C:\xampp\htdocs...') #4 {main} thrown in C:\xampp\htdocs\teste\PHPMailer\class.phpmailer.ph p on line 820
|
|
|
08/16/2012, 18:56
|
#198
|
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,981
|
That has been explained multiple times already, please use the search function.
|
|
|
08/17/2012, 20:56
|
#199
|
elite*gold: 0
Join Date: Jun 2011
Posts: 208
Received Thanks: 25
|
register email
I did every topic I find nothing
Register email
|
|
|
08/19/2012, 20:57
|
#200
|
elite*gold: 5
Join Date: Jun 2012
Posts: 176
Received Thanks: 214
|
For All People i have Scripted the Register from Abrasive (the style looks very better) When you intressting PM ME i can send you
|
|
|
08/23/2013, 10:24
|
#201
|
elite*gold: 0
Join Date: Aug 2013
Posts: 2
Received Thanks: 0
|
Erro Register , Help
Hi, I have erro , I did everything right, and says Database Connect Error, Can you help?
|
|
|
03/08/2014, 17:02
|
#202
|
elite*gold: 0
Join Date: Mar 2014
Posts: 2
Received Thanks: 0
|
What's this? It comes in creating account
MSSQL functions non existant!
ODBC functions existing...and connections are possible!
PHP version: 5.5.9
Account Registration
|
|
|
03/20/2014, 21:00
|
#203
|
elite*gold: 0
Join Date: Mar 2014
Posts: 2
Received Thanks: 0
|
Can anyone tell me where my mistake
USE [PS_UserData]
GO
/****** Object: StoredProcedure [dbo].[usp_Try_GameLogin_Taiwan] Script Date: 03/20/2014 21:59:39 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
/****** Object: Stored Procedure dbo.usp_Try_GameLogin_Taiwan Script Date: 2008-6-7 18:34:05 ******/
/*================================================= =
@date 2007-12-04
@brief Login Proc( Taiwan )
================================================== */
ALTER Proc [dbo].[usp_Try_GameLogin_Taiwan]
@UserID varchar(18),
@InPassword varchar(32),
@SessionID bigint,
@UserIP varchar(15),
-- 罹晦梱雖 ?蹂? 檣濠, 釭該雖朝 頂睡 滲熱
@UserUID int = -1,
@LoginType smallint = 1,
@LoginTime datetime = NULL
AS
SET NOCOUNT ON
DECLARE
@Leave tinyint,
@Status smallint,
@CompanyIP varchar(15),
@TempIP varchar(15),
@Check int,
@LeaveDate datetime
/*================================================= =
-1 Invalid ID and Password
-2 Can't connect with the account since it's not selected as free challenger
-3 Account doesn't exist
-4 ID inprocess of termination follwing user's request.
-5 Your account is blocked now. You can't log into the game.
-6 Your account is blocked now. You can't log into the game.
-7 Account still restricted
================================================== */
SET @Status = -1
SET @LoginTime = GETDATE()
--------------------------------------------------
SET @CompanyIP = '61.107.81'
SET @UserIP = LTRIM( RTRIM(@UserIP) )
--------------------------------------------------
SET @Check = 0
--------------------------------------------------
SELECT @UserUID=[UserUID], @Status=[Status], @Leave=[Leave], @LeaveDate=LeaveDate
FROM Users_Master
WHERE UserID = @UserID AND Pw = @InPassword
-- NotExist User OR Leave User
IF( @UserUID = 0)
BEGIN
SET @Status = -3
END
ELSE IF (@Leave = 1) --This blocks a logged in account from being kicked
BEGIN
SET @Status = -5
END
ELSE IF (DATEDIFF(SECOND, @LeaveDate, GETDATE()) < 6)--This is the time delay
BEGIN
SET @Status = -7
END
-- BlockUser Check
IF( (@Status >= 2) AND (@Status <= 6) )
BEGIN
-- Get Block Limit Date AND Replace date text
DECLARE @BlockEndDate datetime
SELECT @BlockEndDate = BlockEndDate FROM Users_Block WHERE UserUID = @UserUID
IF ( @@ROWCOUNT <> 0 )
BEGIN
-- Block Release
IF ( @BlockEndDate <= @LoginTime )
BEGIN
SET @Status = 0
UPDATE Users_Master SET Status = @Status WHERE UserUID = @UserUID
END
END
END
-- Admin IP Check(2006-02-21)
/*
IF( @Status = 16 OR @Status = 32 OR @Status = 48 OR @Status = 64 OR @Status = 80 )
BEGIN
SET @TempIP = LEFT(@UserIP, 9)
IF( @TempIP <> @CompanyIP )
BEGIN
SET @Status = -999
END
END
*/
-- Select
SELECT @Status AS Status, @UserUID AS UserUID
-- Log Insert
IF( @Status = 1 OR @Status = 16 OR @Status = 32 OR @Status = 48 OR @Status = 64 OR @Status = 80 )
BEGIN
UPDATE Users_Master SET Leave = 0, JoinDate = GETDATE() WHERE UserUID = @UserUID
END
SET NOCOUNT OFF
|
|
|
04/11/2015, 12:47
|
#204
|
elite*gold: 0
Join Date: Apr 2015
Posts: 8
Received Thanks: 0
|
good day sir. amm sir can u help me with my problem its when i online my page, the register file wont show, not like in localhost. Should i change some code when i online it sir?my host is 000webhost. what do i need to configure?
|
|
|
04/11/2015, 18:30
|
#205
|
elite*gold: 0
Join Date: Jan 2013
Posts: 461
Received Thanks: 561
|
Quote:
Originally Posted by blutotxonline
good day sir. amm sir can u help me with my problem its when i online my page, the register file wont show, not like in localhost. Should i change some code when i online it sir?my host is 000webhost. what do i need to configure?
|
If nobody answers is why your question have no sense!
btw not, you have not to change any code from localhost to a online website.
and if you want a valid answer please be more specific on the error/problem that you have.
|
|
|
04/13/2015, 21:22
|
#206
|
elite*gold: 0
Join Date: Apr 2015
Posts: 8
Received Thanks: 0
|
Quote:
Originally Posted by beetols
If nobody answers is why your question have no sense!
btw not, you have not to change any code from localhost to a online website.
and if you want a valid answer please be more specific on the error/problem that you have.
|
i mean my problem sir is when i test my page to localhost the register page appears and i can register accounts i used the abrasive, but when i put in onlineweb the register page wont appear and no error message appears just wont appear the register page.. ...i add php_dll extensions on xampp's php.ini on localhost, should i add or change something too on online?
|
|
|
05/08/2015, 16:42
|
#207
|
elite*gold: 16
Join Date: May 2015
Posts: 4
Received Thanks: 0
|
Works perfectly.
|
|
|
10/12/2018, 06:39
|
#208
|
elite*gold: 0
Join Date: Oct 2018
Posts: 8
Received Thanks: 0
|
Can u do a Video on Youtube its Really hard to create a Registration on P-Server plss Help
|
|
|
10/08/2019, 20:28
|
#209
|
elite*gold: 0
Join Date: Sep 2019
Posts: 12
Received Thanks: 0
|
sempre da erro ao cadastra
|
|
|
 |
|
Similar Threads
|
[Release] SSE php Registration page script!
06/25/2013 - SRO PServer Guides & Releases - 38 Replies
Hello there, i'm not much using this forum, but as i recently helped out the owners of server G-Sro by making this automatic account registration page, decided to release for everyone. Hope you like it.
For live preview go to:
Demo Page
DOWNLOAD LINK: http://www.multiupload.com/65ZMM3N7C0
Feel free to edit it however you want, but don't re-release it on other communities.
Features:
|
[Release] Secure BHop Script
08/08/2010 - Counter-Strike Hacks, Bots, Cheats & Exploits - 5 Replies
You can't get banned for using this Script because it's only presses the Space button = no injection into the game = No VAC Ban + it's secured.
Btw it's an Private BHop script so when you leech it please give the credits.
Info: How to use
press "^" to start and "^" to stop
Virus Scan:
|
[Release] Simple CoEmu V2 - Registration Script
03/07/2010 - CO2 PServer Guides & Releases - 39 Replies
http://i42.tinypic.com/1qlcnd.png
Download
Simply open settings.php and edit it to your settings, and it'll run smoothly.
|
[RELEASE]Registration Script (ENG)
05/16/2009 - Dekaron Private Server - 12 Replies
I just created this registration script so enjoy. Unlike the others that are posted around, this one is built from the ground up by me. Enjoy and dont forget to say thanks! Uses mssql();
Please post your comments and suggestions!!!! Ill have more tools on the way.
~Quick tut to get it working~
1. Download the rar
2. Extract it to a place where you can easily edit the files
3. Open up includes/db.php
4. Edit your information for your SQL server
5. Save and upload to a directory inside...
|
All times are GMT +1. The time now is 15:51.
|
|