Beiträge von sneaky15

    hi, i have this problem .

    its visual problem

    Level visual bug,

    negative experience bug,

    insane visual dmg bug

    Bitte melden Sie sich an, um diesen Link zu sehen.

    do you know how i may fix or where is the problem on this?

    Check --> Bitte melden Sie sich an, um diesen Link zu sehen.

    well if i understand well i should go here : Bitte melden Sie sich an, um diesen Link zu sehen.

    but on Command is the path to the compiled .exe and on Working Env the path to the source.
    where do i change the path of dll? like on the link you said?

    this path is used ??

    PATH=path-to-your-dlls%PATH%


    lets assume i want to name the folden where all the dlls will be in the client dll.

    this way is correct? Bitte melden Sie sich an, um diesen Link zu sehen.

    Hi,

    is there any way to change the folder of the dlls?Bitte melden Sie sich an, um diesen Anhang zu sehen.

    to be like in folden

    /metin2

    i tried in source to

    Code
    1. LoadLibraryA("metin2/.DLL");

    but didnt work

    i tried also to change

    Code
    1. { "python27.dll", dump(CPythonProtect::Instance().Decrypt("XXXX")) },

    to

    Code
    1. { "metin2/python27.dll", dump(CPythonProtect::Instance().Decrypt("XXX")) },

    but none of this worked.

    Hello , i am dealing with a problem of packing my root files.

    1.Bitte melden Sie sich an, um diesen Anhang zu sehen.

    2.Bitte melden Sie sich an, um diesen Anhang zu sehen.

    3.Bitte melden Sie sich an, um diesen Anhang zu sehen.

    there are the CYTHONIZER files given to me.

    can anyone help me with a mini-tut?

    i saw martysama tut but didnt really help.

    Hey,


    first of all i would advise you against Korifiles, because those files are full of bugs and problems. If i have to guess what the actual problem is, i would tip on the missing extern lib of crypto or the wrong version of the compiler. Which version of visual studio do you use?

    i am using visual studio 2013

    Hello, i got this error.

    Kori 1.5 sf

    Bitte melden Sie sich an, um diesen Link zu sehen.

    Bitte melden Sie sich an, um diesen Link zu sehen.

    any ideas?

    the only changes i made was setting toolset from v90 to v120 by chaning all the files

    Well to whom it may concern i just managed to send an email when registering

    you can achieve that by declaring a new function on basic.php


    Code
    1. function EmailWhenRegister($code, $email, $name)
    2. {
    3. global $lang, $site_url;
    4. return '
    5. YOUR HTML EMAIL TEMPLATE WITH WELCOME MESSAGE
    6. ';
    7. }


    and on functions/register.php you just add these lines.


    Code
    1. $alt_message = $lang['altmessageverify'];
    2. $subject = $lang['welcomeemailverification'];
    3. $sendName = $_POST['username'];
    4. $sendEmail = $_POST['email'];
    5. $html_mail = EmailWhenRegister($code, $_POST['email'], $_POST['username']);
    6. include 'include/functions/sendEmail.php';



    under


    Code
    1. <p>'.$lang['success-register'].'</p>
    2. </div>';

    If someone can help to add a verification link is welcome!

    Greetings,

    I am using Bitte melden Sie sich an, um diesen Link zu sehen. as homepage

    My phpmailer works fine and reset password and lost password works fine .

    But i was wondering if someone knows how to implement an email verification.

    ex

    After registration an email is sent with a link to activate the account.