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.
install_profile változót írd
install_profile változót írd át.
drush vset install_profile minimal
vagy a settings php-ba:
$conf[install_profile] = 'minimal';
pp
Palócz István
https://palocz.hu | https://tanarurkerem.hu
Install_profile
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'];
}
}
tamoca
A korábbi javaslat nem
A korábbi javaslat nem segített?
pp
Palócz István
https://palocz.hu | https://tanarurkerem.hu
Jó lehet, csak nem tudom hova írjam be
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!
tamoca
settings.php
sites/default/settings.php végére ezt írd be:
$conf['install_profile'] = 'minimal';
Ezt javasolta pp is fentebb.
Választ szeretnél? - Új kérdés, új téma - Tesztoldal - Trollkezelés - Frissítés
beírtam de hiba üzenet a következő:
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).
tamoca
nem ugyanaz
Szia!
Biztosan ezt tetted be? Ez nem teljesen ugyanaz, mint a többi hozzászólásban lévő kód.
Választ szeretnél? - Új kérdés, új téma - Tesztoldal - Trollkezelés - Frissítés
nem a végére tettem
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.
tamoca
köszi
$conf['install_profile'] = 'minimal';
tehát ez a jó.
tamoca
sajnos felnyomták az oldalt, emiatt sos frissítenem kellene
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.
tamoca
settings.php
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.
betettem a végére, de hibaüzenet van
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).
tamoca
aposztróf
Kimaradt két aposztróf, fentebb írtam a javítottat.
Választ szeretnél? - Új kérdés, új téma - Tesztoldal - Trollkezelés - Frissítés