Here is my
local setup:
I am using xampp 1.7.1 , php 5.9 and have enabled pdo_sqlite.
I wrote some php scripts which do parsing of data and create a table.
All this works fine and has been tested on my machine locally with xampp.
Now I wanted to move data to remote server, running on linux and php 5.2.0-8+etch15. It also has enabled pdo_sqlite.
Now the problem is that, when ever I run the same program, I get following error
"Call to a member function bindParam() on a non-object " but I have checked this call is done on the PDO object only. Any idea what could be the problem?
I again tried it, after removing the small hack I had put into to circumvent the connection error.
There is an error at the time of creating database itself.
" unable to open database file"
Now my question is, is it so that I donot have access writes to create a new db file?
how can I check whether the access rights I have are sufficient?( I was given provided with an address where I need to drop my files to test, so dont really know what commands are there to check the access rights etc)
Bookmarks