Jump to content

sean212

Members
  • Posts

    31
  • Joined

  • Last visited

Posts posted by sean212

  1. Oh, huh. Funny, I wrote little package a year ago. Oh man this brings back memories.

    VAFS has a data end but no API that will allow you to make changes. It was in the works but then, well things happened and a different last name but I realized that open-source was the way to role. :D

  2. as dave mentiont i woumld be verry carfull in all the stuff you do with empora when i started my airline most people liked my website apart from 1 person, he wass dissing my site as he does to all websites.

    maby we all schould propose a merger to on off our airlines and take over his stuff :lol:

    gr joeri

    Ah, Empora.. He really does have nerve. He just goes around dissing websites, like mine, and his site doesn't even work in IE. Huh.

  3. Sounds good! I forgot to mention, there will be email available as well, but I'm recommending switching to Google Apps for email and their entire productivity suite which would be great for VAs - you can create upto 100 users (but you can request more) who can all share your own gchat server, calendar, and all their stuff.

    Well, I'm still working some things out, but it seems like that's the jist of it. Thanks guys :)

    That actually sounds wicked! GApps is a really cool way to have Gmail for your domain but sadly, they have the API locked up to only premium users.

  4. Well first off, I would go by the method that phpBB has to create a user. Try this function to create one.

    http://wiki.phpbb.com/Add_users

    Now, to load phpBB's functions...

    Since your saying you file is located in:

    /home/

    And you forums directory is:

    /home/forum/

    phpBB requires that you define a few things before you load it. You need this:

    
    <?php
    define('MY_ROOT', dirname(__FILE__));	//	This the the AutoReg.php file location.
    
    define('IN_PHPBB', true);				//	Checked by phpBB
    $phpEx = substr(strrchr(__FILE__, '.'), 1);	//	Needed by phpBB
    $phpbb_root_path = MY_ROOOT . '/forum/';		//	The forums root.
    include($phpbb_root_path . 'common.' . $phpEx);	//	The file loader.
    
    include($phpbb_root_path . 'includes/functions_user.php');
    include($phpbb_root_path . 'includes/ucp/ucp_register.php');
    //	Now do what you please....
    

    From there, you can either user that user_add() function or whatever you would like. :D

×
×
  • Create New...