

Anonymous B wrote:When I try to install the package, I get "product installation error." What am I doing wrong?
If Left(fil,7) = "file://" Then
fil = Mid(fil,8)
End If If Left(fil,9) = "localhost" Then
fil = Mid(fil,10)
End If
trixmoto wrote:As discussed via email, if you open the script in a text editor and find lines 185-187...
- Code: Select all
If Left(fil,7) = "file://" Then
fil = Mid(fil,8)
End If
...then you can insert the following lines directly underneath these...
- Code: Select all
If Left(fil,9) = "localhost" Then
fil = Mid(fil,10)
End If
...this will trim off the "localhost" for you.
If Left(fil,10) = "localhost/" Then
fil = Mid(fil,11)
End If
trixmoto wrote:And as you have "file://" as well as "localhost/" you'll need to make sure these lines come after the original ones, not before.

Users browsing this forum: Google [Bot], Majestic-12 [Bot] and 26 guests