Кто-нибудь может мне сказать, почему эта функция вообще не копирует файл?
$pluginfile = get_bloginfo('template_url') . '/wp-content/plugins/supersqueeze/supersqueeze.php';
$urlparts = get_bloginfo('template_url');
$homeurl = home_url();
$urlstrip = str_replace($homeurl, '..', $urlparts);
$urldest = $urlstrip . '/supersqueeze.php';
function copyemz(){
global $pluginfile; global $urldest;
if(!@copy($pluginfile,$urldest)) {
$errors= error_get_last();
}
}
Этот файл запускается с /public_html/wp-admin/plugins.php
Мне нужно скопировать файл на($ pluginfile) /public_html/wp-content/plugins/supersqueeze/supersqueeze.php
в ($ urldest) /public_html/wp-content/themes/[active wordpress theme]
- конечно, заменив [активную тему WordPress] каталогом темы.