Profilos telepítés után , frissítéskori hibaüzenet

tamoca képe

Szervusztok DruPálosok!
A honlap még az elején profillal lett telepítve commerce vel.
Közben mégse lett webáruház levettem sok modult, és most meg frissítettem.
Ez a hibaüzenet fogadott:
Notice: Undefined index: distribution_name drupal_install_profile_distribution_name() függvényben (/home/httpd/www/example.hu/html/includes/install.inc 207 sor).

ez a szóban fordó rész
else {
$profile = drupal_get_profile();
$info = system_get_info('module', $profile);
return $info['distribution_name'];

}

Mit kellene belehegeszteni nem tudom, hogy eltűnjön a hibaüzenet. Normál maggal frissítettem a commerce modulok el is lettek távolítva korábban. Tulképp a sima drupal verzió az alap van már fenn, de valszeg keresi a régi profilt ami ki is lett törölve frissítéskor.

Taxonomy upgrade extras: 
Drupal verzió: 
pp képe

install_profile változót írd át.

drush vset install_profile minimal

vagy a settings php-ba:

$conf[install_profile] = 'minimal';

pp

2
0
tamoca képe

Kérlek segíts, ez az eredeti, hol írjam át , beleírnád a javítást?
/**
* Loads the installation profile, extracting its defined distribution name.
*
* @return
* The distribution name defined in the profile's .info file. Defaults to
* "Drupal" if none is explicitly provided by the installation profile.
*
* @see install_profile_info()
*/
function drupal_install_profile_distribution_name() {
// During installation, the profile information is stored in the global
// installation state (it might not be saved anywhere yet).
if (drupal_installation_attempted()) {
global $install_state;
return $install_state['profile_info']['distribution_name'];
}
// At all other times, we load the profile via standard methods.
else {
$profile = drupal_get_profile();
$info = system_get_info('module', $profile);
return $info['distribution_name'];
}
}

0
0

tamoca

pp képe

A korábbi javaslat nem segített?

pp

1
0
tamoca képe

Szervusz. Biztos jó, csak én nem tudom hova írjam be. Bemásoltam a szóban forgó részt , visszamásolnád beillesztve amit javasoltál? Köszi!

0
0

tamoca

nevergone képe

sites/default/settings.php végére ezt írd be:

$conf['install_profile'] = 'minimal';

Ezt javasolta pp is fentebb.

1
0
tamoca képe

Szervusz, köszi a gyors választ.
A settings.php végére betettem de ez az üzenet van:
Notice: Use of undefined constant install_profile - assumed 'install_profile' in include_once() (line 567 of /home/httpd/www/eample.hu/html/sites/default/settings.php).

0
0

tamoca

nevergone képe

Szia!

Biztosan ezt tetted be? Ez nem teljesen ugyanaz, mint a többi hozzászólásban lévő kód.

0
0
tamoca képe

Jó lett, nem a végére tettem, hanem egy aktív részbe ahol hasonló paramétereket adott meg.
Ide tettem be itt látja
$conf['404_fast_paths_exclude'] = '/\/(?:styles)\//';
$conf['404_fast_paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';
$conf['404_fast_html'] = '<head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body>';
$conf['install_profile'] = 'minimal';
/**

Köszi szépen a segítséget.

0
0

tamoca

tamoca képe

$conf['install_profile'] = 'minimal';
tehát ez a jó.

0
0

tamoca

tamoca képe

Szervusztok a tárhelyszolgáltató, visszatett egy mentést és frissítenem kellene mert felnyomták az oldalt és leveleket küldözgettek róla. A korábbi profilos telepítés miatt nem tudom a sima maggal frissíteni, nem akarom a commerce profilt használni , mert nem mindig friss , meg végül is mégsem lett webáruház az oldal.
A fenti bjegyzésben nem tudom mit hova írjak be. Kérlek segíts.

0
0

tamoca

lysander19 képe

Szia!

Amit bemásoltál az a Drupal core-ban levő file, abba 'nem érdemes' :) belenyúlni.

a sites/default/ mappában találsz egy settings.php filet, ide tedd be a végére a pp által javasolt
$conf[install_profile] = 'minimal';
sort.

1
0
tamoca képe

Notice: Use of undefined constant install_profile - assumed 'install_profile' in include_once() (line 568 of /home/httpd/www/example.hu/html/sites/default/settings.php).

Frissítés után pedig ez van:
Notice: Use of undefined constant install_profile - assumed 'install_profile' in include_once() (line 567 of /home/httpd/www/example.hu/html/sites/default/settings.php).

0
0

tamoca

nevergone képe

Kimaradt két aposztróf, fentebb írtam a javítottat.

0
0