Home > WordPress Modim problemi Reġistru Plus plagg> arranġament wara t-tranżizzjoni għall WordPress 2.7

Problemi Reġistru Plus plagg Arranġament wara li jiċċaqalqu lejn WordPress 2.7

Aħna kollha probabilment familjari mal-plugin pjuttost utli - Reġistru Plus .

Wara t-transizzjoni għall-verżjoni 2.7 tal WordPress, bosta problemi kienu addittivi;

  1. Ittestjar Reġistrazzjoni saħħa password ma taħdimx.
  2. Fajl Common.js problema (i wp-admin/js direttorju). Funzjoni GetAllUserSettings (): varjabbli userSettings mhuwiex definit.
  3. Wara inti upload immaġni tad-dwana - personalment jgħaqqdu / fajl Lharsh ma taħdimx aktar.

Iżviluppaturi Mod probabbilment "nesa" li tieħu garża serje verżjoni 2.7, għalkemm diversi xhur għaddew tajba.

Grazzi għall-komunità WordPress huwa soluzzjoni għal dawn il-problemi (Kreditu għall MarQ_ZA Val - Mdvaldosta -soluzzjoni).

Password Emenda saħħa verifika problema -

Iftaħ il-fajl reġistru-plus.php fl-direttorju / wp-content/plugins/register-plus /, u jfittxu l-taqsima li ġejja:

if ( strength == pwsL10n.bad ) {
jQuery(res).addClass('bad');
jQuery(res).html( pwsL10n.bad );
}
else if ( strength == pwsL10n.good ) {
jQuery(res).addClass('good');
jQuery(res).html( pwsL10n.good );
}
else if ( strength == pwsL10n.strong ) {
jQuery(res).addClass('strong');
jQuery(res).html( pwsL10n.strong );
}
else {
// this catches 'Too short' and the off chance anything else comes along
jQuery(res).addClass('short');
jQuery(res).html( pwsL10n.short );
}

לאחר שמצאתם את המקטע, החליפו אותו בקוד הבא:

if ( strength == 2 ) {
jQuery(res).addClass('bad');
jQuery(res).html( pwsL10n.bad );
}
else if ( strength == 3 ) {
jQuery(res).addClass('good');
jQuery(res).html( pwsL10n.good );
}
else if ( strength == 4 ) {
jQuery(res).addClass('strong');
jQuery(res).html( pwsL10n.strong );
}
else {
// this catches 'Too short' and the off chance anything else comes along
jQuery(res).addClass('short');
jQuery(res).html( pwsL10n.short );
}

תיקון הבעיה בקובץ commen.js -

פתחו את הקובץ commen.js הנמצא בתקייה /wp-admin/js/ , וחפשו את המקטע הבא:

// Returns all settings as js object.
function getAllUserSettings() {
return wpCookies.getHash('wp-settings-'+userSettings.uid) || {};
}

והחליפו אותו בקוד הבא:

// Returns all settings as js object.
function getAllUserSettings() {
if (typeof(userSettings) == 'undefined')
{
return {};
}
else
{
return wpCookies.getHash('wp-settings-'+userSettings.uid) || {};
}
}

תיקון בעיית העלאת לוגו מותאם-אישית -

פתחו את הקובץ register-plus.php הנמצא בתקייה /wp-content/plugins/register-plus/ , וחפשו את השורה הבאה:

$upload_dir = ABSPATH . get_option('upload_path');

והחליפו בשורה הבאה:

$upload_dir = get_option('upload_path');

בהצלחה :)

No related posts.

קטגוריות: WordPress Modim תגיות: , , , , ,
  1. 1 יוני, 2009 מתוך 06:47 | #1

    תודה :]
    מדריך שימושי ותקין לחלוטין.

  1. אין הפניות עדיין.