
TypeScript
try {
let res = await account.createEmailSession(userinfo.email, userinfo.password); // Using createEmailSession method
let accountDetails = await account.get();
setuser(accountDetails);
navigate('/');
console.log(accountDetails);
} catch (error) {
console.log('email and password is ioncorrect')
}
};
Here is my appwrite config file .
TypeScript
// const VITE_ENDPOINT = import.meta.env.VITE_ENDPOINT;
// const VITE_PROJECTID = import.meta.env.VITE_PROJECTID;
// const VITE_DBID = import.meta.env.VITE_DBID;
// const VITE_COLLECTIONID = import.meta.env.VITE_COLLECTIONID;
// const VITE_BUCKETID = import.meta.env.VITE_BUCKETID;
const VITE_ENDPOINT = 'https://cloud.appwrite.io/v1'
const VITE_PROJECTID = '65e08e'
const VITE_DBID ='65e0981b'
const VITE_COLLECTIONID =''
export { VITE_ENDPOINT, VITE_PROJECTID, VITE_DBID, VITE_COLLECTIONID,VITE_BUCKETID };
const client = new Client()
client
.setEndpoint(VITE_ENDPOINT)
.setProject(VITE_PROJECTID);
export const database=new Databases(client);
export const functions=new Functions(client);
export const storage=new Storage(client);
export const account=new Account(client);
export default client
TL;DR
Developers are receiving a 'section prohibited' error likely due to a misconfiguration in the Appwrite setup. This can be caused by incorrect endpoint, project ID, or missing collection ID. Double check your configuration to resolve the error.Recommended threads
- Collection Permission issue
I am facing issue in my Pro account. "Add" button is disabled while adding permission in DB collection settings.
- SSO google apple not working anymore
We use Apple and Google sso in our react native app. Everything worked fine until we noticed today that we see general argument error. We did not change anythi...
- Opened my website after long time and Ba...
I built a website around a year back and and used appwrite for making the backend. At that time the website was working fine but now when i open it the images a...
