To all Tantra newbie developers I think you might like this

Page 17 of 24 FirstFirst ... 79101112131415161718192021222324 LastLast
Results 241 to 255 of 353
  1. #241
    Member Rodel Morala is offline
    MemberRank
    Sep 2012 Join Date
    70Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by GMDeveloper1 View Post
    Hi guys does anyone knows how to change Schedule for x2 MP in kruma my default points in the morning I want to change it into Evening 7:00 PM GMT +8
    For me you can't changed that .You just need Htsetting.xml and converter to changed the schedule .

  2. #242
    Account Upgraded | Title Enabled! GMDeveloper1 is offline
    MemberRank
    Mar 2013 Join Date
    328Posts

    Re: To all Tantra newbie developers I think you might like this

    do you have that tool sir?

  3. #243
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: To all Tantra newbie developers I think you might like this

    nobody does so the htsettings are locked.

  4. #244
    Account Upgraded | Title Enabled! GMDeveloper1 is offline
    MemberRank
    Mar 2013 Join Date
    328Posts

    Re: To all Tantra newbie developers I think you might like this

    are your x2 mp are in the morning schedule am I right?

  5. #245
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by GMDeveloper1 View Post
    Hi guys does anyone knows how to change Schedule for x2 MP in kruma my default points in the morning I want to change it into Evening 7:00 PM GMT +8
    You can change it just go to your Data Folder and open the Schedule.txt. Do not open it with notepad because you will understand the language or at least the structure. Use Notepad++ instead.

  6. #246
    Account Upgraded | Title Enabled! GMDeveloper1 is offline
    MemberRank
    Mar 2013 Join Date
    328Posts

    Re: To all Tantra newbie developers I think you might like this

    can you guide me where to change the hours? and date of time

  7. #247
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by GMDeveloper1 View Post
    can you guide me where to change the hours? and date of time
    Paste your Schedule.txt here and tell me what time do you want.

  8. #248
    Account Upgraded | Title Enabled! GMDeveloper1 is offline
    MemberRank
    Mar 2013 Join Date
    328Posts

    Re: To all Tantra newbie developers I think you might like this

    schedule.jpg here is it

  9. #249
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by GMDeveloper1 View Post
    schedule.jpg here is it

    Ok so 227 is the start and 228 is the end.

    First Digit - is the day of the week 0 = Sunday 1 = Monday so on....
    2nd Digit - Hours (24-Hour Format) 0 - 24
    3rd Digit - Minutes
    4th Digit - Seconds
    5th Digit - Frequency - How many times do you want your announcement will appear on the top (EBB)
    6th Digit - 227 / 228 is the Evend ID -I don't know where to get this lol :P

  10. #250
    MMORG Fan in Ragezone KyleMarvin is offline
    MemberRank
    Nov 2011 Join Date
    AustraliaLocation
    349Posts

    Re: To all Tantra newbie developers I think you might like this

    Just want to ask something? Can I upgrade the XAMPP 1.7.5 to 1.8.5 without trouble with mssql? I lost the mssql. But I need the PHP 5.5 and the new phpMyAdmin panel.

  11. #251
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by KyleMarvin View Post
    Just want to ask something? Can I upgrade the XAMPP 1.7.5 to 1.8.5 without trouble with mssql? I lost the mssql. But I need the PHP 5.5 and the new phpMyAdmin panel.
    I tried installing 1.8.5 before but no luck. I am using 1.7.3 right now but I am planning to upgrade to something else NOT Apache.

  12. #252
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: To all Tantra newbie developers I think you might like this

    Are you going to use IIS with Zend?

  13. #253
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by jbeitz107 View Post
    Are you going to use IIS with Zend?
    IIS with Zend is too advance and its way beyond my scope of knowledge. I am still an adept developer. Anyway, I find Apache very slow and consume a lot of memory in my server paving way to consume most of my server's resources while running the zones, in short its very heavyweight. Will try something *NEW* which is lightweight and of course still open source.

  14. #254
    Developer Terrified is offline
    MemberRank
    Dec 2013 Join Date
    Six MountainsLocation
    229Posts

    Re: To all Tantra newbie developers I think you might like this

    kyle, xampp 1.7.6 or higher no longer support mssql. however, you can manually include mssql as library in your xampp 1.8.5. you have to tweak the xampp after installation. but you have to backup all your xampp folder before doing so.

    edit:
    you can make the mssql 2012 R2 or higher. since you are using xampp 1.8.5 these are steps:

    (by the way, this site is for newbie but since xampp is a part of development , i am including it.)

    first you have to install xampp 1.8.5, your O.S. I presume is windows 2012 server or Windows 8...

    Step 1. download MSSQL SERVER 2012 from microsoft website. (its free).
    Step 2. find php.dll in your xampp/php/ext folder (If not there, move it there).
    Step 3. then find the files php_sqlsrv_55_nts_vc9.dll and php_pdo_sqlsrv_55_nts_vc9.dll (if not there, download it).
    Step 4. then edit your php.ini file and add the following lines:
    extension = php_sqlsrv_55_nts_vc9.dll;
    extension = php_pdo_sqlsrv_55_nts_vc9.dll
    Step 5. restart your xampp (apache service).
    Step 6. create the info.php file in your xampp/htdocs
    Step 7. edit info.php with your favorite html/php editor and place the following:
    <?php phpinfo(); ?>
    Step 8. open your favorite browser and type this in your address bar: http://localhost/info.php
    Step 9. it should display the entire page with information regarding your web service and supported database libraries.

    Credits to Ragezone.
    Last edited by Terrified; 06-11-14 at 11:37 AM. Reason: Revised the MSsql information

  15. #255
    Account Upgraded | Title Enabled! GMDeveloper1 is offline
    MemberRank
    Mar 2013 Join Date
    328Posts

    Re: To all Tantra newbie developers I think you might like this

    cannot download Tantra,dat file I already replace htdocs/patch/mainupdate for new Tantra.dat file deleted the old Tantra.dat file in client but still error occur any help pelase



Advertisement