How to configure a FileCachePath in IISPEED? - iis-express

I'm having a following error message:
IISpeed cannot run due to missing configuration. Please check if a valid FileCachePath is configured.(this page is only shown when viewing on the local machine - your visitors will see the normal, but unoptimized website).
Even thou I have this line:
IISpeed FileCachePath c:\iispeed_cache\
uncommented in my:
c:\Program Files\we-amp\release\iispeed.config
Please help!

You need to configure a FileCachePath in iispeed.conf in the install directory.
• For the 64 bits version, open explorer and go to: %ProgramFiles%\we-amp\iispeed\release\
• For the 32 bits version, open explorer and go to:%ProgramFiles(x86)%\we-amp\iispeed\release\
On a 64 bits system with a 32 bits application pool you also need to do this in x86 directory.
For example:
pagespeed FileCachePath "c:\pscache\"

Related

Epson JavaPOS ADK Install not completing

In trying to install the Epson JavaPOS ADK the program never finishes. Looking at the log file seems that the program is looking for files that do not exist, and therefore cannot manipulate them. After installation "completes" the file C:\opt\EpsonJavaPOS\Uninstall_Epson JavaPOS ADK_1.14.0.0\.com.zerog.registry is created. Not sure what I've done to mess this up.
Log exerpts
Modify Text File - Single File: No Target Chosen
Status: ERROR
Additional Notes: ERROR - Unable to locate ASCII text file to be manipulated. Deferring...
Modify Text File - Single File: No Target Chosen
Status: ERROR
Additional Notes: ERROR - Unable to locate ASCII text file to be manipulated. Deferring...
Install Action: InstallAnywhere Variable
Status: SUCCESSFUL
Install Action: InstallAnywhere Variable
Status: SUCCESSFUL
Check Disk Space: /opt\EpsonJavaPOS
Status: SUCCESSFUL
Additional Notes: NOTE - Required Disk Space: 40,268,671; Free Disk Space: -1
Install Action: Jump To: Next Unit Package Con't -- Prev: NO JUMP
Status: SUCCESSFUL
Modify Text File - Single File: SetupPOS.properties
Status: ERROR
Additional Notes: ERROR - Unable to locate ASCII text file to be manipulated. Deferring...
System Setup
Windows 10
Java 1.8.181
JavaPOS ADK v1.14W
There are bug fixes that may be involved in JavaPOS ADK 1.14.3W.
[Bug fix]
- The bug is fixed that the installation of JavaPOS ADK fails in the latest Java VM on Windows10.
The latest version is 1.14.6 W, so please try it.
EPSON JavaPOS ADK (for Windows OS) Ver. 1.14.6W
for me, i found out that the installer does not play nicely with Java 8 and Windows 10. After I used Java 7 as the parameter for LAX_VM, it installed correctly. You may need to switch to another user if the installer keeps skipping installation steps though.

While installing instantclient_12_1 in Windows 10 it shows the following error

While installing instantclient_12_1 in Windows 10 it shows the following error.
I will provide the Image of the error after we select the from instantclient_12_1 from Data Source (ODBC)
it was the first error with follwing with next error in next pic
it was the NEXT error
Download vcredist_x86 From the following link
Then do the same Connectivity with 32 bit Software of instantclient_12_1 from oracle site and the dll(Instant Client Packages ODBC (32 bit)) files from the same link
For More Information Read this :- https://community.oracle.com/thread/3938283

Chilkat ftp.SyncLocalDir with open files?

I’m having an issue with ftp.SyncLocalDir when I have an open file on the local directory.
I’m using the example from http://www.example-code.com/vbnet/ftp_syncLocalTree.asp with a few minor changes. It has been working fine for a few days and then has stopped working.
I’ve found that one of the files is open on the local directory. Looking through the http://chilkatforum.com/ forum I see that one of the answers stated that
“Chilkat will detect errors that are likely permission/access errors and will continue with the remainder of the download.”
This is not happening for me. Looking at the last error text it states that the file is used by another process. Not other files get synchronized.
Is the something else I need to add to the code to force it to continue after the error?
Below is the last error text.
Thanks,
Steve
ChilkatLog:
SyncLocalDir:
DllDate: Dec 5 2014
ChilkatVersion: 9.5.0.46
UnlockPrefix: *********
Username: *********
Architecture: Little Endian; 32-bit
Language: .NET 4.0
VerboseLogging: 0
commandCharset: ansi
dirListingCharset: ansi
localDirPath: Q:\TEST
mode: 2
ProgressMonitoring:
enabled: yes
heartbeatMs: 0
sendBufferSize: 65536
--ProgressMonitoring
downloadDir:
getFile2:
localFilename: Q:\TEST/LINE_6 _13.csv
Replacing existing local file
openForReadWriteWin32:
Failed to open file (2)
localFilePath: Q:\TEST\LINE_6 _13.csv
currentWorkingDirectory: H:\Code In Progress\LLS\Gen 3 Test And Crimp
w-network\VB Code\trunk\FTP Syncronize\bin\Debug
osErrorInfo: The process cannot access the file because it is being us
ed by another process.
localWindowsFilePath: Q:\TEST\Line 6\LINE_6 _13.csv
--openForReadWriteWin32
--getFile2
Failed to download file
failedFilename: /LINE_6 _13.csv
--downloadDir
Failed.
--SyncLocalDir
--ChilkatLog
Please try this new build for the .NET 4.0 Framework:
32-bit Download: http://www.chilkatsoft.com/download/preRelease/ChilkatDotNet4-9.5.0-win32.zip
64-bit Download: http://www.chilkatsoft.com/download/preRelease/ChilkatDotNet4-9.5.0-x64.zip
The feature for continuing past permission/access issues had to do with issues on the remote server as opposed to the local filesystem. This new build should now also do the same for local permission errors. It will be noted in the release notes for Chilkat version 9.5.0.47 when released (soon).
If you have trouble, please post the LastErrorText using this new build.

