At the top of each plugin there is a lot that needs to be changed, so just use these (remembering to have ticked 'Match Case')
LDU_ with SED_
_LDU with _SED
ldu_ with sed_
cv( with sed_import(
plugins/extended/ with plugins/
Now, thats a lot of the things you mainly needed. But, in the plugin itself there are a lot of 'mysql functions' that have to be changed.
sed_sql_affectedrows
sed_sql_close
sed_sql_connect
sed_sql_errno
sed_sql_error
sed_sql_fetcharray
sed_sql_fetchassoc
sed_sql_fetchrow
sed_sql_freeresult
sed_sql_insertid
sed_sql_listtables
sed_sql_numrows
sed_sql_prep
sed_sql_query
sed_sql_result
sed_sql_rowcount
Those are the ones taken from Neocrome.net. Most plugins don't use nearly that many, but thats what neocrome supplied us with. Now, some functions have also changed. I've noticed this list to have a lot that are false and I've reported most of them to oliver, but if you find your plugin has this problem in ldu 802 go to /system/functions.php and just rename them and place them in the seditio /system/functions.php.. but most of these should be working according to neocrome.net
sed_alphaonly
sed_auth
sed_auth_build
sed_auth_clear
sed_auth_reorder
sed_bbcode
sed_bbcode_autourls
sed_bbcode_urls
sed_block
sed_blockguests
sed_build_addtxt
sed_build_age
sed_build_bbcodes
sed_build_bbcodes_local
sed_build_catpath
sed_build_comments
sed_build_country
sed_build_email
sed_build_flag
sed_build_forums
sed_build_gallery
sed_build_group
sed_build_groupsms
sed_build_icq
sed_build_ipsearch
sed_build_msn
sed_build_oddeven
sed_build_pfs
sed_build_pm
sed_build_ratings
sed_build_smilies
sed_build_smilies_local
sed_build_stars
sed_build_timegap
sed_build_timezone
sed_build_url
sed_build_user
sed_build_userimage
sed_build_usertext
sed_cc
sed_cache_clear
sed_cache_clearall
sed_cache_get
sed_cache_getall
sed_cache_store
sed_check_xg
sed_check_xp
sed_createthumb
sed_cutstring
sed_cv
sed_die
sed_diefatal
sed_dieifdisabled
sed_forum_prunetopics
sed_forum_sectionsetlast
sed_getextplugins
sed_htmlmetas
sed_import
sed_infoget
sed_javascript
sed_loadbbcodes
sed_load_structure
sed_log
sed_log_cv
sed_mail
sed_mktime
sed_outputfilters
sed_parse
sed_pfs_deleteall
sed_pfs_path
sed_pfs_thumbpath
sed_readraw
sed_redirect
sed_selectbox
sed_selectbox_categories
sed_selectbox_countries
sed_selectbox_date
sed_selectbox_folders
sed_selectbox_gender
sed_selectbox_groups
sed_selectbox_lang
sed_selectbox_sections
sed_selectbox_skin
sed_selectbox_users
sed_sendheaders
sed_setdoctype
sed_shield_clearaction
sed_shield_hammer
sed_shield_protect
sed_shield_update
sed_skinfile
sed_sourcekey
sed_stat_create
sed_stat_get
sed_stat_inc
sed_stringinfile
sed_unique
sed_userinfo
sed_userisonline
sed_wraptext
sed_xg
sed_xp
Yet again, barely any plugins actually use that many, unless you're coding ldu over again ^o) Now, there are still some things from neocrome.net's documentations that aren't mentioned, such as userlevels. Now, Seditio uses usergroups and maingroups, so achieving what you want is a little more tricky and might require just a little bit of php/common sense knowledge.
In your text editor, search for something like this:
Code:
$usr['level']If you find this, replace it with this:
Code:
$usr['maingroup']I'm still not 100% positive that works. Now, if its prompting whether a user is an admin or not.. its a bit different because maingroups function so weird its hard to achieve what you want by a simple > or <.. So, since Seditio uses rights, you can do this:
Code:
$usr['isadmin']That is just asking whether the user is an admin or not..
Ah, almost forgot the default rights. Personally I don't set these. I leave it up to a webmaster to configure them for themselves, because I don't really understand them.. but this is how Oliver taught me on the neocrome forums.
Code:
Auth_guests=R Lock_guests=W12345A Auth_members=R Lock_members=12345RW12345A
R is read ability. This will give a guest the ability to be able to view the plugin.
W is writing ability. It will give a guest the ability to fill out fields and forums.
12345A beats the crap outta me. I got no clue.
Now if you did this all perfectly, your brand new Seditio plugin should work fine. If not, please post all errors on our forums and I will try and resolve them 1 on 1. Also remember, you might not get it your first try. Things never come that easy. ;-)

