You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can duplicate this issue. When I create a page with only the following:
<codify sql>
CREATE PROCEDURE GetSessionInfoForCurrentDatabase
AS
BEGIN
DECLARE @CurrentDatabaseName NVARCHAR(128);
SET @CurrentDatabaseName = DB_NAME();
SELECT
sess.session_id,
host_name,
sess.database_id,
@CurrentDatabaseName AS database_name,
program_name,
nt_domain,
login_name,
connect_time,
last_request_end_time
FROM sys.dm_exec_sessions AS sess
INNER JOIN sys.dm_exec_connections AS conn ON sess.session_id = conn.session_id
WHERE DB_NAME(sess.database_id) = @CurrentDatabaseName
ORDER BY program_name;
END;
</codify>
I am getting this message:
Forbidden
You don't have permission to access this resource.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
If I just use the following on a page, I have no issues:
<codify sql>
Using test
</codify>
I'm not sure if you can duplicate it on your end. I can paste other tsql scripts on a page without issue, just not this one.
I'm using shared hosting with Nixihost.com and Dokuwiki was installed with Softilicious. I'm using Release 2023-04-04a "Jack Jackrum".
The text was updated successfully, but these errors were encountered:
I can duplicate this issue. When I create a page with only the following:
I am getting this message:
If I just use the following on a page, I have no issues:
I'm not sure if you can duplicate it on your end. I can paste other tsql scripts on a page without issue, just not this one.
I'm using shared hosting with Nixihost.com and Dokuwiki was installed with Softilicious. I'm using Release 2023-04-04a "Jack Jackrum".
The text was updated successfully, but these errors were encountered: