if you using xampp
go to xammp control panel
then STOP apache & mysql
then start again.
then try now.
Printable View
After i try register .. I dont understund in md5 nothink much.. I need enable md5? And how i can enable it!
[SQL 42000] [odbc 2812] > [Microsoft][ODBC SQL Server Driver][SQL Server]Could not find stored procedure 'master.dbo.XP_MD5_EncodeKeyVal'. (SQLExecute[2812] at ext\pdo_odbc\odbc_stmt.c:133)
Add this to SQL:
Quote:
USE [master]
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[XP_MD5_EncodeKeyVal]') and OBJECTPROPERTY(id, N'IsExtendedProc') = 1)
exec sp_dropextendedproc N'[dbo].[XP_MD5_EncodeKeyVal]'
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS OFF
GO
exec sp_addextendedproc N'XP_MD5_EncodeKeyVal', N'WZ_MD5_MOD.dll'
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[XP_MD5_CheckValue]') and OBJECTPROPERTY(id, N'IsExtendedProc') = 1)
exec sp_dropextendedproc N'[dbo].[XP_MD5_CheckValue]'
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS OFF
GO
exec sp_addextendedproc N'XP_MD5_CheckValue', N'WZ_MD5_MOD.dll'
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
USE [MuOnline]
CREATE FUNCTION [dbo].[fn_md5] (@data VARCHAR(10), @data2 VARCHAR(10))
RETURNS BINARY(16) AS
BEGIN
DECLARE @hash BINARY(16)
EXEC master.dbo.XP_MD5_EncodeKeyVal @data, @data2, @hash OUT
RETURN @hash
END
Im not shure but i think my DB is not suporting MD5 option.. maby im not corect.. I use TT 11.70.28.. is posible use this web on this filles?
Thank you very much for your time and answers!
By chance you have the psd template Default?
There any way to add this lateral menu, the default template?
Sorry for the inconvenience. Thanks for your time!
http://i58.tinypic.com/21ms37a.jpg
need one Video Guide ?
what is ?Quote:
Quote:
SQL 42S22] [odbc 207] > [Microsoft][ODBC SQL Server Driver]
[SQL Server]Invalid column name 'activation_id'.
(SQLExecute[207] at ext\pdo_odbc\odbc_stmt.c:133)
2 thinks
1. Can connect to my Admincp or to my user
2. Warning: Invalid argument supplied for foreach() in C:\xampp\htdocs\modules\news.php on line 84
How to fix that?
Check includes/config.php, here you must add admin users. After that when you will login with admin account, in the top right corner you will see "AdminCP". This warning is because you don't have any news so foreach function gets NULL as parameter. Add news and it will disappear.