Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. No and no. A dot is the concatenation operator in PHP.
  2. That has exactly the same effect as removing the code.
  3. That is indeed what you need to do. Your modules directory should be listed in Apache main config file (generally httpd.conf). You may also see the modules them selves being loaded in this same file, or you config might br broken up into multiple files. Either way, digging through your httpd.conf file should get you a pretty good start.
  4. Yes it's a good idea to abstract as much functionality away you can into base classes. Just be aware though that php is only single inheritance, this means you can end up with long chains of relationships.
  5. I'm not overly familiar with freeBSD but most Linux distros would have this as a seperate package, maybe freeBSD does the same?
  6. Python is an object oriented language though, nearly everything is an object.
  7. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=337461.0
  8. This topic has been moved to Installation & Configuration Issues. http://www.phpfreaks.com/forums/index.php?topic=337462.0
  9. MySQL is NOT phpMyAdmin. they are two completely different things.
  10. Use file_get_contents() to get the file.
  11. Yes, to get the actual file.
  12. No, functions have there own scope. You will need to pass the arrays in, and then return them. Why you are using 3 separate arrays though is beyond me.
  13. I would think reading the file into a string using file_get_contents() would likely be a more efficient method.
  14. Change: if($_POST['action'])!=("signup") to if(!isset($_POST['action']) || $_POST['action'] != "signup")
  15. This is a coding issue, nothing at all to do with php's configuration.
  16. We have enough information available, thanks.
  17. We can't merge anything into anything, I don't see what there is to merge anyway. But we will ban the other account.
  18. You use cd to change directories. eg; cd /foo/bar
  19. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=337304.0
  20. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=337291.0
  21. This topic has been moved to Other Web Server Software. http://www.phpfreaks.com/forums/index.php?topic=337299.0
  22. Besides the fact that you have some weird 'mailto:' string pre-pended to your address, do you actually have a mail server installed, configured and running?
  23. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=337296.0
  24. Editing any file will make your Moodle install customized. Seriously, can you be any more vague?
×
×
  • 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.