is this location on the websever?
E:/script/scriptname
you have to run the php files through the webserver.. have to..
php works by utilizing browser,SQL server, webserver, and the php engine.
so your scripts should be in a folder within your webroot folder
with apache this would the 'htdocs' folder
with windows IIS it would be the 'wwwroot' folder.
making the file path to your scripts:
c:\server\htdocs\Scripts
and your 'Script Path'
http://www.yoursite.com/Scripts/
HOWEVER!
the 'http://www.yoursite.com' part is usually a given when talking about script paths.. so
you would just enter :
'/Scripts/'
for your script path.
assuming your using the MySQL database you can change the database permission by typing this into the SQL command line as a query.
first:
USE DATABASE yourdatabase;
then:
GRANT ALL PRIVILEDGES ON yourdatabase.* TO 'username'@'localhost' IDENTIFIED BY 'password'
obviously we would replace 'yourdatabase' with the name of the database you created for yourself. as well replace username and password with an actual username and password.