Due to how this forum formats text below a code block, I moved answer #1 to the bottom ..
#2, yes very possible, but there is nothing written already to do this. The file pop_block_1a.zip from the
file archives could likely be modified to do exactly what you want.
#3 Correct, when sites are submitted from the public add site page, the submitter enters an email address, a user name and password. Once their entry is approved, the user name and password will allow them to update their entry. You'll see an "edit" link on every entry which takes you to the form to login and edit that entry.
There is also and admin panel where you (the site owner) can make new entries and edit all entries. You can predefine the user name and password to use on new entries by editing the inlucde/config.php file.
#4 I'm sure many will point out, a major downfall of all this is my serious inability to document. There are various importers available, but nothing written specifically for Delicious. Do they have an export ?
Anyways, some of the older add ons and patches are in the FIle archives mentioned eailer. More recent add ons and patches are in the
Downloads section
#1 .. Excerpt from the
FAQ
Edit the file named "directory" with a plain text editor such as notepad, and add this near the top
| Code: |
if ($_POST['submit_add']){$show="add";}
if (empty($PATH_INFO)){$PATH_INFO = $_SERVER['PATH_INFO'];}
if (empty($PATH_INFO)){$PATH_INFO = $_SERVER["ORIG_PATH_INFO"];}
if (empty($PATH_INFO)){$PATH_INFO = $HTTP_SERVER_VARS['PATH_INFO'];}
if (empty($PATH_INFO)){$PATH_INFO = $_SERVER["REQUEST_URI"];}
|