Warning: set_time_limit() has been disabled for security reasons in /home../httpdocs/wp-content/plugins/wordpress-importer/wordpress-importer.php on line 91
Sizce çözüm yöntemi ne olabilir ? (Bu hatayı daha önceden de yaşamıştım, çözüm olarak timelimit ile ilgili olan bir kodu bulup açıklama satırı yapmıştım fakat şimdi tam olarak hatırlayamadım. )
Forum sitelerinden baktığımda php.ini dosyasından ve set_time_limit(0) şeklinde yazılması gerektiğinden bahsedilmiş bunları tam olarak hangi sayfaya ve hangi kod bloguna ekliyoruz? (Natro tarafına cevap verme süresini belirttim onlarda uzattıkları halde sorun devam ediyor)
91. satırdaki fonksiyon kodu:
function dispatch() {
$this->header();
$step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
switch ( $step ) {
case 0:
$this->greet();
break;
case 1:
check_admin_referer( 'import-upload' );
if ( $this->handle_upload() )
$this->import_options();
break;
case 2:
check_admin_referer( 'import-wordpress' );
$this->fetch_attachments = ( ! empty( $_POST['fetch_attachments'] ) && $this->allow_fetch_attachments() );
$this->id = (int) $_POST['import_id'];
$file = get_attached_file( $this->id );
set_time_limit();
$this->import( $file );
break;
}
$this->footer();
}