Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Nathon Jones #1
how do you change IUSR_machinename permissions?
Having a nightmare with the old DW bug when using an Access database and ASP
pages that produces this error:
"Could not open "unknown"; file arleady in use."
Almost all of the tech support advice I have been offered so far has been
about changing permissions....but none explain HOW you change the
permissions, just that you should (very helpful).
Can someone run that past me?
I am convinced that permissions is NOT the problem here. The problem is
that every time you open a Recordset on an ASP page, DW creates an .ldb file
in the same directory as the database. Yet, when you close the recordset
AND the asp page, the .ldb remains, which causes the error when you try to
preview the site.
My question is...
Why doesn't Dreamweaver delete the .ldb file once the recordset and asp page
have been closed?
Really confusing....hope someone can help
Nath.
Nathon Jones Guest
-
Contribute permissions vs. network permissions
We are currently implementing Contribute in a website that is highly centralized, with approximately 50 department-level CT writers and 4 CT... -
Change NTFS Permissions or run shell script
I am trying to Create a web app that creates a directory, and assigns permissions to the directory. Is there a way to do this, or even run a shell... -
filesystem permissions change by themselves...
permissions on my /opt filesystem are changing daily, seeming by themselves. i.e. I tried to run a scipt and noticed that the permissions on... -
Change Unix file permissions from a Carbon app?
In article <not.here-ya02408000R3007030100130001@news.dial.pipex.com>, not.here@dial.pipex.com (Phil Taylor) wrote: 1.) Look in <Files.h> at... -
cant change file permissions from read only on network
Im on WindowsXP Home--I have a network setup and experience no problems, except for one. I can share drives on each computer and see all the data,... -
Lionstone #2
Re: how do you change IUSR_machinename permissions?
There's a simple workaround.
Make a page that connects to a different database. The database can be
empty, but you need to have a table in it. Call your page lockrelease.asp
or something. All it has to do is request a recordset. No display
necessary. Open that page with DW. Even though it doesn't release its
locks normally, if you open a page that connects to a different database, it
will release the locks on the first database.
--
-------------------------------------------------------------------
You must SHOW YOURSELF to e-mail me. No cowards allowed!
"Nathon Jones" <nathon@SHPAMkirkmoor.com> wrote in message
news:d32rrr$4k1$1@forums.macromedia.com...ASP> Having a nightmare with the old DW bug when using an Access database andfile> pages that produces this error:
>
> "Could not open "unknown"; file arleady in use."
>
> Almost all of the tech support advice I have been offered so far has been
> about changing permissions....but none explain HOW you change the
> permissions, just that you should (very helpful).
>
> Can someone run that past me?
>
> I am convinced that permissions is NOT the problem here. The problem is
> that every time you open a Recordset on an ASP page, DW creates an .ldbpage> in the same directory as the database. Yet, when you close the recordset
> AND the asp page, the .ldb remains, which causes the error when you try to
> preview the site.
>
> My question is...
>
> Why doesn't Dreamweaver delete the .ldb file once the recordset and asp> have been closed?
>
> Really confusing....hope someone can help
> Nath.
>
>
Lionstone Guest
-
Tom Coleman #3
Re: how do you change IUSR_machinename permissions?
right-click on the folder (directory) that the database lives in and go
to "properties", check "full control" for IUSR under the security tab.
You might have to restart you browser and/or DW to see any difference.
Not really a DW bug, though.
HTH,
Tom
Nathon Jones wrote:> Having a nightmare with the old DW bug when using an Access database and ASP
> pages that produces this error:
>
> "Could not open "unknown"; file arleady in use."
>
> Almost all of the tech support advice I have been offered so far has been
> about changing permissions....but none explain HOW you change the
> permissions, just that you should (very helpful).
>
> Can someone run that past me?
>
> I am convinced that permissions is NOT the problem here. The problem is
> that every time you open a Recordset on an ASP page, DW creates an .ldb file
> in the same directory as the database. Yet, when you close the recordset
> AND the asp page, the .ldb remains, which causes the error when you try to
> preview the site.
>
> My question is...
>
> Why doesn't Dreamweaver delete the .ldb file once the recordset and asp page
> have been closed?
>
> Really confusing....hope someone can help
> Nath.
>
>Tom Coleman Guest
-
darrel #4
Re: how do you change IUSR_machinename permissions?
> Having a nightmare with the old DW bug when using an Access database and
ASPI suggested this already, slightly with toungue in cheek, but I guess I'd> pages that produces this error:
give it serious consideration...have you considered using MySQL instead?
Unless you have a specific nead for Access (like it's the only database your
web hosts allows), there isn't a strong reason to stick with it.
page> Why doesn't Dreamweaver delete the .ldb file once the recordset and aspMy guess is that DW needs to keep it open so you can do all of the WYSIWYG> have been closed?
database connection code writing.
One option is to use two connection strings and duplicate the database.
Store this string in a standalone file. On your local site, have it connect
to DB1. On your remote site, have it connect to DB2. Then, just be sure not
to overwrite the file that is storing the connection string on the server.
-Darrel
darrel Guest



Reply With Quote

