Recent content by z1haze

  1. z1haze

    XF 1.4 No upgrade available. (1.4.7 => 1.4.10)

    Yep, figured it out, I assumed that the zip archive was ogranzied is a fashion that you could just unzip and overwrite in the root folder.. I didnt see the upload folder.. Maybe should change the way directory structure of the upload package?
  2. z1haze

    XF 1.4 No upgrade available. (1.4.7 => 1.4.10)

    Well, whatever the issue may be, can you help me fix it? I am unable to upgrade passed 1.4.7.. I uploaded the correct files. I upload the upgrade only package, navigation to /install, it redirects me to /install/index.php?upgrade/ and it says no upgrade available. I really need to get this...
  3. z1haze

    XF 1.4 No upgrade available. (1.4.7 => 1.4.10)

    I am unable to upgrade my forums to 1.4.10, its telling me no upgrade available, and to do a fresh installation? What is the problem? I downloaded the latest files from my customer section, it says 1.4.10.. and I uploaded, unzipped etc, navigated to /install and I get no upgrade available...
  4. z1haze

    XenAPI - XenForo PHP REST API

    I spoke too soon earlier. The issue is still there, BUT what is happening is this: the editUser() method is supposed to return the json string of user: new username or whatever.. but it doesnt do that thats when the errors come. So if I run the same http request 2 times in the row, the second...
  5. z1haze

    XenAPI - XenForo PHP REST API

    EDIT - it actually throws the error no matter when you update it. The update works but it throws php error. I believe i've run into an issue with this using the editUser() method. If you attempt to update a user with the same username, you get a bunch of php errors rather than a formatted json...
  6. z1haze

    XenAPI - XenForo PHP REST API

    Yea luckyily github stores all the previous commits.. It was just a think a single line or maybe 2 that sent the email I had copied over. It works fine.
  7. z1haze

    XenAPI - XenForo PHP REST API

    You obviously didn't set the hash in the file and include &hash=hash in the url
  8. z1haze

    XenAPI - XenForo PHP REST API

    I actually figured it out, I looked through old commits of the Api and it used to send emails but I just added it back and it works fine
  9. z1haze

    XenAPI - XenForo PHP REST API

    How do you send email confirmation when registering new users with the xenapi? ie '&user_state=email_confirm'. I havent found anything in the api that lets you send the confirmation email.. so I basically have to instruct all my users to login, and request resend of activation email
  10. z1haze

    getting $_GET variables in xenforo

    I still cant figure this out @MtoR , can you please help me? Im using the php pagenode callback class and respond function, and in that callback class i have: <?php class Leaderboards_GlobalList_Callback { private static $leaders = Array(); private static $output; private...
  11. z1haze

    getting $_GET variables in xenforo

    here maybe i can provide an example of code from my project and you can help me with converting it from xenforo i dont know what this controller is.. is that justa standard variable in xf? anyway something like this //players.php if(isset($_GET['input']) { require_once('/inc/player.php')...
  12. z1haze

    getting $_GET variables in xenforo

    @MtoR I am actually back at attempting this again. I still do not understand how to pass $_POST or $_GET variables into a XenForo page so it can be loaded with queried data based on thats in $_POST or $_GET.. For example as before.. I list of accounts from a separate database with a search bar...
  13. z1haze

    getting $_GET variables in xenforo

    Alright, I just got home.. Say.. do you have skype or something we could chat about this - maybe it could be resolved more quickly?
  14. z1haze

    getting $_GET variables in xenforo

    I'll be home later to look into this more in not sure what this controller stuff is
  15. z1haze

    getting $_GET variables in xenforo

    I use the node php Callback for this page. This is the callback class that I inserted into the php node callback tab. Basically I just need to pass parameters into the creation of this class object so I can query the database for the searched player. If that makes any more sense I hope
Top Bottom