Search results

  1. G

    I am trying to install php a script on my host server, however i am getting a unix

    chown and chmod are related commands. chmod changes the permission settings on a file (read-write-execute for user-group-others). chown changes the owner of a file. Your webserver(Apache) runs as a particular user - say, apache. What the error message is asking you to do is to change the owner...
  2. G

    I am trying to install php a script on my host server, however i am getting a unix

    chown and chmod are related commands. chmod changes the permission settings on a file (read-write-execute for user-group-others). chown changes the owner of a file. Your webserver(Apache) runs as a particular user - say, apache. What the error message is asking you to do is to change the owner...
  3. G

    I am trying to install php a script on my host server, however i am getting a unix

    chown and chmod are related commands. chmod changes the permission settings on a file (read-write-execute for user-group-others). chown changes the owner of a file. Your webserver(Apache) runs as a particular user - say, apache. What the error message is asking you to do is to change the owner...
  4. G

    I am trying to install php a script on my host server, however i am getting a unix

    chown and chmod are related commands. chmod changes the permission settings on a file (read-write-execute for user-group-others). chown changes the owner of a file. Your webserver(Apache) runs as a particular user - say, apache. What the error message is asking you to do is to change the owner...
  5. G

    I am trying to install php a script on my host server, however i am getting a unix

    chown and chmod are related commands. chmod changes the permission settings on a file (read-write-execute for user-group-others). chown changes the owner of a file. Your webserver(Apache) runs as a particular user - say, apache. What the error message is asking you to do is to change the owner...
  6. G

    Should I use a framework or should I use plain vanilla PHP code?

    I am looking to start a site which will be PHP based (running on the LAMP stack). I have experience with Drupal 5&6. However, I feel that Drupal is somewhat slow(bad performance). It does allow me to build something really quickly and it is very flexible. But I want performance too. Should I...
  7. G

    PHP- how do you get SQL server to retrieve an EXACT match from a search?

    Your query seems to be correct. The SQL query to select an exact match would be SELECT clubid FROM club WHERE clubid = 'CKR'; If you needed an unexact match you would use like. Eg. SELECT clubid FROM club WHERE clubid like '%CKR%';
Back
Top