Help!.....Problems with CabalToolz.....

Results 1 to 15 of 15
  1. #1
    Apprentice ImReadyToFight is offline
    MemberRank
    Dec 2012 Join Date
    12Posts

    sad Help!.....Problems with CabalToolz.....

    Help.....why OTHERS cant login to my website.....I already opened port 80 but they still cant login.....


  2. #2
    Account Upgraded | Title Enabled! JemCanoy is offline
    MemberRank
    Nov 2012 Join Date
    CabalLocation
    282Posts

    Re: Help!.....Problems with CabalToolz.....

    Yeah....WHY???

  3. #3
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Help!.....Problems with CabalToolz.....

    Where are you trying to connect to? To your public IP address? Also make sure your webserver is listening on all IPs.

  4. #4
    RaGEZONER toast2250 is offline
    MemberRank
    Sep 2009 Join Date
    CabalLocation
    638Posts

    Re: Help!.....Problems with CabalToolz.....

    First,
    did you notice that in .htaccess there 2 IPs being blocked?

    Remove them,...

    I don't use CT4 but I will try to install the CabalToolz 4 to see where it gets sticky and try to help you.

  5. #5
    Apprentice ImReadyToFight is offline
    MemberRank
    Dec 2012 Join Date
    12Posts

    Re: Help!.....Problems with CabalToolz.....

    Quote Originally Posted by cypher View Post
    Where are you trying to connect to? To your public IP address? Also make sure your webserver is listening on all IPs.
    In backend/config.php I put my Windows LAN IP:192.168.xxx.xxx

    Quote Originally Posted by toast2250 View Post
    First,
    did you notice that in .htaccess there 2 IPs being blocked?

    Remove them,...

    I don't use CT4 but I will try to install the CabalToolz 4 to see where it gets sticky and try to help you.
    When I open .htaccess with NotePad I cant see any IPs in there.....

    BTW TnX....

  6. #6
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Help!.....Problems with CabalToolz.....

    Your webserver on what IP he is listening?

    I did not ask you what IP you placed on the config.php.

  7. #7
    RaGEZONER toast2250 is offline
    MemberRank
    Sep 2009 Join Date
    CabalLocation
    638Posts

    Re: Help!.....Problems with CabalToolz.....

    Ok here is what you do,

    1. Run all queries
    2. Copy a fresh install of CabalToolz v4 in your root
    3. If your using a router all your IPs are LAN (192.168.1.1 to 255), use LAN IPs!
    4. Edit root/config.php
    Code:
    <?PHP
    // Multi server support
    $_config['server_feeds'] = array(
    
    
    'ForRZ' =>	array(
    'Official Cabal Online', 
    'http://192.168.1.108/backend/',
    'localhost', 
    '80',
    'About This Page: ', 
    'Official Cabal Online ' 
    ),
    					
    'For RZ2' =>	array(	
    'Official Cabal Online', 
    'http://192.168.1.108/backend/',
    'localhost', 
    '8080',
    'About This Page: ', 
    'Official Cabal Online ' 
    ),
    
    
    
    );
    $_config['default_feed'] = 'ForRZ';
    // End multi server support
    $_config['cross_domain'] = true;	
    // Cache sytem 
    $_config['nocache'] = true;
    $_config['curl'] = true; // this is a faster URL fetch make sure u have PHP curl turned on.
    5. Make sure your using XAMPP 1.7.1 and enabled:
    - mod_rewrite (C:\xampp\apache\conf\httpd.conf)
    - curl extension (C:\xampp\php\php.ini)

    6. Edit root/backend/config.php
    Code:
    <?PHP
    $_config['server_type'] 				= 'cabal'; 						// What folder you use from CabalToolz folder, default = cabal
    $_config['dbdebug'] 					= 0;							
    $ADODB_CACHE_DIR 					= 'tmp/';
    error_reporting(1);
    
    $_config['db_type'] 					= 'MSSQL';
    $_config['db_host'] 					= "192.168.1.108";
    $_config['db_user'] 					= 'SQL USER';
    $_config['db_pass'] 					= 'SQL PASSWORD';
    
    $_config['DB1'] 					= "ACCOUNT";
    $_config['DB2'] 					= "Gamedb";
    $_config['DB3'] 					= "CabalCash";
    Most important is that you edit the 4. that is why nothing happens when you login and register.

    For some reason you have to replace the 127.0.0.1 with your static LAN IP that your PC is assigned and being used.

    If you want to use CT4 in a subfolder for example like,
    root\cabal\index.php then you have to edit some lines to point correctly.

    You can also use other XAMPP versions but read what others say,...

  8. #8
    Apprentice ImReadyToFight is offline
    MemberRank
    Dec 2012 Join Date
    12Posts

    Re: Help!.....Problems with CabalToolz.....

    Quote Originally Posted by cypher View Post
    Your webserver on what IP he is listening?

    I did not ask you what IP you placed on the config.php.
    What do u mean...how to know what IP my webserver listening....sorry for asking..Im just new on this CabalToolz
    Quote Originally Posted by toast2250 View Post
    Ok here is what you do,

    1. Run all queries
    2. Copy a fresh install of CabalToolz v4 in your root
    3. If your using a router all your IPs are LAN (192.168.1.1 to 255), use LAN IPs!
    4. Edit root/config.php
    Code:
    <?PHP
    // Multi server support
    $_config['server_feeds'] = array(
    
    
    'ForRZ' =>	array(
    'Official Cabal Online', 
    'http://192.168.1.108/backend/',
    'localhost', 
    '80',
    'About This Page: ', 
    'Official Cabal Online ' 
    ),
    					
    'For RZ2' =>	array(	
    'Official Cabal Online', 
    'http://192.168.1.108/backend/',
    'localhost', 
    '8080',
    'About This Page: ', 
    'Official Cabal Online ' 
    ),
    
    
    
    );
    $_config['default_feed'] = 'ForRZ';
    // End multi server support
    $_config['cross_domain'] = true;	
    // Cache sytem 
    $_config['nocache'] = true;
    $_config['curl'] = true; // this is a faster URL fetch make sure u have PHP curl turned on.
    5. Make sure your using XAMPP 1.7.1 and enabled:
    - mod_rewrite (C:\xampp\apache\conf\httpd.conf)
    - curl extension (C:\xampp\php\php.ini)

    6. Edit root/backend/config.php
    Code:
    <?PHP
    $_config['server_type'] 				= 'cabal'; 						// What folder you use from CabalToolz folder, default = cabal
    $_config['dbdebug'] 					= 0;							
    $ADODB_CACHE_DIR 					= 'tmp/';
    error_reporting(1);
    
    $_config['db_type'] 					= 'MSSQL';
    $_config['db_host'] 					= "192.168.1.108";
    $_config['db_user'] 					= 'SQL USER';
    $_config['db_pass'] 					= 'SQL PASSWORD';
    
    $_config['DB1'] 					= "ACCOUNT";
    $_config['DB2'] 					= "Gamedb";
    $_config['DB3'] 					= "CabalCash";
    Most important is that you edit the 4. that is why nothing happens when you login and register.

    For some reason you have to replace the 127.0.0.1 with your static LAN IP that your PC is assigned and being used.

    If you want to use CT4 in a subfolder for example like,
    root\cabal\index.php then you have to edit some lines to point correctly.

    You can also use other XAMPP versions but read what others say,...
    When I change my Xampp version from 1.7.3 to 1.7.1 I cant even login now...

  9. #9
    Apprentice ImReadyToFight is offline
    MemberRank
    Dec 2012 Join Date
    12Posts

    Re: Help!.....Problems with CabalToolz.....

    Don't worry.....I make it work....

    My problem now is my Launcher Ive got an error when I put an update on it...
    this is the error: error.png

    BTW: Im using this Open Source Launcher: Open Source Launcher

    This is the error:
    Code:
    See the end of this message for details on invoking 
    just-in-time (JIT) debugging instead of this dialog box.
    
    ************** Exception Text **************
    System.ComponentModel.Win32Exception: The system cannot find the file specified
       at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
       at System.Diagnostics.Process.Start()
       at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
       at System.Diagnostics.Process.Start(String fileName)
       at Launcher.frmMain.downl_DownloadFileCompleted(Object sender, AsyncCompletedEventArgs e)
       at System.Net.WebClient.OnDownloadFileCompleted(AsyncCompletedEventArgs e)
       at System.Net.WebClient.DownloadFileOperationCompleted(Object arg)
    
    
    ************** Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5466 (Win7SP1GDR.050727-5400)
        CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    ----------------------------------------
    Cabal IT Launcher
        Assembly Version: 1.0.0.1
        Win32 Version: 1.0.0.666
        CodeBase: file:///C:/Users/JEM/Downloads/Compressed/Loca's%20Client/Cabal%20InTime/Cabal%20IT%20Launcher.exe
    ----------------------------------------
    Microsoft.VisualBasic
        Assembly Version: 8.0.0.0
        Win32 Version: 8.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
    ----------------------------------------
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5460 (Win7SP1GDR.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    ----------------------------------------
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5466 (Win7SP1GDR.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    ----------------------------------------
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5462 (Win7SP1GDR.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    ----------------------------------------
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    ----------------------------------------
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    ----------------------------------------
    System.Runtime.Remoting
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
        CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
    ----------------------------------------
    Microsoft.mshtml
        Assembly Version: 7.0.3300.0
        Win32 Version: 7.0.3300.0
        CodeBase: file:///C:/Windows/assembly/GAC/Microsoft.mshtml/7.0.3300.0__b03f5f7f11d50a3a/Microsoft.mshtml.dll
    ----------------------------------------
    
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    
    For example:
    
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    Last edited by ImReadyToFight; 23-12-12 at 09:21 AM.

  10. #10
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Help!.....Problems with CabalToolz.....

    System.ComponentModel.Win32Exception: The system cannot find the file specified

    Your missing a file.

  11. #11
    Account Upgraded | Title Enabled! JemCanoy is offline
    MemberRank
    Nov 2012 Join Date
    CabalLocation
    282Posts

    Re: Help!.....Problems with CabalToolz.....

    Quote Originally Posted by cypher View Post
    System.ComponentModel.Win32Exception: The system cannot find the file specified

    Your missing a file.
    Hi sir...I also got this problem?
    What File did we miss?
    Last edited by JemCanoy; 24-12-12 at 02:46 PM.

  12. #12
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Help!.....Problems with CabalToolz.....

    at System.Net.WebClient.OnDownloadFileCompleted(AsyncCompletedEventArgs e)

    This means that you are missing a file that he downloaded. For some reason something didn't work as planned.

  13. #13
    Account Upgraded | Title Enabled! JemCanoy is offline
    MemberRank
    Nov 2012 Join Date
    CabalLocation
    282Posts

    Re: Help!.....Problems with CabalToolz.....

    Quote Originally Posted by cypher View Post
    at System.Net.WebClient.OnDownloadFileCompleted(AsyncCompletedEventArgs e)

    This means that you are missing a file that he downloaded. For some reason something didn't work as planned.
    what file do I need to download sir?I really need this launcher...

  14. #14
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: Help!.....Problems with CabalToolz.....

    The launcher downloads a file from an url to see if there are any available updates. Start there.

  15. #15
    Account Upgraded | Title Enabled! JemCanoy is offline
    MemberRank
    Nov 2012 Join Date
    CabalLocation
    282Posts

    Re: Help!.....Problems with CabalToolz.....

    Quote Originally Posted by cypher View Post
    The launcher downloads a file from an url to see if there are any available updates. Start there.
    Where do I start sir?



Advertisement