I want to give a develop access to a specific directory and nothing else
I can give them an FTP account with access to a sub directory, but this doesn't exactly solve the problem!
1. They can write PHP code to access other directories below and have FULL access to *everything*!
2. What if I could solve problem 1 somehow (I have no idea how!), but then I wanted them to have *only* access to a directory but NOT to sub directories contained under that directory?
I'd always given developers a sub directory in which to put their code - I'd never actually ever thought that they could access the whole domain!
So: how can I make sure they only have access to what I want?
Thanks
question about header() security
is is safe to just use the header() function to redirect someone if they are, say, not logged in? or should i always put a die() function underneath the header() function?
help with multi-update
Now sure how to ask this really....
Creating an invoice
Using fpdf I am trying to create an invoice to send to clients. The products are sold in pricing tiers.I've got it working so it only displays a tier if the quantity is greater than 0 but I end up
Which practice of iteration through containers is preferred
In the "real world" what kind of loop do most people use to iterate through a container like a vector.A loop like this... Code: for (int i = 0; i < v.size(); ++i) { // do whatever}Or like
limit string by words??
hello all,I was wonder if there is a function to limit a string by the number of words instead of characters?
Issue Parsing XML into table
Hello all,Im a bit new to php and new to phpfreaks. But thanks in advance for the help!Im parsing an xml feed into a table. The only problem is that one of the fields can not format properly in the
An odd assignment statement. Can someone explain this assignment to me?
What purpose is served by the bit of code between the two equal signs in the $installurl set? Is this some sneaky way of setting $baseurl? I remember the code seemed to blow up when I took it
media recovery
Hi, i startup the database i got the errorSQL> startupORACLE instance started.Total System Global Area 146800640 bytesFixed Size 1286220 bytesVariable Size 79695796
Insert to MySQL inside foreach
Hey.I am parsing some html, and putting inside an html db.I need to create a randomized integer to be a unique identifier, and i chose just to use time().But I foreach the results, and inside here i
insert Multiple rows into the table from that table data
Hi All,