Jump to content

MarkZD

Members
  • Posts

    134
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MarkZD

  1. MarkZD

    Flux CP Error

    There's some new timezone warning, but it just has nothing to see with the permissions, the problem is still the same. Did you change your permissions from your "/usr/html/home/" directory the way I mentioned above? Double check your permissions and directory, it's /usr/html/home/ as it's showed in the error, what I told before was just a sample.
  2. MarkZD

    Flux CP Error

    Try chmod 744 or 755, in the last case 777, one time I saw apache requiring execute permissions, I don't know why. And, what I said was just a sample, did you used your correct user for php and what about directory? /etc/passwd will show the users /etc/group will show the groups If I'm not wrong php don't have a user but a group so change your files to your main user"should be root" and change group to php group, check it first. chgrp grouname -R /var/www It'll change the group, so you change the permissions with chmod.
  3. MarkZD

    Flux CP Error

    When fopen fails it returns an boolean false value, it's what causing the 4 last errors. The first is beeing caused due to permissions file, your php probably don't have required permissions(read and write) to that file, try changing permissions of all files to 666, or make your php group as root of the files and change it to 644. chown -c -R user /path sample: chown -c -R user /var/www It'll change the owner of path and sub path and files. chmod -R permission /path sample: chmod -R 644 /var/www I think it can be done this way too: chmod 644 /var/www/* It'll change permissions, to give read and write to owner of path and sub directory and files.
  4. You could use getgmlevel() instead of getgrouid() for compatibility purpose as both are the same function, the only thing which changes is the return value to the caller function in case no player is found(0 in first function and 1 in second). It's not about me, it's just because it's apparently more appropriated.
  5. I think it'd be cool to have these easy custom, but IMO people who want to make a server have to know at least the basics to change it the way they want or they're not a good administrator and is just a provider who is not capable to mantain a server and should not be doing it. This is what makes the differential between just servers and real servers which have people to really assist it. I'm not saying you should know how to solve all the problems(it'd be outstanding however, but it's not the goal because fortunately we have the developers and the community to greatly help us with it), but if you want a server, you have to be interesting in it, so you should learn all you can about customizing and etc tutorials that you can easily find out, then you're ok to have and mantain a server.
  6. MarkZD

    Flux PHP Error

    Each time foreach is done explode and trim function were beeing not needed called so they loaded all the time, I just put those values by one call in a variable and it's done. But the fix is below, where there was a problem at "=" inside explode, beeing passed to list function, as there wasn't more than one value, second variable was beeing forced to get null but php wasn't told to do that, so it throwed a warning message. I just clarified to php those values could be null, making him check them in a correct way.
  7. MarkZD

    Flux PHP Error

    Sure, I looked into its source now. You can use the first code block I posted above.
  8. MarkZD

    Flux PHP Error

    Well, this is a poor source. Look, it's probably the data that wasn't properly handled till this step, so there's no "=" character to explode. else { $ArrRandomName = explode('&', trim($_SERVER['QUERY_STRING'], '&')) ; foreach ($ArrRandomName as $line) { $ToExplode = explode('=', $line, 2); $key = isset($ToExplode[0]) ? $ToExplode[0] : null; $val = isset($ToExplode[1]) ? $ToExplode[1] : null; $key = urldecode($key); $val = urldecode($val); if ($key != 'module' && $key != 'action') { $this->urlWithQS .= sprintf('&%s=%s', urlencode($key), urlencode($val)); If your code is making all operations correctly and you just want a fix to the notice so you're done. I just put a improve to performance also. ;D If "$_SERVER['QUERY_STRING']" is just beeing used in another place, so it could cause a problem at the improved foreach, just turn it back to this ugly one: else { foreach (explode('&', trim($_SERVER['QUERY_STRING'], '&')) as $line) { $ToExplode = explode('=', $line, 2); $key = isset($ToExplode[0]) ? $ToExplode[0] : null; $val = isset($ToExplode[1]) ? $ToExplode[1] : null; $key = urldecode($key); $val = urldecode($val); if ($key != 'module' && $key != 'action') { $this->urlWithQS .= sprintf('&%s=%s', urlencode($key), urlencode($val));
  9. Nevermind, maybe you're on the right section, I'm not sure. If you want reducing aftercast this way, you pust this: bonus bDelayRate,(getrefine() * -1);
  10. @newmount is a test command, it'll no longer be available after tests finish so you should not make it availabe to your players. As it's a script as many others you can just apply it to an item script so onclick the user will mount or dismount or you can just use: 12622,Reins_Of_Mount,Reins Of Mount,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ setmounting(); },{},{} That already is in the database from rA, it's the same as @newmount. I don't know if there's a OFF button as it's a client icon and I have not seen this in any server/client.
  11. What exactly do you want to edit? In that file you cited you can just define aliases to commands, if you want permissions check groups.conf But, if you want to edit the names of the command, it's easy to know how to do, as this file explain in almost all lines. /* Command aliasesYou can define aliases for any command. Aliases work just like originalcommand.Format is<commandname>: ["<alias>", ...]*/ mobinfo: ["monsterinfo", "mi"] If you type @mobinfo, @monsterinfo or @mi it you use @mobinfo command. if you add it like that: mobinfo: ["monsterinfo", "mi", "infomonster"] So you can use @infomonster as @mobinfo too.
  12. I've never fully believed in iRO Wiki's skill formulas because I've never gotten approachs to my damages in bRO.
  13. For the first you add: bouns bPerfectHitAddRate,100; But you can't hit normal attacks when a player perfect dodges. What do you mean saying "skilldelay"? Is it, cast time, cooldown or AfterCast? You posted at the wrong section.
  14. http://svn6.assembla.com/svn/ClientSide/Lua_Project/lubs/
  15. Let the client shows pallets and etc errors in diff, so it probably will show what related files are missing before its gravity error shows.
  16. Very good, I didn't know that alt+shift trick. I converted it very easily. ;D Thanks.
  17. Sure, it probably is not a file problem, it'd be some thing related to names and permissions to create and open these one. Check if your packet_db_ver is set to default and your mmo.h file is set to this client. If it doesn't work, download lub or lua files compatible to 2011-03-15aRagexeRE.exe client, and try again.
  18. I'm not sure my suggestion will fit someone to get it working, I just guessed it because apparently all the files "58044" and foldes "137" have been extracted to my linux enviroment but on my windows there're less than 50k files, less size... But it made some beep sounds during extraction on Linux which I think it means error, corrupted files etc, it did a lot of these beep sounds on windows too. I've got a lot of rar, 7z, zip, tar.gz, part files etc and never had trouble to any ok file. Maybe there's something wrong to this file. I tested with winrar and 7z, I'll give a try to winrar 4.11 and later if succeed I post in here.
  19. Maybe the Client.7z extract error is due to some 64bit compression as it doesn't extract on my 32 bits system but it extracted on my 64bits one. I don't know if it's the problem, but I suggest for those who were affected by this error that try re-downloading it from another pc, maybe their dedicated server etc, extract it, gzip and redownload to your pc. For those who don't want to worry about doing it by self, here is the gzip I've done from this Client: http://www.mediafire...dlahuc5uao4cec5 ------------------------------------------------------------ I'm new to the forum.
×
×
  • Create New...