Upgrade the LDU extended plugins into Seditio plugins
1.With a text editor, batch-replace (ALL case sensitive) :
LDU_ by SED_
_LDU by _SED
ldu_ by sed_
cv( by sed_import(
Land Down Under by Seditio
plugins/extended/ by plugins/
Benim Eklediklerim..
ldu_query to sed_sql_query
ldu_num_rows to sed_sql_numrows
ldu_prepsql to sed_sql_prep
ldu_affected_rows to sed_sql_affectedrows
ldu_fetch_array to sql_sql_fetcharray
2. Then rename the few remaining functions, most of the sed_sql_...() have to be renamed.
List of the PHP functions for Seditio
3. Then look for the string "level" and remove all what's about LDU user levels.
(--- To add here : Sample ---)
4. In the file ***.setup.php, in the block [BEGIN/END_SED_EXTPLUGIN], add the lines
Kod:
Auth_guests=R
Lock_guests=W12345A
Auth_members=R
Lock_members=12345
Or tweak the default rights, but those lines should fit most of the plugins.
Read access for all, and Seditio will automatically set the rights for the default groups.
5. If the plugin is doing SQL Inserts, then there's a little bit more of tweaking, with the sanitizer sed_sql_prep().
(--- To add here : Samples ---)
6. Upload, install, test, debug and it should work.