This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&time_control | |
run_days = 0, | |
run_hours = {{runhours}}, | |
run_minutes = 0, | |
run_seconds = 0, | |
start_year = {{startyear}}, {{startyear}}, {{startyear}}, | |
start_month = {{startmonth}}, {{startmonth}}, {{startmonth}}, | |
start_day = {{startday}}, {{startday}}, {{startday}}, | |
start_hour = {{starthour}}, {{starthour}}, {{starthour}}, | |
end_year = {{endyear}}, {{endyear}}, {{endyear}}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Function GetOutputPath(inputPath, extension) | |
Dim file | |
Dim basename | |
Dim foldername | |
basename = FSO.GetBaseName( inputPath ) | |
set file = FSO.GetFile( inputPath ) | |
foldername = file.ParentFolder |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# userdir.conf | |
server { | |
listen 80; | |
server_name localhost; | |
client_max_body_size 20M; | |
# Declare index files in advance to use .php extension as a selector | |
# to choose the correct location clause | |
index index.php index.html index.htm; |