Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. The simple answer is no. You might laso be being a little paranoid. Running servers, you will get things like this all day long.
  2. That indeed would show up as $argv[1].
  3. This topic has been moved to Other Libraries and Frameworks. http://www.phpfreaks.com/forums/index.php?topic=349480.0
  4. 8 topics within 20 minutes of each other does indeed wreak of spam. Glad to see you removed your signature. As for your question, this thread in particular is unreadable.
  5. You might need to add the www-data user to the video group. What errors are you getting exactly?
  6. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=349474.0
  7. Nothing in that code is specific to 1.3.2 or 1.4.3, what errors are you getting?
  8. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=349470.0
  9. This topic has been moved to Apache HTTP Server. http://www.phpfreaks.com/forums/index.php?topic=349296.0
  10. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=349338.0
  11. trq

    kernel OS

    Probably not a completely accurate count considering the entire source tree might not necessarily be considered the "kernel" but your question is itself pretty vague anyway. thorpe@oblivion[/usr/src/linux-funtoo-openvz-2.6.32.042.039.10]$ find . -type f | wc -l 34687
  12. All request to Zend framework go through a single entry point. Your bootstrap. The views are pulled into your response internally. No one ever actually requests a view.
  13. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=349362.0
  14. Going off what you have said, the absolute path to your cron.php script would be /home/crikeyga/cron.php
  15. It is poor design to have duplicate data stored in your database.
  16. Just format Logintime to return only the time. SELECT ID, Acct, DATE_FORMAT(Logintime, '%h:%i %p'), User FROM test_history
  17. I'm a massive vim fan so don't really have much of an opinion when it comes to IDE's.
  18. AS scootstah has pointed out a parents properties are available as if they are defined within the child class. parent::$this->whatever; Does make allot of sense. Maybe show us a simple example of what it is your referring to because really, to access a parents property is no different than accessing any other property. eg; $this->var;
  19. To auto send an email you would need to execute a script daily, hourly or whatever (this would need to be scheduled via cron). That script would then query your database for all records where the "scheduled appointment date" is two days from the time the script executes. You would then send the email to all the email addresses returned by this query.
  20. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=349156.0
  21. Your getCart method should be within your cart Model.
×
×
  • 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.