For a Bootstrapper, the FileCheck element isn't finding the file on 64 bit OS in System32

Hi I am attempting to create a new boostrapper from my WiX generated MSI. I have done one and it worked but now I need to do another where I check the file version on the file.
According to MSDN I should use the FileCheck element.
<InstallChecks>
<FileCheck Property="VersionDll" FileName="cimwin32.dll" SearchPath="wbem" SpecialFolder="SystemFolder"/>
</InstallChecks>
But it doesn't work for me.
The log generated says:
Running check with folder 'C:\Windows\System32\wbem' and file 'cimwin32.dll'
Attempting to find file 'C:\Windows\System32\wbem\cimwin32.dll'
Could not find file 'cimwin32.dll' in folder 'C:\Windows\System32\wbem'
Not setting value for property 'VersionDll'
Even though the listed path in the log file is correct! Very confusing. Any help would be appreciated
I am not sure if this matters or not but I am seeing this on a 64 Windows 7 OS.
UPDATE
Based off of help from Micheal and some testing this is a problem with File Redirection on 64 bit machines and the FileCheck tag in the bootstrapper. Regardless of architecture I need to check Windows/System32/wbem/cimwin32.dll
Alright. I got it. Thanks to Michael Urman for brainstorming with me. It got me thinking about File Redirection on 64bit OSs that I didn't know happened.
For the bootstrapper to get access to a 32 bit directory on a 64 bit OS it needs to use the alias Sysnative for System32
More info
So I just created another file check. One for 32 and one for 64 and I am up and going.
<InstallChecks>
<FileCheck Property="VersionDll" FileName="cimwin32.dll" SearchPath="System32\wbem" SpecialFolder="WindowsFolder" />
<FileCheck Property="VersionDll64bit" FileName="cimwin32.dll" SearchPath="Sysnative\wbem" SpecialFolder="WindowsFolder" />
</InstallChecks>

Problems in installaing Magento in Windows Shared Server using Plesk

I don´t know how to do. I always have the same error no matter what I do to protect the files. The host (mochahost) don´t give me any support. So I will try if a good soul here could help me.
These are the errors:
Warning: include_once(Mage/Core/functions.php) [function.include-once]: failed to open stream: No such file or directory in C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\Mage.php on line 49
Warning: include_once() [function.include]: Failed opening 'Mage/Core/functions.php' for inclusion (include_path='C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\code\local;C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\code\community;C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\code\core;C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\lib;.;C:\Program Files (x86)\Parallels\Plesk\Additional\PleskPHP5\Pear;./includes;./pear;./;') in C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\Mage.php on line 49
Warning: Varien_Autoload::include(Mage\Core\Model\App.php) [varien-autoload.include]: failed to open stream: No such file or directory in C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\lib\Varien\Autoload.php on line 93
Warning: Varien_Autoload::include() [function.include]: Failed opening 'Mage\Core\Model\App.php' for inclusion (include_path='C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\code\local;C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\code\community;C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\code\core;C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\lib;.;C:\Program Files (x86)\Parallels\Plesk\Additional\PleskPHP5\Pear;./includes;./pear;./;') in C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\lib\Varien\Autoload.php on line 93
Fatal error: Class 'Mage_Core_Model_App' not found in C:\inetpub\vhosts\e-interage.com.br\httpdocs\dinossauros\app\Mage.php on line 620
Best regards
The answer is in your question - you are 'installing Magento in Windows Shared Server using Plesk.'
You are using Windows shared hosting for an application developed for a linux box, preferably one with lots of resources.
Even if you get this working you will be spending your time adapting the software to your setup, not developing your shop.
How much do you value your time?
Is it more than your (shared) computer's time?
If so, get the right hosting, which at a minimum is virtual server, linux flavour. The installation instructions will work for you. Same with any other problems you have with your build - all the instructions and forum tips are for linux, i.e. with the path separators going '/' and not Microsoft backwards-'\'.

Resources