Skip to main content

impossible to manage or delete a space . There was a bug when it was created and I can't modify or delete it.

Mat ‎

domini immobilier, did you create your Space in the newer than 1.0.62 version where there were permalinks changes or before that 1.0.062?

I had a case where I upgraded the plugin to version 1.0.062 and my Space was created before so permalink for one Spaces was showing my /portal/community instead of /portal/space/ and I had to delete the Space directly from the DB.

Also if you have a special characters (country based) in the Space URL then I am not sure if there might be any issues related to character encoding. If this is the case then its a good catch and need to be fixed!

Not Important, i have the 1.0.65 Version

Mat ‎

domini immobilier, so probably didnt follow the rule hahaha of not using special characters in the Space Slug - see attachment. Be honest. Dont lie 🤣

Mat ‎

domini immobilier just want to let you know that I replicated your issue on my WP instance by providing international character in the Space Slug.

To fix the issue it needs your manual action: you need to remove this Space from the database or correct the Space Slug name in the database.

It would be super if this could be validated in a field so users wont have this issue but db structure is pretty clean to find all necessary details.

To fix this issue (Space Slug) go to PhpMyAdmin (PMA) and find your table: xxxx_fcom_spaces and change the Space Slug manually or remove the row

 SELECT * FROM `xxxxx_fcom_spaces`
UPDATE `xxxxx_fcom_spaces` SET `title` = 'NewSpaceTitle', `slug` = 'NewSpaceSlug' WHERE `xxxxx_fcom_spaces`.`id` = xx; 

*replace xxxxx with your table name and xx with your row ID number

Not Important,thank you !!