{10} Pending Bugs (7 matches)

Release

Ticket Summary Component Version Owner Created
Description
#34 installing in shared host (userspace) - dealing with ftp install in Akftp.php - solving permission problem installer 0.x bermi 10/30/07

I needed to install Editam in a paid shared host. You cannot go through the ftp setup from a new install in userspace mode because Editam cannot write the ftp settings in the config.php file because it doesn't have permission to create it. There is no permission because when Editam tries to test the ftp settings, it needs to create a temp file. Akftp.php says that the file should be created in /tmp , which doesn't work because the temp file is created with the uid of the server, not the uid of Editam. Instead of creating the temporary file in /tmp like Akftp.php states on line 43, it should be created inside a directory on Apache's open_basedir variable. this variable includes /tmp folder in my setup, but it didn't work. I instead had to change the statement from : $tmpfname = tempnam('/tmp', 'tmp'); to: $tmpfname = tempnam('path_to_WWW_ROOT', 'tmp'); In my case, "path_to_WWW_ROOT" was /var/www/vhosts/xxxxx.xx/httpdocs . I also created a tmp folder in httpdocs, then it worked. Somehow it wouldn't work from /tmp . The output statements of this issue are located in the last post of the google group discussion: http://groups.google.com/group/editam/msg/67f6b1bb97ff8ebd? after the ------second paste-------------------- line. The errors before that is another issue. Editam is functioning now.


Editam 0.6 Release

Ticket Summary Component Version Owner Created
Description
#6 Snippets are too restrictive by default core 0.x bermi 09/18/07

They should be controlled by roles (can use PHP, can use safe PHP or can't use PHP at all)


#4 Invalid page tab selected core 0.x bermi 09/18/07

Editing a page with 3 parts, removing 2 of them, adding 4 new parts. After submiting the tags are hidden.


Editam 1.0 Release

Ticket Summary Component Version Owner Created
Description
#23 Create an editArea plugin extension_engine 1.x bermi 09/18/07

Create an extension that switches Layouts and Snippets edition with an editArea editor.

More editArea details at http://sourceforge.net/projects/editarea


Editam 1.0 beta Release

Ticket Summary Component Version Owner Created
Description
#32 Broken links if not on port 80 core 0.x bermi 10/07/07

If you install Editam on a local server running on e.g. port 8888, many links point to 127.0.0.18888/... instead of 127.0.0.1:8888/... This causes several problems:

- broken links in frontend
- no stylesheet in backend
- no redirect to backend after login

(backend navigation works correctly)


#20 Disappearing flash messages shouldn't move the whole layout core 0.x bermi 09/18/07

When a flash message disappears it moves the whole focus of the page and might lead to confusion and wrong actions.


#21 Handle user self deletion core 0.x bermi 09/18/07

If a user deletes her account, we should log them out of the admin


Note: See TracReports for help on using and creating reports.