Registerpage error

11/05/2010 14:44 DopeFlyff#1
Hey people,

I putted the register page v15 in my php files but If I go in my webbrowser and Ill put:

localhost/register.php
{The registerpage named register.php}

Ill see a white page with none on it....

What do I need to do ?

Thx,
Dope
11/05/2010 15:20 Fullscreen#2
hello,

change the script from the register with this one here : [Only registered and activated users can see links. Click Here To Register...]

Translate it with Google Translate or an other Translate Service.

Sincerely yours,

Daniel
11/06/2010 00:02 DopeFlyff#3
Thx, I will try him out
11/06/2010 15:24 Nilsator2#4
Open MSSQL and add this:
Change database from master to ACCOUNT_DBF]
and run this process
Code:
USE [ACCOUNT_DBF]
GO
/****** Object:  StoredProcedure [dbo].[webCreateAcc]    Script Date: 11/06/2010 15:21:43 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [dbo].[webCreateAcc] 
	@account 	VARCHAR(15),
	@password 	VARCHAR(36),
	@email		VARCHAR(120)

AS

SET NOCOUNT  ON

DECLARE @DateActivated AS CHAR(8)

IF NOT EXISTS (SELECT account FROM ACCOUNT_TBL WHERE account = @account) BEGIN
	INSERT INTO ACCOUNT_TBL (account, [password], id_no1, id_no2, isuse, member, realname, cash) 
		VALUES (@account, @password, @password, @password, 'T', 'A', 'F', '0')

	SET @DateActivated =  CONVERT(CHAR(8), GETDATE()-1, 112 ) --Is the date today - 1
	--UPDATE ACCOUNT_TBL_DETAIL SET BlockTime = @DateYesterday WHERE account = @userid		
	--INSERT INTO ACCOUNT_TBL_DETAIL (account, gamecode, tester, m_chLoginAuthority, regdate, BlockTime, EndTime, WebTime, isuse)
	--	VALUES (@account, 'A000', '2', 'F', GETDATE(), '20990101', '20990101', '20050101', 'O')

	INSERT INTO ACCOUNT_TBL_DETAIL (account, gamecode, tester, m_chLoginAuthority, regdate, BlockTime, EndTime, WebTime, isuse, email)
		VALUES (@account, 'A000', '2', 'F', GETDATE(), @DateActivated, '20990101', '20050101', 'O', @email)

END
--ELSE BEGIN
--print '->Account exists = ' 
--print @account 
--END

So than, open php.ini into your xampp folder: "C:\xampp\php\php.ini"

searching for:

;extension=php_mssql.dll

and for:

;extension=php_pdo_mssql.dll

remove the " ; " save and re-start xampp.
11/06/2010 16:19 DopeFlyff#5
Im using wamp........
11/06/2010 16:43 Jay Niize#6
then try it with Xampp, then it will work 100 % ;)

By the Way :

Quote:
Originally Posted by DopeFlyff View Post
Thx, I will try him out
Quote:
Originally Posted by DopeFlyff View Post
Nope, Isn't working too, Ill stay get to see none....
#reportet wegen Doppelpost
11/06/2010 17:35 DopeFlyff#7
Can I not use wamp ?
11/05/2011 18:00 khristian05#8
help me i cant ggt this tutorial Open MSSQL and add this:
Change database from master to ACCOUNT_DBF]
and run this process
Code:

USE [ACCOUNT_DBF]
GO
/****** Object: StoredProcedure [dbo].[webCreateAcc] Script Date: 11/06/2010 15:21:43 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [dbo].[webCreateAcc]
@account VARCHAR(15),
@password VARCHAR(36),
@email VARCHAR(120)

AS

SET NOCOUNT ON

DECLARE @DateActivated AS CHAR(8)

IF NOT EXISTS (SELECT account FROM ACCOUNT_TBL WHERE account = @account) BEGIN
INSERT INTO ACCOUNT_TBL (account, [password], id_no1, id_no2, isuse, member, realname, cash)
VALUES (@account, @password, @password, @password, 'T', 'A', 'F', '0')

SET @DateActivated = CONVERT(CHAR(8), GETDATE()-1, 112 ) --Is the date today - 1
--UPDATE ACCOUNT_TBL_DETAIL SET BlockTime = @DateYesterday WHERE account = @userid
--INSERT INTO ACCOUNT_TBL_DETAIL (account, gamecode, tester, m_chLoginAuthority, regdate, BlockTime, EndTime, WebTime, isuse)
-- VALUES (@account, 'A000', '2', 'F', GETDATE(), '20990101', '20990101', '20050101', 'O')

INSERT INTO ACCOUNT_TBL_DETAIL (account, gamecode, tester, m_chLoginAuthority, regdate, BlockTime, EndTime, WebTime, isuse, email)
VALUES (@account, 'A000', '2', 'F', GETDATE(), @DateActivated, '20990101', '20050101', 'O', @email)

END
--ELSE BEGIN
--print '->Account exists = '
--print @account
--END

plz make a video in youtube tnx. !!
11/05/2011 18:52 .Cookiee#9
Muss das sein ?
11-06-2010, 17:35 Ist wohl ganz schön Aktuell.
#Closerequest
11/05/2011 21:22 Sextus#10
#closed