aldebarantower
Forum Replies Created
-
Forum: Plugins
In reply to: [Thumbnails and Featured Images] problem – double extensionre install, new url: problem
Forum: Plugins
In reply to: [Thumbnails and Featured Images] problem – double extensionThumbnails configuration:
– Featured image auto selection ACTIVE
– Auto feature image persistence ACTIVE
– Enable on the fly thumbnail generation ACTIVE
– Process even the core sizes ACTIVEThumbnails plugin version 1.0.9.
Wordpress version 5.2.
Woocommerce version 3.4.7 (even 3.6.2).
Theme Thenty Seventeen (Sixteen and Nineteen).Forum: Plugins
In reply to: [Task Scheduler] Run PHP Scripts – Nothing happensI created a new WordPress installation, now task scheduler run php script.
I do not know what happen.
I am sorry for generate the topic.
Forum: Plugins
In reply to: [Task Scheduler] Run PHP Scripts – Nothing happensi tried two paths, the file did not create.
<?php
define(‘ROOTPATH’, __DIR__ . ‘\\’);
$path = ROOTPATH.’test01.txt’;
$myfile = fopen($path, “w”);
fwrite($myfile, “INI*****”.PHP_EOL);
fwrite($myfile, “FIN*****”.PHP_EOL);
fclose($myfile);
?><?php
define(‘ROOTPATH’,dirname(__FILE__) . ‘\\’);
$path = ROOTPATH.’test01.txt’;
$myfile = fopen($path, “w”);
fwrite($myfile, “INI*****”.PHP_EOL);
fwrite($myfile, “FIN*****”.PHP_EOL);
fclose($myfile);
?>the code run successful on my local IIS (php only, no wordpress, no plugin), but nothing happens when Task Scheduler plugin execute the script (server on production).