Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for PHP
»
Re: The area you are attempting to access is forbidden
Re: The area you are attempting to access is forbidden
08-14-2009, 4:32 PM
choeschen
Joined on 08-14-2009
Posts 3
Re: The area you are attempting to access is forbidden
Reply
Quote
I ran into the same issue. For me it was a matter of I was changing the session name using the session_name PHP function. What I did to fix it was to include the same session_name function call in include_CuteEditor.php and Include_Secutiry.php file just before the session_start function. What I belive is happening is when you build the CuteEditor via the class call it is registering a session variable in the name space I specified (using the session_name function) but when the CuteEditor PHP code is ran it is not able to find the session variable it registered because it is looking in the wrong name space. By adding session_name to those two files it corrects this.
View Complete Thread