Does anyone use CVS or Subversion (or any type of version control) within their Web Application development workflow? I'd like to know what the alternatives are for integrating version control into a web dev workflow. At present we have 3 servers: dev, test, production. We aren't allowed to have...
Does anyone know if verity search indexing is at all influenced by or dependent upon client variables? We had a situation where the default client storage mechanism was registry, which created problems because the registry was increasing to the point of using up all the disk space on the server...
Ok I looked it up, this is the easy way, from the mysql console...
mysql> GRANT SELECT, INSERT, UPDATE, DELETE
ON dbname.* TO username@localhost
IDENTIFIED BY 'password';
You don't have to restart MySQL to see the changes, they will take effect immediately with the 'GRANT'...
You need to also tell Apache how to handle files with the .php extension by editing Apache's config file. Open conf/httpf.conf. Do a search for these lines below. Some may be there but just be commented out (remove the # before the line). Others you may need to edit (like the first line below)...
Something like a simple blog should do the trick too I think. Have a look at pmachine
http://pmachine.com/
They have a free lite version if you are a non-commercial site. Nice backend admin area, very intuitive to use. You can configure the look and feel of your site through the admin area...
for the php ini stuff I just use
ini_set("include_path", $doc_root);
// where $doc_root is the path to the folder which
// holds my php files
in a file that gets included into every page of my application (I don't actually include it into every file, but with the way I have...
Also speaking of security... since you are using a form anyway, why not use method="POST" instead of "GET"? It's more essential if you want to have the user passing sensitive data, if it appears in the URL someone else could get access to the data from the browser's history...
What is the 'boundary' parameter & what is the "myboundary" value supposed to be set at?
The New Zealand Site
http://www.thenewzealandsite.com
I solved the problem. I was giving it a URL based address to the photo, it didn't like that. When I changed it to a relative file path-based path it was ok. The odd thing is it seemed to work for some photos and not others even when it was URL based. Go figure! :/
Thanks!
The New Zealand Site...
Thanks vbkris!
I used that kind of debugging in other places, but I didn't know you could use it for the mysql_query as well. Well, that does sort of explain, this is what I get...
Access denied for user: blah blah
and the details are correct for the user and database.
But why is it giving me...
I've got a problem with GetImageSize working on some photos. All my photos are jpgs and it works fine on most of them, but there are a few where it's obviously not returing values for $dimensions (the value should be something like 'width="300" height="400").
$size =...
I'm trying to do an update and insert, in both cases I've got to do a select on the table first, which works. But when I come to do the update and insert queries they don't do anything.
I'm calling mysql_connect each time (any problem with doing this? my host doesn't have persistent...
I am using W2k and I've got perl running with IIS. I've just used ActivePerl's ppm3-bin.bat to install a couple packages and it seems that the DBD::mysql package isn't being recognized by my blogging app, although the other package I installed is recognized. All installs reported success. Any...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.