Jump to content

premiso

Members
  • Posts

    6,951
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by premiso

  1. But it is about you. And no, it was not just yesterday, it is ANY time you come into the chat. I can get all the logs I need, remember? You are on for a few minutes, asking questions (if you call them that) when someone replies you shoot them down put them down and state how you are a girl and how you are so much better than everyone else and so much mature because you are 16 and you have strict parents. I mean seriously. If I were to be a true moderator, you would have been banned each time and or have a permanent ban for how you act on IRC to anyone who disagrees to your morals in some way or form. Just be glad PHPF IRC is so laxed, or else you would be banned already. Having said that you are free to not join the IRC anymore and use the forums for help, except I highly doubt you would get much help with your attitude.
  2. Stop being a bitch to everyone all the time, even the ones who help you. You will be surprised at how much nicer people are and more respectful they are to you. And I thought GoatSE was a part of IRC (Internet Retards Chat) ?? Edit: And to put it bluntly, we are FAR too relaxed on IRC Chat. If you want, I will be more serious and the next time you start lashing out at people it will be a ban. 2nd time will be a week ban. Third time is a G-Line ban. If you want to handle this way and make it more "professional" we will still be in the same spot we are now, with you being banned. The only difference is, GoatSE would not have been a part of it.
  3. Heh no need to post the text: http://www.nerdgranny.com/wp-content/uploads/2008/06/ascii-goatse.gif There is an image of it As far as everything else, you are truly a condescending bitch period. No matter what anyone says, even CrayonViolent (.josh), you choose to argue with them and put them down. I was just putting you in your place like what was needed. No worries though, you won't have this problem for a while now (or until someone else removes the ban). Josh, no it was ascii flood of the link above. To prove my point on the condescending bitch part: http://pastebin.com/uyqRgHKd And I can pull more logs if needed, but yea.
  4. Well I thought about it, but I am pretty sure my bi-polar disease will do just fine I will talk to Frost and see if he will unban you, but from the sounds of it you were breaking the rules.
  5. We will be sure to give Frost a stern talking to. Thank you for bringing this issue up.
  6. Right there you just lost all respect I had for you (if I ever had any) . Do you even know how old SQL is? Yea. SQL is very mature.
  7. $string = preg_replace('#<|.*?|>#', $replacement, $string); Something like that should suffice.
  8. What is RollingCurl? Never heard of it. You would probably do better to either post this in the proper section (3rd Party Scripts) or actually posting / asking the actual developer(s) of RollingCurl for help, as they would know their system better than we would.
  9. Did you even try what I suggested? Your problem is that the first if statement, $userlevel = 0 will always be true because it is being assigned properly. If you set it to $userlevel == 0 it will resolve to false, as that is the CONDITIONAL operator and not the ASSIGNMENT operator and it will then go into the elseif. If you want help I suggest trying what people suggest and reading into it, instead of assuming that they did not post anything helpful.
  10. = is the assignment operator. You want the conditional of == function user_level($userlevel){ if($userlevel == 0){ $level = "test"; } elseif($userlevel >= 1){ $level = "test1"; } return $level; }
  11. This part is not right. You should be joining groups on users_groups.id = groups.id: join groups on users_groups.group_id = groups.id
  12. This is actually very easy to accomplish, look into the group_concat function: http://mahmudahsan.wordpress.com/2008/08/27/mysql-the-group_concat-function/
  13. You cannot. The best you can do is pass a hash from Site A to Site B that authenticates the user, IE a token like system. This would also mean that Site A and Site B have to be able to talk to each other to authenticate the user in some way and have methods to validate the token.
  14. My bet would be the "\n" or linebreak after each item. If i remember right, file does not trim them out. $valid_codes = file("outcode2.txt"); array_walk($valid_codes, 'trim'); Should trim out the line breaks. Another way to do it is read in the file with file_get_contents and then use explode. If you want to find out if there really is an extra character, use var_dump on the $valid_codes and it should tell you.
  15. Desc is a reserved word, either change the column name to something that is not reserved or use backticks ( ` ) around it. Next time post the error message as well.
  16. Have you attempted this at all? Do you have any code that you have tried that is not working to show us? Most people here are more than willing to help but not nearly as willing to write your code for you. Show some effort and it will go a lot further to getting your question answered.
  17. The questions is a bit vague, especially without any code. The main thing to check is that A: your site and your MySQL server are using the same charsets, and if you are doing special characters, you should use UTF8 for both. B: Make sure you are escaping the data going into mysql properly, either with prepared statements or mysql_real_escape_string Aside from that, I am not sure where else to go without seeing the code to potentially help you out there or even the "errors" that are being thrown.
  18. Why does it need to use SecureCRT? If you want a GUI for it, you will be using something other than SecureCRT as ssh+git is a valid protocol for git. You just have to set the username / password (or pubkey) in the program. So yea, I would go away from that thinking and look at the gui's jess pointed out. To save you searching, SO would probably be my recommended resource: http://stackoverflow.com/questions/157476/what-guis-exist-for-git-on-windows and from the top answer there, I would recommend: http://code.google.com/p/tortoisegit/ EDIT: Saw you stated that you wanted it to do the same job. The interfaces should do a "similar" job, except provide a GUI.
  19. By using the Try/Catch block: http://www.php.net/manual/en/language.exceptions.php
  20. You do know that your Server / Host has really no control over AJAX / jQuery stuff, as that is all (well AJAX makes call to the server but it just calls your PHP file) client side code. So yea, you can use it no matter what your delusional mind created up, I suggest looking into it. If you do not believe me, find an example jQuery setup with the html and setup the html file on your server and run it. You shall see it works just fine.
  21. Can you also post this function: pm_check_password
  22. We cannot help without some code where you think the problem may be coming from, unfortunately.
  23. removed, never mind What is your original value for $TotEarn ?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.