ListSearch.com http://www.lassosoft.com Thu, 28 Mar 2024 02:54 -0400 http://www.listsearch.com en hourly 1 Re: Lasso 8.6 - All Headers http://www.lassosoft.com/lassotalk?id=279988 Sat, 01 Sep 2018 11:09 -0400 Wade Maxfield http://www.lassosoft.com/lassotalk?id=279988 > On 1/09/2018, at 06:38, Steffan A. Cline <steffan@hldns.com> wrote:
>
> Due to the way Apple labels their services, it’s even been hard trying to find any good clear docs how to bypass the web caching server. Anyone seen a good article?


Depending on what exactly you have set up on OS X and how your hosts are defined, then this may be all you need to bypass it:

ps ax | grep http

look for Proxy or apache_serviceproxy.conf

/usr/sbin/httpd -D FOREGROUND -f /Library/Server/Web/Config/Proxy/apache_serviceproxy.conf -E /private/var/log/apache2/service_proxy_error.log

if it is running, stop it it with

sudo /Applications/Server.app/Contents/ServerRoot/usr/sbin/serviceproxyctl stop


- Wade



#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6 - All Headers http://www.lassosoft.com/lassotalk?id=279987 Fri, 31 Aug 2018 08:04 -0400 French, Shelane http://www.lassosoft.com/lassotalk?id=279987 I use this for the IP. It's a modification of Johan and Jason's code:

define_tag(
'IP',
-namespace='request_',
-priority='replace',
-description='Returns real Client IP behind proxy, load balancer etc'
);
local('header' = request_params,
'ip'=string);

if(#header->find('X-Forwarded-For'));
// de facto standard for proxies,
http://en.wikipedia.org/wiki/X-Forwarded-For
// can also return "unknown"
#ip = #header->find('X-Forwarded-For');
#ip -> trim;
else(#header->find('client-ip'));
#ip = #header->find('client-ip');
else(#header->find('PC-Remote-Addr'));
// for server side cache, like Performace Cache
#ip = #header->find('PC-Remote-Addr');
else;
#ip = string(client_ip);
/if;
#ip = #ip->split(',')->first; // needed to get the actual client ip for
x-forwarded-for, instead of the entire proxy chain
return(@#ip);
/define_tag;





Then I use client_headers for headers.



On 8/31/18, 11:38 AM, "lasso-bounces@lists.lassosoft.com on behalf of
Steffan A. Cline" <lasso-bounces@lists.lassosoft.com on behalf of
steffan@hldns.com> wrote:

>I can=B9t recall=8A
>
>Is there some kind of shortcut/undocumented tag that gives access to the
>entire header in a web request in LP8.6?
>
>Looking to see any additional headers on OS X Server to parse out the
>real IP from any additional headers inserted the web caching server.
>
>Due to the way Apple labels their services, it=B9s even been hard trying to
>find any good clear docs how to bypass the web caching server. Anyone
>seen a good article?
>
>
>Steffan A. Cline
>steffan@hldns.com
>602-793-0014
>
>
>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Lasso 8.6 - All Headers http://www.lassosoft.com/lassotalk?id=279986 Fri, 31 Aug 2018 11:38 -0400 Steffan A. Cline http://www.lassosoft.com/lassotalk?id=279986 I can’t recall…

Is there some kind of shortcut/undocumented tag that gives access to the entire header in a web request in LP8.6?

Looking to see any additional headers on OS X Server to parse out the real IP from any additional headers inserted the web caching server.

Due to the way Apple labels their services, it’s even been hard trying to find any good clear docs how to bypass the web caching server. Anyone seen a good article?


Steffan A. Cline
steffan@hldns.com
602-793-0014





#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Problems with Encode_Smart tag in Lasso 8.5 ? http://www.lassosoft.com/lassotalk?id=279985 Wed, 29 Aug 2018 12:28 -0400 XL Cordemans http://www.lassosoft.com/lassotalk?id=279985 Hi, 
I always preferred to use my own class ; more simple and it keeps the code lean.
XL

From: Mason Miller <miller@sitewelder.com>
To: "lasso@lists.lassosoft.com Talk" <lasso@lists.lassosoft.com>
Sent: Tuesday, August 28, 2018 10:29 PM
Subject: Re: Problems with Encode_Smart tag in Lasso 8.5 ?

What about inline css, or use your own class:

Inline:
<img style=“max-width:125px !important;width:100% !important;height:auto !important;" src="client_images/thumbs/[if(($a->get(3)->size)<3)]noimage.jpg[else][$a->get(3)][/if]" alt="[$a->get(2)]" border="0”>

Overide:
<style>
.myResonisiveImage {
    max-width:125px !important;
    width:100% !important;
    height:auto !important;
}
</style>

<img class=“myResonisiveImage" src="client_images/thumbs/[if(($a->get(3)->size)<3)]noimage.jpg[else][$a->get(3)][/if]" alt="[$a->get(2)]" border="0”>

Mason Miller

miller@listingstogo.com
https://www.listingstogo.com/

miller@sitewelder.com
https://www.sitewelder.com/

703-626-5532 cell




#############################################################

This message is sent to you because you are subscribed to
  the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to  <Lasso-request@lists.lassosoft.com>



#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Problems with Encode_Smart tag in Lasso 8.5 ? http://www.lassosoft.com/lassotalk?id=279984 Tue, 28 Aug 2018 06:29 -0400 Mason Miller http://www.lassosoft.com/lassotalk?id=279984 What about inline css, or use your own class:

Inline:
<img style=“max-width:125px !important;width:100% !important;height:auto !important;" src="client_images/thumbs/[if(($a->get(3)->size)<3)]noimage.jpg[else][$a->get(3)][/if]" alt="[$a->get(2)]" border="0”>

Overide:
<style>
.myResonisiveImage {
max-width:125px !important;
width:100% !important;
height:auto !important;
}
</style>

<img class=“myResonisiveImage" src="client_images/thumbs/[if(($a->get(3)->size)<3)]noimage.jpg[else][$a->get(3)][/if]" alt="[$a->get(2)]" border="0”>

Mason Miller

miller@listingstogo.com
https://www.listingstogo.com/

miller@sitewelder.com
https://www.sitewelder.com/

703-626-5532 cell




#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Problems with Encode_Smart tag in Lasso 8.5 ? http://www.lassosoft.com/lassotalk?id=279982 Tue, 28 Aug 2018 03:44 -0400 Tim Taplin http://www.lassosoft.com/lassotalk?id=279982 What if you saved the encoded text to a variable, and placed that variable in your content ?

Not sure what might be happening to confuse bootstrap but I’d do something like:
local(client_text = Encode_Smart($a->get(4)) )

And then just insert that local in your table.


> On Aug 28, 2018, at 3:21 PM, James Sheffer <james@higherpowered.com> wrote:
>
> I’ve run into a strange problem on an existing site using Lasso 8.5:
>
> I have a simple 3 column table - Image on the left, text and price in the middle and button on the right. The problem is with the image to the left - Each image is 125px X 125px at 72dpi but some display at different sizes. The page is using Bootstrap 3 with an image responsive tag. If I remove that, the images show correctly but are no longer responsive.
>
> The reason I bring up on the lasso list is that, in the second <td></td> tag, I have an Encode_Smart tag for displaying text from MySQL.
>
> If I remove the Encode_Smart tag and just add dummy text, everything works fine, the images are all the same size and responsive. Has anyone seen this with the Encode_smart tag before?
>
> Below is a code snipped of the code
> (this is all in an Iterate tag):
>
> <table class="cartmain”>
> <tr>
> <td align="left" valign="top"><img class="img-responsive" src="client_images/thumbs/[if(($a->get(3)->size)<3)]noimage.jpg[else][$a->get(3)][/if]" alt="[$a->get(2)]" border="0”>
> </td>
> <td style="padding: 10px;"><br /><span class="font_14_bold">[$a->get(2)]</span><br /><br /><span class="font_14">[Encode_Smart($a->get(4))]</span> <br /> <span class="font_14_blue_bold"> [if($a->get(7))] [$a->get(7)] [else] $[math_round((var('itemprice')),0.01)] [/if] </span>
> </td>
> <td style="padding: 10px; text-align:right;"> <div align="right"><a href="product_detail.lasso?id=[$a->get(1)]"><button type="submit" class="btn btn-primary">More Details</button></a></div>
> </td
> </tr>
> </table>
>
> -------------------
> Any help in getting the images to all display the same size AND be responsive would be a great help!!
>
>
>
> James Sheffer
> james@higherpowered.com <mailto:james@higherpowered.com>
> www.higherpowered.com <http://www.higherpowered.com/>
> 469-256-0268
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Problems with Encode_Smart tag in Lasso 8.5 ? http://www.lassosoft.com/lassotalk?id=279983 Tue, 28 Aug 2018 02:51 -0400 James Sheffer http://www.lassosoft.com/lassotalk?id=279983 Tim-

Great Idea - I’ll give it a shot and let you know!

James


> On Aug 28, 2018, at 2:44 PM, Tim Taplin <taplin@accesstelluride.com> wrote:
>
> What if you saved the encoded text to a variable, and placed that variable in your content ?
>
> Not sure what might be happening to confuse bootstrap but I’d do something like:
> local(client_text = Encode_Smart($a->get(4)) )
>
> And then just insert that local in your table.
>
>
>> On Aug 28, 2018, at 3:21 PM, James Sheffer <james@higherpowered.com <mailto:james@higherpowered.com>> wrote:
>>
>> I’ve run into a strange problem on an existing site using Lasso 8.5:
>>
>> I have a simple 3 column table - Image on the left, text and price in the middle and button on the right. The problem is with the image to the left - Each image is 125px X 125px at 72dpi but some display at different sizes. The page is using Bootstrap 3 with an image responsive tag. If I remove that, the images show correctly but are no longer responsive.
>>
>> The reason I bring up on the lasso list is that, in the second <td></td> tag, I have an Encode_Smart tag for displaying text from MySQL.
>>
>> If I remove the Encode_Smart tag and just add dummy text, everything works fine, the images are all the same size and responsive. Has anyone seen this with the Encode_smart tag before?
>>
>> Below is a code snipped of the code
>> (this is all in an Iterate tag):
>>
>> <table class="cartmain”>
>> <tr>
>> <td align="left" valign="top"><img class="img-responsive" src="client_images/thumbs/[if(($a->get(3)->size)<3)]noimage.jpg[else][$a->get(3)][/if]" alt="[$a->get(2)]" border="0”>
>> </td>
>> <td style="padding: 10px;"><br /><span class="font_14_bold">[$a->get(2)]</span><br /><br /><span class="font_14">[Encode_Smart($a->get(4))]</span> <br /> <span class="font_14_blue_bold"> [if($a->get(7))] [$a->get(7)] [else] $[math_round((var('itemprice')),0.01)] [/if] </span>
>> </td>
>> <td style="padding: 10px; text-align:right;"> <div align="right"><a href="product_detail.lasso?id=[$a->get(1)]"><button type="submit" class="btn btn-primary">More Details</button></a></div>
>> </td
>> </tr>
>> </table>
>>
>> -------------------
>> Any help in getting the images to all display the same size AND be responsive would be a great help!!
>>
>>
>>
>> James Sheffer
>> james@higherpowered.com <mailto:james@higherpowered.com> <mailto:james@higherpowered.com <mailto:james@higherpowered.com>>
>> www.higherpowered.com <http://www.higherpowered.com/> <http://www.higherpowered.com/ <http://www.higherpowered.com/>>
>> 469-256-0268
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
>> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Problems with Encode_Smart tag in Lasso 8.5 ? http://www.lassosoft.com/lassotalk?id=279981 Tue, 28 Aug 2018 02:21 -0400 James Sheffer http://www.lassosoft.com/lassotalk?id=279981 I’ve run into a strange problem on an existing site using Lasso 8.5:

I have a simple 3 column table - Image on the left, text and price in the middle and button on the right. The problem is with the image to the left - Each image is 125px X 125px at 72dpi but some display at different sizes. The page is using Bootstrap 3 with an image responsive tag. If I remove that, the images show correctly but are no longer responsive.

The reason I bring up on the lasso list is that, in the second <td></td> tag, I have an Encode_Smart tag for displaying text from MySQL.

If I remove the Encode_Smart tag and just add dummy text, everything works fine, the images are all the same size and responsive. Has anyone seen this with the Encode_smart tag before?

Below is a code snipped of the code
(this is all in an Iterate tag):

<table class="cartmain”>
<tr>
<td align="left" valign="top"><img class="img-responsive" src="client_images/thumbs/[if(($a->get(3)->size)<3)]noimage.jpg[else][$a->get(3)][/if]" alt="[$a->get(2)]" border="0”>
</td>
<td style="padding: 10px;"><br /><span class="font_14_bold">[$a->get(2)]</span><br /><br /><span class="font_14">[Encode_Smart($a->get(4))]</span> <br /> <span class="font_14_blue_bold"> [if($a->get(7))] [$a->get(7)] [else] $[math_round((var('itemprice')),0.01)] [/if] </span>
</td>
<td style="padding: 10px; text-align:right;"> <div align="right"><a href="product_detail.lasso?id=[$a->get(1)]"><button type="submit" class="btn btn-primary">More Details</button></a></div>
</td
</tr>
</table>

-------------------
Any help in getting the images to all display the same size AND be responsive would be a great help!!



James Sheffer
james@higherpowered.com <mailto:james@higherpowered.com>
www.higherpowered.com <http://www.higherpowered.com/>
469-256-0268

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279980 Tue, 24 Jul 2018 02:52 -0400 Michael Benedict http://www.lassosoft.com/lassotalk?id=279980 Hi Jason,

Firstly thanks.

I THINK I have it working (havn't had the chance to really test). But Lasso
finally initialized after I changed the binding on the default website. I
did some simple tests and it worked.

See this link regarding the step that allowed me to initialize Lasso:
https://stackoverflow.com/a/27711408/2214933

Thanks very much for your ideas.

Michael

-----Original Message-----
From: lasso-bounces@lists.lassosoft.com
[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
Sent: Monday, July 23, 2018 6:40 PM
To: lasso@lists.lassosoft.com
Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??

Michael,
When you go into IIS, click on the top level web server entry and check
handler mapping. Do you see .lasso and .lassoapp listed?

Review the "Troubleshooting" section in the install page (
http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation)

Also, what do you get if you just go to http://localhost/ - does it return
the default IIS start page?

-Jason

On Mon, Jul 23, 2018 at 5:08 PM Michael Benedict
<michael@intelligentreg.com>
wrote:

> Jason,
>
> It all looks good. But I get a 404 error when I try to config Lasso.
>
> MS server 2012 r2 IIS 8
>
> using the URL below that you sent I easily made the changes that they
> detail.
>
> But when I go to http://localhost/ServerAdmin.LassoApp I get the 404
> error.
> Lasso won't initialize.
>
> Everything seems great, just can't get it to load.
>
> Any ideas?
> Thanks in advance.
>
> Thanks,
> Michael
>
> -----Original Message-----
> From: lasso-bounces@lists.lassosoft.com
> [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> Sent: Saturday, July 21, 2018 2:48 PM
> To: lasso@lists.lassosoft.com
> Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
> Michael,
> It's been awhile, but I recall that it was very easy, I followed the
> guide from
> http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
> and it worked easily enough.
>
> If you need me to check any settings on my set up let me know!
>
> -Jason
>
> On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
> michael@intelligentreg.com> wrote:
>
> > Jason, Again Thanks.
> >
> > Do you have tips or observations regarding installation that I
> > should be aware of?
> >
> > Was it pretty straight forward??
> >
> > Anything might help.
> >
> > Cheers,
> > Michael
> >
> > -----Original Message-----
> > From: lasso-bounces@lists.lassosoft.com
> > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > Sent: Thursday, July 19, 2018 5:44 PM
> > To: lasso@lists.lassosoft.com
> > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> >
> > Yes IIS 8
> >
> > -Jason
> >
> > On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
> > <michael@intelligentreg.com>
> > wrote:
> >
> > > Hi Jason,
> > >
> > > Regarding running on MS server 2012.
> > >
> > > Your web server is IIS? Is that correct?
> > >
> > > Michael
> > >
> > > -----Original Message-----
> > > From: lasso-bounces@lists.lassosoft.com
> > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > Pettis
> > > Sent: Thursday, June 28, 2018 7:13 AM
> > > To: lasso@lists.lassosoft.com
> > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > >
> > > Michael,
> > > Yes, working w/o issue. it's been stable and solid.
> > > -Jason
> > >
> > > On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
> > > <michael@intelligentreg.com>
> > > wrote:
> > >
> > > > Jason,
> > > >
> > > > Is it working?
> > > >
> > > > All I really need to know at this point.
> > > >
> > > > Thanks, Michael
> > > >
> > > > -----Original Message-----
> > > > From: lasso-bounces@lists.lassosoft.com
> > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > Pettis
> > > > Sent: Wednesday, June 27, 2018 5:54 PM
> > > > To: lasso@lists.lassosoft.com
> > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > >
> > > > I have an instance of 8.6 on MS Windows server 2012, not sure if
> > > > I can help but let me know.
> > > >
> > > > -Jason
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> > > > <michael@intelligentreg.com>
> > > > wrote:
> > > >
> > > > > Hello,
> > > > >
> > > > > Anyone out there running Lasso 8.6 on MS Windows Server 2012
> > > > > (2016
> > > > maybe)?
> > > > >
> > > > > We are needing to update our servers a bit.
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Michael
> > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official
> > > > > list archives available at http://www.lassotalk.com To
> > > > > unsubscribe, E-mail
> > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > to:
> > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > to:
> > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to
> > > <Lasso-request@lists.lassosoft.com>
> > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to
> > > <Lasso-request@lists.lassosoft.com>
> > >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe,
> > E-mail
> to:
> > <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe,
> > E-mail
> > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail to:
> <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
available at http://www.lassotalk.com To unsubscribe, E-mail to:
<Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279979 Tue, 24 Jul 2018 01:33 -0400 Michael Benedict http://www.lassosoft.com/lassotalk?id=279979 Steve,

Thanks!!!!!!!!!!!!!!!!!!!

It worked and Lasso initialized.

So I'll be testing to see if I got all of it working.

Michael

-----Original Message-----
From: lasso-bounces@lists.lassosoft.com
[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Steve Piercy -
Website Builder
Sent: Tuesday, July 24, 2018 10:17 AM
To: lasso@lists.lassosoft.com
Subject: RE: Lasso 8.6 ?? running of MS Server 2012-16??

First hit on SO:
https://stackoverflow.com/a/27711408/2214933

--steve


On 7/24/18 at 10:00 AM, michael@intelligentreg.com (Michael Benedict)
pronounced:

> Jason,
>
> Many thanks for your input.
>
> Yes to:
> " When you go into IIS, click on the top level web server entry and
> check handler mapping. Do you see .lasso and .lassoapp listed?"
>
> Yes those are configured.
>
>
> I have double checked everything.
>
> The only item I am missing is your question:
>
> " Also, what do you get if you just go to http://localhost/ - does it
> return the default IIS start page? "
>
> The answer is I get the same 404 error that I get when I use the full url:
> http://localhost/ServerAdmin.LassoApp.
>
> Any suggestions? Getting a little worried here that I am not going to
> get this.
>
> Many Many Many thanks.
>
> M
>
> -----Original Message-----
> From: lasso-bounces@lists.lassosoft.com
> [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> Sent: Monday, July 23, 2018 6:40 PM
> To: lasso@lists.lassosoft.com
> Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
> Michael,
> When you go into IIS, click on the top level web server entry and
> check handler mapping. Do you see .lasso and .lassoapp listed?
>
> Review the "Troubleshooting" section in the install page (
> http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation)
>
> Also, what do you get if you just go to http://localhost/ - does it
> return the default IIS start page?
>
> -Jason
>
> On Mon, Jul 23, 2018 at 5:08 PM Michael Benedict
> <michael@intelligentreg.com>
> wrote:
>
> > Jason,
> >
> > It all looks good. But I get a 404 error when I try to config Lasso.
> >
> > MS server 2012 r2 IIS 8
> >
> > using the URL below that you sent I easily made the changes that
> > they detail.
> >
> > But when I go to http://localhost/ServerAdmin.LassoApp I get the 404
> > error.
> > Lasso won't initialize.
> >
> > Everything seems great, just can't get it to load.
> >
> > Any ideas?
> > Thanks in advance.
> >
> > Thanks,
> > Michael
> >
> > -----Original Message-----
> > From: lasso-bounces@lists.lassosoft.com
> > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > Sent: Saturday, July 21, 2018 2:48 PM
> > To: lasso@lists.lassosoft.com
> > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> >
> > Michael,
> > It's been awhile, but I recall that it was very easy, I followed the
> > guide from
> > http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
> > and it worked easily enough.
> >
> > If you need me to check any settings on my set up let me know!
> >
> > -Jason
> >
> > On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
> > michael@intelligentreg.com> wrote:
> >
> > > Jason, Again Thanks.
> > >
> > > Do you have tips or observations regarding installation that I
> > > should be aware of?
> > >
> > > Was it pretty straight forward??
> > >
> > > Anything might help.
> > >
> > > Cheers,
> > > Michael
> > >
> > > -----Original Message-----
> > > From: lasso-bounces@lists.lassosoft.com
> > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > Pettis
> > > Sent: Thursday, July 19, 2018 5:44 PM
> > > To: lasso@lists.lassosoft.com
> > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > >
> > > Yes IIS 8
> > >
> > > -Jason
> > >
> > > On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
> > > <michael@intelligentreg.com>
> > > wrote:
> > >
> > > > Hi Jason,
> > > >
> > > > Regarding running on MS server 2012.
> > > >
> > > > Your web server is IIS? Is that correct?
> > > >
> > > > Michael
> > > >
> > > > -----Original Message-----
> > > > From: lasso-bounces@lists.lassosoft.com
> > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > Pettis
> > > > Sent: Thursday, June 28, 2018 7:13 AM
> > > > To: lasso@lists.lassosoft.com
> > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > >
> > > > Michael,
> > > > Yes, working w/o issue. it's been stable and solid.
> > > > -Jason
> > > >
> > > > On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
> > > > <michael@intelligentreg.com>
> > > > wrote:
> > > >
> > > > > Jason,
> > > > >
> > > > > Is it working?
> > > > >
> > > > > All I really need to know at this point.
> > > > >
> > > > > Thanks, Michael
> > > > >
> > > > > -----Original Message-----
> > > > > From: lasso-bounces@lists.lassosoft.com
> > > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > > Pettis
> > > > > Sent: Wednesday, June 27, 2018 5:54 PM
> > > > > To: lasso@lists.lassosoft.com
> > > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > > >
> > > > > I have an instance of 8.6 on MS Windows server 2012, not sure
> > > > > if I can help but let me know.
> > > > >
> > > > > -Jason
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> > > > > <michael@intelligentreg.com>
> > > > > wrote:
> > > > >
> > > > > > Hello,
> > > > > >
> > > > > > Anyone out there running Lasso 8.6 on MS Windows Server 2012
> > > > > > (2016
> > > > > maybe)?
> > > > > >
> > > > > > We are needing to update our servers a bit.
> > > > > >
> > > > > > Thanks,
> > > > > >
> > > > > > Michael
> > > > > >
> > > > > >
> > > > > > ############################################################
> > > > > > #
> > > > > >
> > > > > > This message is sent to you because you are subscribed to
> > > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official
> > > > > > list archives available at http://www.lassotalk.com To
> > > > > > unsubscribe, E-mail
> > > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > > Send administrative queries to
> > > > > > <Lasso-request@lists.lassosoft.com>
> > > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official
> > > > > list archives available at http://www.lassotalk.com To
> > > > > unsubscribe, E-mail
> > > > to:
> > > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official
> > > > > list archives available at http://www.lassotalk.com To
> > > > > unsubscribe, E-mail
> > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > to:
> > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > to:
> > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to
> > > <Lasso-request@lists.lassosoft.com>
> > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to
> > > <Lasso-request@lists.lassosoft.com>
> > >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe, E-mail
to:
> > <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe,
> > E-mail
> > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail to:
> <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
available at http://www.lassotalk.com To unsubscribe, E-mail to:
<Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279978 Tue, 24 Jul 2018 10:18 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279978 Or a broader search.
https://duckduckgo.com/?q=iis8+localhost+404

--steve


On 7/24/18 at 10:17 AM, web@stevepiercy.com (Steve Piercy - Website Builder) pronounced:

> First hit on SO:
> https://stackoverflow.com/a/27711408/2214933
>
> --steve
>
>
> On 7/24/18 at 10:00 AM, michael@intelligentreg.com (Michael Benedict) pronounced:
>
> > Jason,
> >
> > Many thanks for your input.
> >
> > Yes to:
> > " When you go into IIS, click on the top level web server entry and check
> > handler mapping. Do you see .lasso and .lassoapp listed?"
> >
> > Yes those are configured.
> >
> >
> > I have double checked everything.
> >
> > The only item I am missing is your question:
> >
> > " Also, what do you get if you just go to http://localhost/ - does it return
> > the default IIS start page? "
> >
> > The answer is I get the same 404 error that I get when I use the full url:
> > http://localhost/ServerAdmin.LassoApp.
> >
> > Any suggestions? Getting a little worried here that I am not going to get
> > this.
> >
> > Many Many Many thanks.
> >
> > M
> >
> > -----Original Message-----
> > From: lasso-bounces@lists.lassosoft.com
> > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > Sent: Monday, July 23, 2018 6:40 PM
> > To: lasso@lists.lassosoft.com
> > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> >
> > Michael,
> > When you go into IIS, click on the top level web server entry and check
> > handler mapping. Do you see .lasso and .lassoapp listed?
> >
> > Review the "Troubleshooting" section in the install page (
> > http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation)
> >
> > Also, what do you get if you just go to http://localhost/ - does it return
> > the default IIS start page?
> >
> > -Jason
> >
> > On Mon, Jul 23, 2018 at 5:08 PM Michael Benedict
> > <michael@intelligentreg.com>
> > wrote:
> >
> > > Jason,
> > >
> > > It all looks good. But I get a 404 error when I try to config Lasso.
> > >
> > > MS server 2012 r2 IIS 8
> > >
> > > using the URL below that you sent I easily made the changes that they
> > > detail.
> > >
> > > But when I go to http://localhost/ServerAdmin.LassoApp I get the 404
> > > error.
> > > Lasso won't initialize.
> > >
> > > Everything seems great, just can't get it to load.
> > >
> > > Any ideas?
> > > Thanks in advance.
> > >
> > > Thanks,
> > > Michael
> > >
> > > -----Original Message-----
> > > From: lasso-bounces@lists.lassosoft.com
> > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > > Sent: Saturday, July 21, 2018 2:48 PM
> > > To: lasso@lists.lassosoft.com
> > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > >
> > > Michael,
> > > It's been awhile, but I recall that it was very easy, I followed the
> > > guide from
> > > http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
> > > and it worked easily enough.
> > >
> > > If you need me to check any settings on my set up let me know!
> > >
> > > -Jason
> > >
> > > On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
> > > michael@intelligentreg.com> wrote:
> > >
> > > > Jason, Again Thanks.
> > > >
> > > > Do you have tips or observations regarding installation that I
> > > > should be aware of?
> > > >
> > > > Was it pretty straight forward??
> > > >
> > > > Anything might help.
> > > >
> > > > Cheers,
> > > > Michael
> > > >
> > > > -----Original Message-----
> > > > From: lasso-bounces@lists.lassosoft.com
> > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > > > Sent: Thursday, July 19, 2018 5:44 PM
> > > > To: lasso@lists.lassosoft.com
> > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > >
> > > > Yes IIS 8
> > > >
> > > > -Jason
> > > >
> > > > On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
> > > > <michael@intelligentreg.com>
> > > > wrote:
> > > >
> > > > > Hi Jason,
> > > > >
> > > > > Regarding running on MS server 2012.
> > > > >
> > > > > Your web server is IIS? Is that correct?
> > > > >
> > > > > Michael
> > > > >
> > > > > -----Original Message-----
> > > > > From: lasso-bounces@lists.lassosoft.com
> > > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > > Pettis
> > > > > Sent: Thursday, June 28, 2018 7:13 AM
> > > > > To: lasso@lists.lassosoft.com
> > > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > > >
> > > > > Michael,
> > > > > Yes, working w/o issue. it's been stable and solid.
> > > > > -Jason
> > > > >
> > > > > On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
> > > > > <michael@intelligentreg.com>
> > > > > wrote:
> > > > >
> > > > > > Jason,
> > > > > >
> > > > > > Is it working?
> > > > > >
> > > > > > All I really need to know at this point.
> > > > > >
> > > > > > Thanks, Michael
> > > > > >
> > > > > > -----Original Message-----
> > > > > > From: lasso-bounces@lists.lassosoft.com
> > > > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > > > Pettis
> > > > > > Sent: Wednesday, June 27, 2018 5:54 PM
> > > > > > To: lasso@lists.lassosoft.com
> > > > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > > > >
> > > > > > I have an instance of 8.6 on MS Windows server 2012, not sure if
> > > > > > I can help but let me know.
> > > > > >
> > > > > > -Jason
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> > > > > > <michael@intelligentreg.com>
> > > > > > wrote:
> > > > > >
> > > > > > > Hello,
> > > > > > >
> > > > > > > Anyone out there running Lasso 8.6 on MS Windows Server 2012
> > > > > > > (2016
> > > > > > maybe)?
> > > > > > >
> > > > > > > We are needing to update our servers a bit.
> > > > > > >
> > > > > > > Thanks,
> > > > > > >
> > > > > > > Michael
> > > > > > >
> > > > > > >
> > > > > > > #############################################################
> > > > > > >
> > > > > > > This message is sent to you because you are subscribed to
> > > > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official
> > > > > > > list archives available at http://www.lassotalk.com To
> > > > > > > unsubscribe, E-mail
> > > > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > > > Send administrative queries to
> > > > > > > <Lasso-request@lists.lassosoft.com>
> > > > > > >
> > > > > >
> > > > > > #############################################################
> > > > > >
> > > > > > This message is sent to you because you are subscribed to
> > > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > > > E-mail
> > > > > to:
> > > > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > > Send administrative queries to
> > > > > > <Lasso-request@lists.lassosoft.com>
> > > > > >
> > > > > >
> > > > > > #############################################################
> > > > > >
> > > > > > This message is sent to you because you are subscribed to
> > > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > > > E-mail
> > > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > > Send administrative queries to
> > > > > > <Lasso-request@lists.lassosoft.com>
> > > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > > E-mail
> > > > to:
> > > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > > E-mail
> > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > to:
> > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe, E-mail to:
> > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe, E-mail
> > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
> > available at http://www.lassotalk.com To unsubscribe, E-mail to:
> > <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com
> > Official list archives available at http://www.lassotalk.com
> > To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> Steve Piercy Website Builder Eugene, OR
> <web@stevepiercy.com> <http://www.stevepiercy.com/>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279977 Tue, 24 Jul 2018 10:17 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279977 First hit on SO:
https://stackoverflow.com/a/27711408/2214933

--steve


On 7/24/18 at 10:00 AM, michael@intelligentreg.com (Michael Benedict) pronounced:

> Jason,
>
> Many thanks for your input.
>
> Yes to:
> " When you go into IIS, click on the top level web server entry and check
> handler mapping. Do you see .lasso and .lassoapp listed?"
>
> Yes those are configured.
>
>
> I have double checked everything.
>
> The only item I am missing is your question:
>
> " Also, what do you get if you just go to http://localhost/ - does it return
> the default IIS start page? "
>
> The answer is I get the same 404 error that I get when I use the full url:
> http://localhost/ServerAdmin.LassoApp.
>
> Any suggestions? Getting a little worried here that I am not going to get
> this.
>
> Many Many Many thanks.
>
> M
>
> -----Original Message-----
> From: lasso-bounces@lists.lassosoft.com
> [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> Sent: Monday, July 23, 2018 6:40 PM
> To: lasso@lists.lassosoft.com
> Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
> Michael,
> When you go into IIS, click on the top level web server entry and check
> handler mapping. Do you see .lasso and .lassoapp listed?
>
> Review the "Troubleshooting" section in the install page (
> http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation)
>
> Also, what do you get if you just go to http://localhost/ - does it return
> the default IIS start page?
>
> -Jason
>
> On Mon, Jul 23, 2018 at 5:08 PM Michael Benedict
> <michael@intelligentreg.com>
> wrote:
>
> > Jason,
> >
> > It all looks good. But I get a 404 error when I try to config Lasso.
> >
> > MS server 2012 r2 IIS 8
> >
> > using the URL below that you sent I easily made the changes that they
> > detail.
> >
> > But when I go to http://localhost/ServerAdmin.LassoApp I get the 404
> > error.
> > Lasso won't initialize.
> >
> > Everything seems great, just can't get it to load.
> >
> > Any ideas?
> > Thanks in advance.
> >
> > Thanks,
> > Michael
> >
> > -----Original Message-----
> > From: lasso-bounces@lists.lassosoft.com
> > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > Sent: Saturday, July 21, 2018 2:48 PM
> > To: lasso@lists.lassosoft.com
> > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> >
> > Michael,
> > It's been awhile, but I recall that it was very easy, I followed the
> > guide from
> > http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
> > and it worked easily enough.
> >
> > If you need me to check any settings on my set up let me know!
> >
> > -Jason
> >
> > On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
> > michael@intelligentreg.com> wrote:
> >
> > > Jason, Again Thanks.
> > >
> > > Do you have tips or observations regarding installation that I
> > > should be aware of?
> > >
> > > Was it pretty straight forward??
> > >
> > > Anything might help.
> > >
> > > Cheers,
> > > Michael
> > >
> > > -----Original Message-----
> > > From: lasso-bounces@lists.lassosoft.com
> > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > > Sent: Thursday, July 19, 2018 5:44 PM
> > > To: lasso@lists.lassosoft.com
> > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > >
> > > Yes IIS 8
> > >
> > > -Jason
> > >
> > > On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
> > > <michael@intelligentreg.com>
> > > wrote:
> > >
> > > > Hi Jason,
> > > >
> > > > Regarding running on MS server 2012.
> > > >
> > > > Your web server is IIS? Is that correct?
> > > >
> > > > Michael
> > > >
> > > > -----Original Message-----
> > > > From: lasso-bounces@lists.lassosoft.com
> > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > Pettis
> > > > Sent: Thursday, June 28, 2018 7:13 AM
> > > > To: lasso@lists.lassosoft.com
> > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > >
> > > > Michael,
> > > > Yes, working w/o issue. it's been stable and solid.
> > > > -Jason
> > > >
> > > > On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
> > > > <michael@intelligentreg.com>
> > > > wrote:
> > > >
> > > > > Jason,
> > > > >
> > > > > Is it working?
> > > > >
> > > > > All I really need to know at this point.
> > > > >
> > > > > Thanks, Michael
> > > > >
> > > > > -----Original Message-----
> > > > > From: lasso-bounces@lists.lassosoft.com
> > > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > > Pettis
> > > > > Sent: Wednesday, June 27, 2018 5:54 PM
> > > > > To: lasso@lists.lassosoft.com
> > > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > > >
> > > > > I have an instance of 8.6 on MS Windows server 2012, not sure if
> > > > > I can help but let me know.
> > > > >
> > > > > -Jason
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> > > > > <michael@intelligentreg.com>
> > > > > wrote:
> > > > >
> > > > > > Hello,
> > > > > >
> > > > > > Anyone out there running Lasso 8.6 on MS Windows Server 2012
> > > > > > (2016
> > > > > maybe)?
> > > > > >
> > > > > > We are needing to update our servers a bit.
> > > > > >
> > > > > > Thanks,
> > > > > >
> > > > > > Michael
> > > > > >
> > > > > >
> > > > > > #############################################################
> > > > > >
> > > > > > This message is sent to you because you are subscribed to
> > > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official
> > > > > > list archives available at http://www.lassotalk.com To
> > > > > > unsubscribe, E-mail
> > > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > > Send administrative queries to
> > > > > > <Lasso-request@lists.lassosoft.com>
> > > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > > E-mail
> > > > to:
> > > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > > E-mail
> > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > to:
> > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > to:
> > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe, E-mail to:
> > <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe, E-mail
> > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
> available at http://www.lassotalk.com To unsubscribe, E-mail to:
> <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279976 Tue, 24 Jul 2018 10:00 -0400 Michael Benedict http://www.lassosoft.com/lassotalk?id=279976 Jason,

Many thanks for your input.

Yes to:
" When you go into IIS, click on the top level web server entry and check
handler mapping. Do you see .lasso and .lassoapp listed?"

Yes those are configured.


I have double checked everything.

The only item I am missing is your question:

" Also, what do you get if you just go to http://localhost/ - does it return
the default IIS start page? "

The answer is I get the same 404 error that I get when I use the full url:
http://localhost/ServerAdmin.LassoApp.

Any suggestions? Getting a little worried here that I am not going to get
this.

Many Many Many thanks.

M

-----Original Message-----
From: lasso-bounces@lists.lassosoft.com
[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
Sent: Monday, July 23, 2018 6:40 PM
To: lasso@lists.lassosoft.com
Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??

Michael,
When you go into IIS, click on the top level web server entry and check
handler mapping. Do you see .lasso and .lassoapp listed?

Review the "Troubleshooting" section in the install page (
http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation)

Also, what do you get if you just go to http://localhost/ - does it return
the default IIS start page?

-Jason

On Mon, Jul 23, 2018 at 5:08 PM Michael Benedict
<michael@intelligentreg.com>
wrote:

> Jason,
>
> It all looks good. But I get a 404 error when I try to config Lasso.
>
> MS server 2012 r2 IIS 8
>
> using the URL below that you sent I easily made the changes that they
> detail.
>
> But when I go to http://localhost/ServerAdmin.LassoApp I get the 404
> error.
> Lasso won't initialize.
>
> Everything seems great, just can't get it to load.
>
> Any ideas?
> Thanks in advance.
>
> Thanks,
> Michael
>
> -----Original Message-----
> From: lasso-bounces@lists.lassosoft.com
> [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> Sent: Saturday, July 21, 2018 2:48 PM
> To: lasso@lists.lassosoft.com
> Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
> Michael,
> It's been awhile, but I recall that it was very easy, I followed the
> guide from
> http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
> and it worked easily enough.
>
> If you need me to check any settings on my set up let me know!
>
> -Jason
>
> On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
> michael@intelligentreg.com> wrote:
>
> > Jason, Again Thanks.
> >
> > Do you have tips or observations regarding installation that I
> > should be aware of?
> >
> > Was it pretty straight forward??
> >
> > Anything might help.
> >
> > Cheers,
> > Michael
> >
> > -----Original Message-----
> > From: lasso-bounces@lists.lassosoft.com
> > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > Sent: Thursday, July 19, 2018 5:44 PM
> > To: lasso@lists.lassosoft.com
> > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> >
> > Yes IIS 8
> >
> > -Jason
> >
> > On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
> > <michael@intelligentreg.com>
> > wrote:
> >
> > > Hi Jason,
> > >
> > > Regarding running on MS server 2012.
> > >
> > > Your web server is IIS? Is that correct?
> > >
> > > Michael
> > >
> > > -----Original Message-----
> > > From: lasso-bounces@lists.lassosoft.com
> > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > Pettis
> > > Sent: Thursday, June 28, 2018 7:13 AM
> > > To: lasso@lists.lassosoft.com
> > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > >
> > > Michael,
> > > Yes, working w/o issue. it's been stable and solid.
> > > -Jason
> > >
> > > On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
> > > <michael@intelligentreg.com>
> > > wrote:
> > >
> > > > Jason,
> > > >
> > > > Is it working?
> > > >
> > > > All I really need to know at this point.
> > > >
> > > > Thanks, Michael
> > > >
> > > > -----Original Message-----
> > > > From: lasso-bounces@lists.lassosoft.com
> > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > Pettis
> > > > Sent: Wednesday, June 27, 2018 5:54 PM
> > > > To: lasso@lists.lassosoft.com
> > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > >
> > > > I have an instance of 8.6 on MS Windows server 2012, not sure if
> > > > I can help but let me know.
> > > >
> > > > -Jason
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> > > > <michael@intelligentreg.com>
> > > > wrote:
> > > >
> > > > > Hello,
> > > > >
> > > > > Anyone out there running Lasso 8.6 on MS Windows Server 2012
> > > > > (2016
> > > > maybe)?
> > > > >
> > > > > We are needing to update our servers a bit.
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Michael
> > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official
> > > > > list archives available at http://www.lassotalk.com To
> > > > > unsubscribe, E-mail
> > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > to:
> > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > to:
> > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to
> > > <Lasso-request@lists.lassosoft.com>
> > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to
> > > <Lasso-request@lists.lassosoft.com>
> > >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe,
> > E-mail
> to:
> > <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe,
> > E-mail
> > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail to:
> <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
available at http://www.lassotalk.com To unsubscribe, E-mail to:
<Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279968 Mon, 23 Jul 2018 08:10 -0400 Andreas Steinmann http://www.lassosoft.com/lassotalk?id=279968 You can wrap all stuff, Lasso should not process with:

[NoProcess]
… your javascript...
[/NoProcess]

Mange hilsner,
Andreas



Andreas Steinmann‌
-------------------------------
Egebjerghuse 2
DK 2750 Ballerup
Denmark

Quartier Meran
F 06540 Saorge
France
-------------------------------
as@verden-rundt.dk <mailto:as@verden-rundt.dk>
+45 28117505

> On 23 Jul 2018, at 19:41, Duane Hannan <hannan@wwgschools.org <mailto:hannan@wwgschools.org>> wrote:
>
> Thanks for you response. --Lasso 8.6.3.
>
> Duane
>
>
>
>> On Jul 23, 2018, at 12:26 PM, Jolle Carlestam <jolle@carlestam.com <mailto:jolle@carlestam.com>> wrote:
>>
>>
>>>
>>> [slideIndex-1]
>>
>> This piece, and all other places with square brackets are interpreted as Lasso code. You need to protect that from happening.
>> The technique to accomplish that varies. Is this Lasso 8.x or 9.x?
>>
>> HDB
>> Jolle
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
>> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279975 Mon, 23 Jul 2018 07:40 -0400 Jason Pettis http://www.lassosoft.com/lassotalk?id=279975 Michael,
When you go into IIS, click on the top level web server entry and check
handler mapping. Do you see .lasso and .lassoapp listed?

Review the "Troubleshooting" section in the install page (
http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation)

Also, what do you get if you just go to http://localhost/ - does it return
the default IIS start page?

-Jason

On Mon, Jul 23, 2018 at 5:08 PM Michael Benedict <michael@intelligentreg.com>
wrote:

> Jason,
>
> It all looks good. But I get a 404 error when I try to config Lasso.
>
> MS server 2012 r2 IIS 8
>
> using the URL below that you sent I easily made the changes that they
> detail.
>
> But when I go to http://localhost/ServerAdmin.LassoApp I get the 404
> error.
> Lasso won't initialize.
>
> Everything seems great, just can't get it to load.
>
> Any ideas?
> Thanks in advance.
>
> Thanks,
> Michael
>
> -----Original Message-----
> From: lasso-bounces@lists.lassosoft.com
> [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> Sent: Saturday, July 21, 2018 2:48 PM
> To: lasso@lists.lassosoft.com
> Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
> Michael,
> It's been awhile, but I recall that it was very easy, I followed the guide
> from http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
> and it worked easily enough.
>
> If you need me to check any settings on my set up let me know!
>
> -Jason
>
> On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
> michael@intelligentreg.com> wrote:
>
> > Jason, Again Thanks.
> >
> > Do you have tips or observations regarding installation that I should
> > be aware of?
> >
> > Was it pretty straight forward??
> >
> > Anything might help.
> >
> > Cheers,
> > Michael
> >
> > -----Original Message-----
> > From: lasso-bounces@lists.lassosoft.com
> > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > Sent: Thursday, July 19, 2018 5:44 PM
> > To: lasso@lists.lassosoft.com
> > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> >
> > Yes IIS 8
> >
> > -Jason
> >
> > On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
> > <michael@intelligentreg.com>
> > wrote:
> >
> > > Hi Jason,
> > >
> > > Regarding running on MS server 2012.
> > >
> > > Your web server is IIS? Is that correct?
> > >
> > > Michael
> > >
> > > -----Original Message-----
> > > From: lasso-bounces@lists.lassosoft.com
> > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > > Sent: Thursday, June 28, 2018 7:13 AM
> > > To: lasso@lists.lassosoft.com
> > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > >
> > > Michael,
> > > Yes, working w/o issue. it's been stable and solid.
> > > -Jason
> > >
> > > On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
> > > <michael@intelligentreg.com>
> > > wrote:
> > >
> > > > Jason,
> > > >
> > > > Is it working?
> > > >
> > > > All I really need to know at this point.
> > > >
> > > > Thanks, Michael
> > > >
> > > > -----Original Message-----
> > > > From: lasso-bounces@lists.lassosoft.com
> > > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > > Pettis
> > > > Sent: Wednesday, June 27, 2018 5:54 PM
> > > > To: lasso@lists.lassosoft.com
> > > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > > >
> > > > I have an instance of 8.6 on MS Windows server 2012, not sure if I
> > > > can help but let me know.
> > > >
> > > > -Jason
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> > > > <michael@intelligentreg.com>
> > > > wrote:
> > > >
> > > > > Hello,
> > > > >
> > > > > Anyone out there running Lasso 8.6 on MS Windows Server 2012
> > > > > (2016
> > > > maybe)?
> > > > >
> > > > > We are needing to update our servers a bit.
> > > > >
> > > > > Thanks,
> > > > >
> > > > > Michael
> > > > >
> > > > >
> > > > > #############################################################
> > > > >
> > > > > This message is sent to you because you are subscribed to
> > > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > > E-mail
> > > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > > Send administrative queries to
> > > > > <Lasso-request@lists.lassosoft.com>
> > > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > to:
> > > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > to:
> > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to:
> > <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe, E-mail
> > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
> available at http://www.lassotalk.com To unsubscribe, E-mail to:
> <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279965 Mon, 23 Jul 2018 07:31 -0400 Jolle Carlestam http://www.lassosoft.com/lassotalk?id=279965 > 23 juli 2018 kl. 19:26 skrev Jolle Carlestam <jolle@carlestam.com>:
>
>
>>
>> [slideIndex-1]
>
> This piece, and all other places with square brackets are interpreted as Lasso code. You need to protect that from happening.
> The technique to accomplish that varies. Is this Lasso 8.x or 9.x?

One way, make into a string.

['[slideIndex-1]']
If you use this method make sure you escape any single quotes inside the string.

HDB
Jolle

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279963 Mon, 23 Jul 2018 07:26 -0400 Jolle Carlestam http://www.lassosoft.com/lassotalk?id=279963 >
> [slideIndex-1]

This piece, and all other places with square brackets are interpreted as Lasso code. You need to protect that from happening.
The technique to accomplish that varies. Is this Lasso 8.x or 9.x?

HDB
Jolle

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279974 Mon, 23 Jul 2018 06:10 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279974 Check the web server log to see what details are provided.

Restart the machine.

Also double-check that all the manual steps listed at the link
below were in fact configured by the installer.
http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation

--steve


On 7/23/18 at 5:02 PM, michael@intelligentreg.com (Michael
Benedict) pronounced:

>Thank you Steve for your input.
>
>No I tried (and retried).
>
>The service is running, everything seems to be in the right place.
>
>Won't work. 404 error.
>
>But thanks for the idea.
>
>Michael
>
>-----Original Message-----
>From: lasso-bounces@lists.lassosoft.com
>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Steve Piercy -
>Website Builder
>Sent: Monday, July 23, 2018 4:28 PM
>To: lasso@lists.lassosoft.com
>Subject: RE: Lasso 8.6 ?? running of MS Server 2012-16??
>
>What's the hostname or IP address of the server? Try using that instead of
>localhost.
>
>Also localhost will work only from a browser on the same machine, if it all.
>I can't remember if Windows has a typical UNIX network/hosts resolver thing
>or not.
>
>--steve
>
>
>On 7/23/18 at 4:08 PM, michael@intelligentreg.com (Michael
>Benedict) pronounced:
>
>>Jason,
>>
>>It all looks good. But I get a 404 error when I try to config Lasso.
>>
>>MS server 2012 r2 IIS 8
>>
>>using the URL below that you sent I easily made the changes
>>that they detail.
>>
>>But when I go to http://localhost/ServerAdmin.LassoApp I get the 404 error.
>>Lasso won't initialize.
>>
>>Everything seems great, just can't get it to load.
>>
>>Any ideas?
>>Thanks in advance.
>>
>>Thanks,
>>Michael
>>
>>-----Original Message-----
>>From: lasso-bounces@lists.lassosoft.com
>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>>Sent: Saturday, July 21, 2018 2:48 PM
>>To: lasso@lists.lassosoft.com
>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>
>>Michael,
>>It's been awhile, but I recall that it was very easy, I
>>followed the guide from http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
>>and it worked easily enough.
>>
>>If you need me to check any settings on my set up let me know!
>>
>>-Jason
>>
>>On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
>>michael@intelligentreg.com> wrote:
>>
>>>Jason, Again Thanks.
>>>
>>>Do you have tips or observations regarding installation that
>>>I should be aware of?
>>>
>>>Was it pretty straight forward??
>>>
>>>Anything might help.
>>>
>>>Cheers,
>>>Michael
>>>
>>>-----Original Message-----
>>>From: lasso-bounces@lists.lassosoft.com
>>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>>>Sent: Thursday, July 19, 2018 5:44 PM
>>>To: lasso@lists.lassosoft.com
>>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>>
>>>Yes IIS 8
>>>
>>>-Jason
>>>
>>>On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict <michael@intelligentreg.com>
>>>wrote:
>>>
>>>>Hi Jason,
>>>>
>>>>Regarding running on MS server 2012.
>>>>
>>>>Your web server is IIS? Is that correct?
>>>>
>>>>Michael
>>>>
>>>>-----Original Message-----
>>>>From: lasso-bounces@lists.lassosoft.com
>>>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of
>>>>Jason Pettis
>>>>Sent: Thursday, June 28, 2018 7:13 AM
>>>>To: lasso@lists.lassosoft.com
>>>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>>>
>>>>Michael,
>>>>Yes, working w/o issue. it's been stable and solid.
>>>>-Jason
>>>>
>>>>On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict <michael@intelligentreg.com>
>>>>wrote:
>>>>
>>>>>Jason,
>>>>>
>>>>>Is it working?
>>>>>
>>>>>All I really need to know at this point.
>>>>>
>>>>>Thanks, Michael
>>>>>
>>>>>-----Original Message-----
>>>>>From: lasso-bounces@lists.lassosoft.com
>>>>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of
>>>>>Jason Pettis
>>>>>Sent: Wednesday, June 27, 2018 5:54 PM
>>>>>To: lasso@lists.lassosoft.com
>>>>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>>>>
>>>>>I have an instance of 8.6 on MS Windows server 2012, not
>>>>>sure if I can help but let me know.
>>>>>
>>>>>-Jason
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict <michael@intelligentreg.com>
>>>>>wrote:
>>>>>
>>>>>>Hello,
>>>>>>
>>>>>>Anyone out there running Lasso 8.6 on MS Windows Server
>>>>>>2012 (2016
>>>>>maybe)?
>>>>>>
>>>>>>We are needing to update our servers a bit.
>>>>>>
>>>>>>Thanks,
>>>>>>
>>>>>>Michael
>>>>>>
>>>>>>
>>>>>>#############################################################
>>>>>>
>>>>>>This message is sent to you because you are subscribed to
>>>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>>>list archives available at http://www.lassotalk.com To
>>>>>>unsubscribe, E-mail
>>>>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>>Send administrative queries to
>>>>>><Lasso-request@lists.lassosoft.com>
>>>>>>
>>>>>
>>>>>#############################################################
>>>>>
>>>>>This message is sent to you because you are subscribed to
>>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>>list archives available at http://www.lassotalk.com To
>>>>>unsubscribe, E-mail
>>>>to:
>>>>><Lasso-unsubscribe@lists.lassosoft.com>
>>>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>
>>>>>
>>>>>#############################################################
>>>>>
>>>>>This message is sent to you because you are subscribed to
>>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>>list archives available at http://www.lassotalk.com To
>>>>>unsubscribe, E-mail
>>>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>
>>>>
>>>>#############################################################
>>>>
>>>>This message is sent to you because you are subscribed to
>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>list archives available at http://www.lassotalk.com To
>>>>unsubscribe, E-mail
>>>to:
>>>><Lasso-unsubscribe@lists.lassosoft.com>
>>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>>
>>>>#############################################################
>>>>
>>>>This message is sent to you because you are subscribed to
>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>list archives available at http://www.lassotalk.com To
>>>>unsubscribe, E-mail
>>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>
>>>#############################################################
>>>
>>>This message is sent to you because you are subscribed to
>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>list archives available at http://www.lassotalk.com To
>>>unsubscribe, E-mail to:
>>><Lasso-unsubscribe@lists.lassosoft.com>
>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>>
>>>#############################################################
>>>
>>>This message is sent to you because you are subscribed to
>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>list archives available at http://www.lassotalk.com To
>>>unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
>>available at http://www.lassotalk.com To unsubscribe, E-mail to:
>><Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com
>>Official list archives available at http://www.lassotalk.com
>>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>Steve Piercy Website Builder Eugene, OR
><web@stevepiercy.com> <http://www.stevepiercy.com/>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279973 Mon, 23 Jul 2018 05:02 -0400 Michael Benedict http://www.lassosoft.com/lassotalk?id=279973 Thank you Steve for your input.

No I tried (and retried).

The service is running, everything seems to be in the right place.

Won't work. 404 error.

But thanks for the idea.

Michael

-----Original Message-----
From: lasso-bounces@lists.lassosoft.com
[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Steve Piercy -
Website Builder
Sent: Monday, July 23, 2018 4:28 PM
To: lasso@lists.lassosoft.com
Subject: RE: Lasso 8.6 ?? running of MS Server 2012-16??

What's the hostname or IP address of the server? Try using that instead of
localhost.

Also localhost will work only from a browser on the same machine, if it all.
I can't remember if Windows has a typical UNIX network/hosts resolver thing
or not.

--steve


On 7/23/18 at 4:08 PM, michael@intelligentreg.com (Michael
Benedict) pronounced:

>Jason,
>
>It all looks good. But I get a 404 error when I try to config Lasso.
>
>MS server 2012 r2 IIS 8
>
>using the URL below that you sent I easily made the changes that they
>detail.
>
>But when I go to http://localhost/ServerAdmin.LassoApp I get the 404 error.
>Lasso won't initialize.
>
>Everything seems great, just can't get it to load.
>
>Any ideas?
>Thanks in advance.
>
>Thanks,
>Michael
>
>-----Original Message-----
>From: lasso-bounces@lists.lassosoft.com
>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>Sent: Saturday, July 21, 2018 2:48 PM
>To: lasso@lists.lassosoft.com
>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
>Michael,
>It's been awhile, but I recall that it was very easy, I followed the
>guide from
>http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
>and it worked easily enough.
>
>If you need me to check any settings on my set up let me know!
>
>-Jason
>
>On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
>michael@intelligentreg.com> wrote:
>
>>Jason, Again Thanks.
>>
>>Do you have tips or observations regarding installation that I should
>>be aware of?
>>
>>Was it pretty straight forward??
>>
>>Anything might help.
>>
>>Cheers,
>>Michael
>>
>>-----Original Message-----
>>From: lasso-bounces@lists.lassosoft.com
>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>>Sent: Thursday, July 19, 2018 5:44 PM
>>To: lasso@lists.lassosoft.com
>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>
>>Yes IIS 8
>>
>>-Jason
>>
>>On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
>><michael@intelligentreg.com>
>>wrote:
>>
>>>Hi Jason,
>>>
>>>Regarding running on MS server 2012.
>>>
>>>Your web server is IIS? Is that correct?
>>>
>>>Michael
>>>
>>>-----Original Message-----
>>>From: lasso-bounces@lists.lassosoft.com
>>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>>>Sent: Thursday, June 28, 2018 7:13 AM
>>>To: lasso@lists.lassosoft.com
>>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>>
>>>Michael,
>>>Yes, working w/o issue. it's been stable and solid.
>>>-Jason
>>>
>>>On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
>>><michael@intelligentreg.com>
>>>wrote:
>>>
>>>>Jason,
>>>>
>>>>Is it working?
>>>>
>>>>All I really need to know at this point.
>>>>
>>>>Thanks, Michael
>>>>
>>>>-----Original Message-----
>>>>From: lasso-bounces@lists.lassosoft.com
>>>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>>>>Sent: Wednesday, June 27, 2018 5:54 PM
>>>>To: lasso@lists.lassosoft.com
>>>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>>>
>>>>I have an instance of 8.6 on MS Windows server 2012, not sure if I
>>>>can help but let me know.
>>>>
>>>>-Jason
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
>>>><michael@intelligentreg.com>
>>>>wrote:
>>>>
>>>>>Hello,
>>>>>
>>>>>Anyone out there running Lasso 8.6 on MS Windows Server
>>>>>2012 (2016
>>>>maybe)?
>>>>>
>>>>>We are needing to update our servers a bit.
>>>>>
>>>>>Thanks,
>>>>>
>>>>>Michael
>>>>>
>>>>>
>>>>>#############################################################
>>>>>
>>>>>This message is sent to you because you are subscribed to the
>>>>>mailing list Lasso Lasso@lists.lassosoft.com Official list archives
>>>>>available at http://www.lassotalk.com To unsubscribe, E-mail
>>>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>Send administrative queries to
>>>>><Lasso-request@lists.lassosoft.com>
>>>>>
>>>>
>>>>#############################################################
>>>>
>>>>This message is sent to you because you are subscribed to
>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>list archives available at http://www.lassotalk.com To
>>>>unsubscribe, E-mail
>>>to:
>>>><Lasso-unsubscribe@lists.lassosoft.com>
>>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>>
>>>>#############################################################
>>>>
>>>>This message is sent to you because you are subscribed to
>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>list archives available at http://www.lassotalk.com To
>>>>unsubscribe, E-mail
>>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>
>>>#############################################################
>>>
>>>This message is sent to you because you are subscribed to
>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>list archives available at http://www.lassotalk.com To
>>>unsubscribe, E-mail
>>to:
>>><Lasso-unsubscribe@lists.lassosoft.com>
>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>>
>>>#############################################################
>>>
>>>This message is sent to you because you are subscribed to
>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>list archives available at http://www.lassotalk.com To
>>>unsubscribe, E-mail
>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com Official list
>>archives available at http://www.lassotalk.com To unsubscribe,
>>E-mail to:
>><Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com Official list
>>archives available at http://www.lassotalk.com To unsubscribe,
>>E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
>available at http://www.lassotalk.com To unsubscribe, E-mail to:
><Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279972 Mon, 23 Jul 2018 04:28 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279972 What's the hostname or IP address of the server? Try using that
instead of localhost.

Also localhost will work only from a browser on the same
machine, if it all. I can't remember if Windows has a typical
UNIX network/hosts resolver thing or not.

--steve


On 7/23/18 at 4:08 PM, michael@intelligentreg.com (Michael
Benedict) pronounced:

>Jason,
>
>It all looks good. But I get a 404 error when I try to config Lasso.
>
>MS server 2012 r2 IIS 8
>
>using the URL below that you sent I easily made the changes that they
>detail.
>
>But when I go to http://localhost/ServerAdmin.LassoApp I get the 404 error.
>Lasso won't initialize.
>
>Everything seems great, just can't get it to load.
>
>Any ideas?
>Thanks in advance.
>
>Thanks,
>Michael
>
>-----Original Message-----
>From: lasso-bounces@lists.lassosoft.com
>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>Sent: Saturday, July 21, 2018 2:48 PM
>To: lasso@lists.lassosoft.com
>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
>Michael,
>It's been awhile, but I recall that it was very easy, I followed the guide
>from http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
>and it worked easily enough.
>
>If you need me to check any settings on my set up let me know!
>
>-Jason
>
>On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
>michael@intelligentreg.com> wrote:
>
>>Jason, Again Thanks.
>>
>>Do you have tips or observations regarding installation that I
>>should be aware of?
>>
>>Was it pretty straight forward??
>>
>>Anything might help.
>>
>>Cheers,
>>Michael
>>
>>-----Original Message-----
>>From: lasso-bounces@lists.lassosoft.com
>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>>Sent: Thursday, July 19, 2018 5:44 PM
>>To: lasso@lists.lassosoft.com
>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>
>>Yes IIS 8
>>
>>-Jason
>>
>>On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict <michael@intelligentreg.com>
>>wrote:
>>
>>>Hi Jason,
>>>
>>>Regarding running on MS server 2012.
>>>
>>>Your web server is IIS? Is that correct?
>>>
>>>Michael
>>>
>>>-----Original Message-----
>>>From: lasso-bounces@lists.lassosoft.com
>>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
>>>Sent: Thursday, June 28, 2018 7:13 AM
>>>To: lasso@lists.lassosoft.com
>>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>>
>>>Michael,
>>>Yes, working w/o issue. it's been stable and solid.
>>>-Jason
>>>
>>>On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict <michael@intelligentreg.com>
>>>wrote:
>>>
>>>>Jason,
>>>>
>>>>Is it working?
>>>>
>>>>All I really need to know at this point.
>>>>
>>>>Thanks, Michael
>>>>
>>>>-----Original Message-----
>>>>From: lasso-bounces@lists.lassosoft.com
>>>>[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of
>>>>Jason Pettis
>>>>Sent: Wednesday, June 27, 2018 5:54 PM
>>>>To: lasso@lists.lassosoft.com
>>>>Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>>>>
>>>>I have an instance of 8.6 on MS Windows server 2012, not
>>>>sure if I can help but let me know.
>>>>
>>>>-Jason
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict <michael@intelligentreg.com>
>>>>wrote:
>>>>
>>>>>Hello,
>>>>>
>>>>>Anyone out there running Lasso 8.6 on MS Windows Server
>>>>>2012 (2016
>>>>maybe)?
>>>>>
>>>>>We are needing to update our servers a bit.
>>>>>
>>>>>Thanks,
>>>>>
>>>>>Michael
>>>>>
>>>>>
>>>>>#############################################################
>>>>>
>>>>>This message is sent to you because you are subscribed to
>>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>>list archives available at http://www.lassotalk.com To
>>>>>unsubscribe, E-mail
>>>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>Send administrative queries to
>>>>><Lasso-request@lists.lassosoft.com>
>>>>>
>>>>
>>>>#############################################################
>>>>
>>>>This message is sent to you because you are subscribed to
>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>list archives available at http://www.lassotalk.com To
>>>>unsubscribe, E-mail
>>>to:
>>>><Lasso-unsubscribe@lists.lassosoft.com>
>>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>>
>>>>#############################################################
>>>>
>>>>This message is sent to you because you are subscribed to
>>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>>list archives available at http://www.lassotalk.com To
>>>>unsubscribe, E-mail
>>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>
>>>#############################################################
>>>
>>>This message is sent to you because you are subscribed to
>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>list archives available at http://www.lassotalk.com To
>>>unsubscribe, E-mail
>>to:
>>><Lasso-unsubscribe@lists.lassosoft.com>
>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>>
>>>#############################################################
>>>
>>>This message is sent to you because you are subscribed to
>>>the mailing list Lasso Lasso@lists.lassosoft.com Official
>>>list archives available at http://www.lassotalk.com To
>>>unsubscribe, E-mail
>>>to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com Official list
>>archives available at http://www.lassotalk.com To unsubscribe,
>>E-mail to:
>><Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com Official list
>>archives available at http://www.lassotalk.com To unsubscribe,
>>E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
>available at http://www.lassotalk.com To unsubscribe, E-mail to:
><Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279971 Mon, 23 Jul 2018 04:08 -0400 Michael Benedict http://www.lassosoft.com/lassotalk?id=279971 Jason,

It all looks good. But I get a 404 error when I try to config Lasso.

MS server 2012 r2 IIS 8

using the URL below that you sent I easily made the changes that they
detail.

But when I go to http://localhost/ServerAdmin.LassoApp I get the 404 error.
Lasso won't initialize.

Everything seems great, just can't get it to load.

Any ideas?
Thanks in advance.

Thanks,
Michael

-----Original Message-----
From: lasso-bounces@lists.lassosoft.com
[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
Sent: Saturday, July 21, 2018 2:48 PM
To: lasso@lists.lassosoft.com
Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??

Michael,
It's been awhile, but I recall that it was very easy, I followed the guide
from http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
and it worked easily enough.

If you need me to check any settings on my set up let me know!

-Jason

On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
michael@intelligentreg.com> wrote:

> Jason, Again Thanks.
>
> Do you have tips or observations regarding installation that I should
> be aware of?
>
> Was it pretty straight forward??
>
> Anything might help.
>
> Cheers,
> Michael
>
> -----Original Message-----
> From: lasso-bounces@lists.lassosoft.com
> [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> Sent: Thursday, July 19, 2018 5:44 PM
> To: lasso@lists.lassosoft.com
> Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
> Yes IIS 8
>
> -Jason
>
> On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
> <michael@intelligentreg.com>
> wrote:
>
> > Hi Jason,
> >
> > Regarding running on MS server 2012.
> >
> > Your web server is IIS? Is that correct?
> >
> > Michael
> >
> > -----Original Message-----
> > From: lasso-bounces@lists.lassosoft.com
> > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > Sent: Thursday, June 28, 2018 7:13 AM
> > To: lasso@lists.lassosoft.com
> > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> >
> > Michael,
> > Yes, working w/o issue. it's been stable and solid.
> > -Jason
> >
> > On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
> > <michael@intelligentreg.com>
> > wrote:
> >
> > > Jason,
> > >
> > > Is it working?
> > >
> > > All I really need to know at this point.
> > >
> > > Thanks, Michael
> > >
> > > -----Original Message-----
> > > From: lasso-bounces@lists.lassosoft.com
> > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason
> > > Pettis
> > > Sent: Wednesday, June 27, 2018 5:54 PM
> > > To: lasso@lists.lassosoft.com
> > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > >
> > > I have an instance of 8.6 on MS Windows server 2012, not sure if I
> > > can help but let me know.
> > >
> > > -Jason
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> > > <michael@intelligentreg.com>
> > > wrote:
> > >
> > > > Hello,
> > > >
> > > > Anyone out there running Lasso 8.6 on MS Windows Server 2012
> > > > (2016
> > > maybe)?
> > > >
> > > > We are needing to update our servers a bit.
> > > >
> > > > Thanks,
> > > >
> > > > Michael
> > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > to:
> > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to
> > > <Lasso-request@lists.lassosoft.com>
> > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to
> > > <Lasso-request@lists.lassosoft.com>
> > >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe,
> > E-mail
> to:
> > <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe,
> > E-mail
> > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail to:
> <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
available at http://www.lassotalk.com To unsubscribe, E-mail to:
<Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279970 Mon, 23 Jul 2018 02:13 -0400 Kevin Bice http://www.lassosoft.com/lassotalk?id=279970 That is what I do these days. It allows clients to upload any Javascript to their site where it is placed between the [noprocess] tags to avoid Lasso issues.

I have done what Steffan suggested for years, but I find the [noprocess] tag helps me give the client more control of their site.
……………...
Kevin Bice
512.879.1653



> On Jul 23, 2018, at 1:10 PM, Andreas Steinmann <as@verden-rundt.dk <mailto:as@verden-rundt.dk>> wrote:
>
> You can wrap all stuff, Lasso should not process with:
>
> [NoProcess]
> … your javascript...
> [/NoProcess]
>
> Mange hilsner,
> Andreas
>
>
>
> Andreas Steinmann‌
> -------------------------------
> Egebjerghuse 2
> DK 2750 Ballerup
> Denmark
>
> Quartier Meran
> F 06540 Saorge
> France
> -------------------------------
> as@verden-rundt.dk <mailto:as@verden-rundt.dk> <mailto:as@verden-rundt.dk <mailto:as@verden-rundt.dk>>
> +45 28117505
>
>> On 23 Jul 2018, at 19:41, Duane Hannan <hannan@wwgschools.org <mailto:hannan@wwgschools.org> <mailto:hannan@wwgschools.org <mailto:hannan@wwgschools.org>>> wrote:
>>
>> Thanks for you response. --Lasso 8.6.3.
>>
>> Duane
>>
>>
>>
>>> On Jul 23, 2018, at 12:26 PM, Jolle Carlestam <jolle@carlestam.com <mailto:jolle@carlestam.com> <mailto:jolle@carlestam.com <mailto:jolle@carlestam.com>>> wrote:
>>>
>>>
>>>>
>>>> [slideIndex-1]
>>>
>>> This piece, and all other places with square brackets are interpreted as Lasso code. You need to protect that from happening.
>>> The technique to accomplish that varies. Is this Lasso 8.x or 9.x?
>>>
>>> HDB
>>> Jolle
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com> <mailto:Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>>
>>> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/> <http://www.lassotalk.com/ <http://www.lassotalk.com/>>
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com> <mailto:Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com> <mailto:Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com> <mailto:Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>>
>> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/> <http://www.lassotalk.com/ <http://www.lassotalk.com/>>
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com> <mailto:Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com> <mailto:Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>



……………...
Kevin Bice
512.879.1653
www.lassospace.com





#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279969 Mon, 23 Jul 2018 02:03 -0400 Duane Hannan http://www.lassosoft.com/lassotalk?id=279969 All good. Thanks ever so much.

Duane Hannan
WWG Schools

> On Jul 23, 2018, at 12:47 PM, Steffan Cline <steffan@hldns.com> wrote:
>
> If you wrap your JS code in <!— and —> Lasso will not execute your code inside it.
>
> <script type=“text/javascript”><!—
> Your JS using [ ] will be ignored by Lasso
> —></script>
>
>
> Thanks,
> Steffan Cline
> steffan@hldns.com <mailto:steffan@hldns.com>
> 602-793-0014
>
>> On Jul 23, 2018, at 10:20 AM, Duane Hannan <hannan@wwgschools.org <mailto:hannan@wwgschools.org>> wrote:
>>
>> I’m designing a new web page (and learning html/css) and I want to include an images slide show on the page. The code, which includes some Javascript, comes from a copy/paste from w3schools.com <http://w3schools.com/> <http://w3schools.com/ <http://w3schools.com/>>. Their code works fine on a simple .html page, but when I add some simple lasso search-a-database-and-show-the-results code and switch the page’s suffix to .lasso, the slide show images disappear.
>>
>> Sorry about my novice-ness, but does anyone have any suggestions? It’s pretty clear that lasso doesn’t want to process the java code on the page. I’ve tried putting the slide show <script> stuff in the body at the bottom, which w3schools.com <http://w3schools.com/> <http://w3schools.com/ <http://w3schools.com/>> suggests, in the head, and in the .css file. All no go. I’ve tried changing <script> to <script type="text/JavaScript”> and putting it in the head and where w3schools.com <http://w3schools.com/><http://w3schools.com/ <http://w3schools.com/>> suggest (at the end of the body). All no go.
>>
>> Below is the page’s code.lasso
>>
>> Much appreciated,
>>
>> Duane Hannan
>> WWG Schools
>>
>> <!DOCTYPE html>
>> <html>
>> <head>
>> <meta name="viewport" content="width=device-width, initial-scale=1">
>> <style>
>> * {box-sizing: border-box;}
>> body {font-family: Verdana, sans-serif;}
>> .mySlides {display: none;}
>> img {vertical-align: middle;}
>>
>> /* Slideshow container */
>> .slideshow-container {
>> max-width: 1000px;
>> position: relative;
>> margin: auto;
>> }
>>
>> /* Caption text */
>> .text {
>> color: #f2f2f2;
>> font-size: 15px;
>> padding: 8px 12px;
>> position: absolute;
>> bottom: 8px;
>> width: 100%;
>> text-align: center;
>> }
>>
>> /* Number text (1/3 etc) */
>> .numbertext {
>> color: #f2f2f2;
>> font-size: 12px;
>> padding: 8px 12px;
>> position: absolute;
>> top: 0;
>> }
>>
>> /* The dots/bullets/indicators */
>> .dot {
>> height: 15px;
>> width: 15px;
>> margin: 0 2px;
>> background-color: #bbb;
>> border-radius: 50%;
>> display: inline-block;
>> transition: background-color 0.6s ease;
>> }
>>
>> .active {
>> background-color: #717171;
>> }
>>
>> /* Fading animation */
>> .fade {
>> -webkit-animation-name: fade;
>> -webkit-animation-duration: 1.5s;
>> animation-name: fade;
>> animation-duration: 1.5s;
>> }
>>
>> @-webkit-keyframes fade {
>> from {opacity: .4}
>> to {opacity: 1}
>> }
>>
>> @keyframes fade {
>> from {opacity: .4}
>> to {opacity: 1}
>> }
>>
>> /* On smaller screens, decrease text size */
>> @media only screen and (max-width: 300px) {
>> .text {font-size: 11px}
>> }
>> </style>
>> </head>
>> <body>
>>
>> <h2>Automatic Slideshow</h2>
>> <p>Change image every 2 seconds:</p>
>>
>> <div class="slideshow-container">
>>
>> <div class="mySlides fade">
>> <div class="numbertext">1 / 3</div>
>> <img src="images/MenuBand.jpg" style="width:100%">
>> <div class="text">Caption Text</div>
>> </div>
>>
>> <div class="mySlides fade">
>> <div class="numbertext">2 / 3</div>
>> <img src="images/MenuBand.jpg" style="width:100%">
>> <div class="text">Caption Two</div>
>> </div>
>>
>> <div class="mySlides fade">
>> <div class="numbertext">3 / 3</div>
>> <img src="images/MenuBand.jpg" style="width:100%">
>> <div class="text">Caption Three</div>
>> </div>
>>
>> </div>
>> <br>
>>
>> <div style="text-align:center">
>> <span class="dot"></span>
>> <span class="dot"></span>
>> <span class="dot"></span>
>> </div>
>>
>> <script>
>> var slideIndex = 0;
>> showSlides();
>>
>> function showSlides() {
>> var i;
>> var slides = document.getElementsByClassName("mySlides");
>> var dots = document.getElementsByClassName("dot");
>> for (i = 0; i < slides.length; i++) {
>> slides[i].style.display = "none";
>> }
>> slideIndex++;
>> if (slideIndex > slides.length) {slideIndex = 1}
>> for (i = 0; i < dots.length; i++) {
>> dots[i].className = dots[i].className.replace(" active", "");
>> }
>> slides[slideIndex-1].style.display = "block";
>> dots[slideIndex-1].className += " active";
>> setTimeout(showSlides, 2000); // Change image every 2 seconds
>> }
>> </script>
>>
>> [inline:-search, -database='xxxxxxx', -table='xxxxxxxx', -sortfield='EventDate', -sortorder='descending', -maxrecords=3]
>> [records]
>> [field:'Event'] [field:'School']<br>
>> [/records]
>> [/inline]
>>
>> </body>
>> </html>
>>
>>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
>> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279966 Mon, 23 Jul 2018 12:41 -0400 Duane Hannan http://www.lassosoft.com/lassotalk?id=279966 Thanks for you response. --Lasso 8.6.3.

Duane



> On Jul 23, 2018, at 12:26 PM, Jolle Carlestam <jolle@carlestam.com> wrote:
>
>
>>
>> [slideIndex-1]
>
> This piece, and all other places with square brackets are interpreted as Lasso code. You need to protect that from happening.
> The technique to accomplish that varies. Is this Lasso 8.x or 9.x?
>
> HDB
> Jolle
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279964 Mon, 23 Jul 2018 12:28 -0400 Lists http://www.lassosoft.com/lassotalk?id=279964 [] in java is an array, and in lasso [] is a processing block.

I woudl move your javascript code to a seperate file and include it in the html.

- John Morris
jmorris@sterling-databases.com
On Jul 23, 2018, 12:20 PM -0500, Duane Hannan <hannan@wwgschools.org>, wrote:
> I’m designing a new web page (and learning html/css) and I want to include an images slide show on the page. The code, which includes some Javascript, comes from a copy/paste from w3schools.com <http://w3schools.com/>. Their code works fine on a simple .html page, but when I add some simple lasso search-a-database-and-show-the-results code and switch the page’s suffix to .lasso, the slide show images disappear.
>
> Sorry about my novice-ness, but does anyone have any suggestions? It’s pretty clear that lasso doesn’t want to process the java code on the page. I’ve tried putting the slide show <script> stuff in the body at the bottom, which w3schools.com <http://w3schools.com/> suggests, in the head, and in the .css file. All no go. I’ve tried changing <script> to <script type="text/JavaScript”> and putting it in the head and where w3schools.com <http://w3schools.com/> suggest (at the end of the body). All no go.
>
> Below is the page’s code.lasso
>
> Much appreciated,
>
> Duane Hannan
> WWG Schools
>
> <!DOCTYPE html>
> <html>
> <head>
> <meta name="viewport" content="width=device-width, initial-scale=1">
> <style>
> * {box-sizing: border-box;}
> body {font-family: Verdana, sans-serif;}
> .mySlides {display: none;}
> img {vertical-align: middle;}
>
> /* Slideshow container */
> .slideshow-container {
> max-width: 1000px;
> position: relative;
> margin: auto;
> }
>
> /* Caption text */
> .text {
> color: #f2f2f2;
> font-size: 15px;
> padding: 8px 12px;
> position: absolute;
> bottom: 8px;
> width: 100%;
> text-align: center;
> }
>
> /* Number text (1/3 etc) */
> .numbertext {
> color: #f2f2f2;
> font-size: 12px;
> padding: 8px 12px;
> position: absolute;
> top: 0;
> }
>
> /* The dots/bullets/indicators */
> .dot {
> height: 15px;
> width: 15px;
> margin: 0 2px;
> background-color: #bbb;
> border-radius: 50%;
> display: inline-block;
> transition: background-color 0.6s ease;
> }
>
> .active {
> background-color: #717171;
> }
>
> /* Fading animation */
> .fade {
> -webkit-animation-name: fade;
> -webkit-animation-duration: 1.5s;
> animation-name: fade;
> animation-duration: 1.5s;
> }
>
> @-webkit-keyframes fade {
> from {opacity: .4}
> to {opacity: 1}
> }
>
> @keyframes fade {
> from {opacity: .4}
> to {opacity: 1}
> }
>
> /* On smaller screens, decrease text size */
> @media only screen and (max-width: 300px) {
> .text {font-size: 11px}
> }
> </style>
> </head>
> <body>
>
> <h2>Automatic Slideshow</h2>
> <p>Change image every 2 seconds:</p>
>
> <div class="slideshow-container">
>
> <div class="mySlides fade">
> <div class="numbertext">1 / 3</div>
> <img src="images/MenuBand.jpg" style="width:100%">
> <div class="text">Caption Text</div>
> </div>
>
> <div class="mySlides fade">
> <div class="numbertext">2 / 3</div>
> <img src="images/MenuBand.jpg" style="width:100%">
> <div class="text">Caption Two</div>
> </div>
>
> <div class="mySlides fade">
> <div class="numbertext">3 / 3</div>
> <img src="images/MenuBand.jpg" style="width:100%">
> <div class="text">Caption Three</div>
> </div>
>
> </div>
> <br>
>
> <div style="text-align:center">
> <span class="dot"></span>
> <span class="dot"></span>
> <span class="dot"></span>
> </div>
>
> <script>
> var slideIndex = 0;
> showSlides();
>
> function showSlides() {
> var i;
> var slides = document.getElementsByClassName("mySlides");
> var dots = document.getElementsByClassName("dot");
> for (i = 0; i < slides.length; i++) {
> slides[i].style.display = "none";
> }
> slideIndex++;
> if (slideIndex > slides.length) {slideIndex = 1}
> for (i = 0; i < dots.length; i++) {
> dots[i].className = dots[i].className.replace(" active", "");
> }
> slides[slideIndex-1].style.display = "block";
> dots[slideIndex-1].className += " active";
> setTimeout(showSlides, 2000); // Change image every 2 seconds
> }
> </script>
>
> [inline:-search, -database='xxxxxxx', -table='xxxxxxxx', -sortfield='EventDate', -sortorder='descending', -maxrecords=3]
> [records]
> [field:'Event'] [field:'School']<br>
> [/records]
> [/inline]
>
> </body>
> </html>
>
>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279962 Mon, 23 Jul 2018 12:20 -0400 Duane Hannan http://www.lassosoft.com/lassotalk?id=279962 I’m designing a new web page (and learning html/css) and I want to include an images slide show on the page. The code, which includes some Javascript, comes from a copy/paste from w3schools.com <http://w3schools.com/>. Their code works fine on a simple .html page, but when I add some simple lasso search-a-database-and-show-the-results code and switch the page’s suffix to .lasso, the slide show images disappear.

Sorry about my novice-ness, but does anyone have any suggestions? It’s pretty clear that lasso doesn’t want to process the java code on the page. I’ve tried putting the slide show <script> stuff in the body at the bottom, which w3schools.com <http://w3schools.com/> suggests, in the head, and in the .css file. All no go. I’ve tried changing <script> to <script type="text/JavaScript”> and putting it in the head and where w3schools.com <http://w3schools.com/> suggest (at the end of the body). All no go.

Below is the page’s code.lasso

Much appreciated,

Duane Hannan
WWG Schools

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}

/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}

/* The dots/bullets/indicators */
.dot {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.active {
background-color: #717171;
}

/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}

@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}

@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.text {font-size: 11px}
}
</style>
</head>
<body>

<h2>Automatic Slideshow</h2>
<p>Change image every 2 seconds:</p>

<div class="slideshow-container">

<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="images/MenuBand.jpg" style="width:100%">
<div class="text">Caption Text</div>
</div>

<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="images/MenuBand.jpg" style="width:100%">
<div class="text">Caption Two</div>
</div>

<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="images/MenuBand.jpg" style="width:100%">
<div class="text">Caption Three</div>
</div>

</div>
<br>

<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>

<script>
var slideIndex = 0;
showSlides();

function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 2000); // Change image every 2 seconds
}
</script>

[inline:-search, -database='xxxxxxx', -table='xxxxxxxx', -sortfield='EventDate', -sortorder='descending', -maxrecords=3]
[records]
[field:'Event'] [field:'School']<br>
[/records]
[/inline]

</body>
</html>




#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Using a Javascript on .lasso page http://www.lassosoft.com/lassotalk?id=279967 Mon, 23 Jul 2018 10:47 -0400 Steffan Cline http://www.lassosoft.com/lassotalk?id=279967 If you wrap your JS code in <!— and —> Lasso will not execute your code inside it.

<script type=“text/javascript”><!—
Your JS using [ ] will be ignored by Lasso
—></script>


Thanks,
Steffan Cline
steffan@hldns.com
602-793-0014

> On Jul 23, 2018, at 10:20 AM, Duane Hannan <hannan@wwgschools.org> wrote:
>
> I’m designing a new web page (and learning html/css) and I want to include an images slide show on the page. The code, which includes some Javascript, comes from a copy/paste from w3schools.com <http://w3schools.com/>. Their code works fine on a simple .html page, but when I add some simple lasso search-a-database-and-show-the-results code and switch the page’s suffix to .lasso, the slide show images disappear.
>
> Sorry about my novice-ness, but does anyone have any suggestions? It’s pretty clear that lasso doesn’t want to process the java code on the page. I’ve tried putting the slide show <script> stuff in the body at the bottom, which w3schools.com <http://w3schools.com/> suggests, in the head, and in the .css file. All no go. I’ve tried changing <script> to <script type="text/JavaScript”> and putting it in the head and where w3schools.com <http://w3schools.com/> suggest (at the end of the body). All no go.
>
> Below is the page’s code.lasso
>
> Much appreciated,
>
> Duane Hannan
> WWG Schools
>
> <!DOCTYPE html>
> <html>
> <head>
> <meta name="viewport" content="width=device-width, initial-scale=1">
> <style>
> * {box-sizing: border-box;}
> body {font-family: Verdana, sans-serif;}
> .mySlides {display: none;}
> img {vertical-align: middle;}
>
> /* Slideshow container */
> .slideshow-container {
> max-width: 1000px;
> position: relative;
> margin: auto;
> }
>
> /* Caption text */
> .text {
> color: #f2f2f2;
> font-size: 15px;
> padding: 8px 12px;
> position: absolute;
> bottom: 8px;
> width: 100%;
> text-align: center;
> }
>
> /* Number text (1/3 etc) */
> .numbertext {
> color: #f2f2f2;
> font-size: 12px;
> padding: 8px 12px;
> position: absolute;
> top: 0;
> }
>
> /* The dots/bullets/indicators */
> .dot {
> height: 15px;
> width: 15px;
> margin: 0 2px;
> background-color: #bbb;
> border-radius: 50%;
> display: inline-block;
> transition: background-color 0.6s ease;
> }
>
> .active {
> background-color: #717171;
> }
>
> /* Fading animation */
> .fade {
> -webkit-animation-name: fade;
> -webkit-animation-duration: 1.5s;
> animation-name: fade;
> animation-duration: 1.5s;
> }
>
> @-webkit-keyframes fade {
> from {opacity: .4}
> to {opacity: 1}
> }
>
> @keyframes fade {
> from {opacity: .4}
> to {opacity: 1}
> }
>
> /* On smaller screens, decrease text size */
> @media only screen and (max-width: 300px) {
> .text {font-size: 11px}
> }
> </style>
> </head>
> <body>
>
> <h2>Automatic Slideshow</h2>
> <p>Change image every 2 seconds:</p>
>
> <div class="slideshow-container">
>
> <div class="mySlides fade">
> <div class="numbertext">1 / 3</div>
> <img src="images/MenuBand.jpg" style="width:100%">
> <div class="text">Caption Text</div>
> </div>
>
> <div class="mySlides fade">
> <div class="numbertext">2 / 3</div>
> <img src="images/MenuBand.jpg" style="width:100%">
> <div class="text">Caption Two</div>
> </div>
>
> <div class="mySlides fade">
> <div class="numbertext">3 / 3</div>
> <img src="images/MenuBand.jpg" style="width:100%">
> <div class="text">Caption Three</div>
> </div>
>
> </div>
> <br>
>
> <div style="text-align:center">
> <span class="dot"></span>
> <span class="dot"></span>
> <span class="dot"></span>
> </div>
>
> <script>
> var slideIndex = 0;
> showSlides();
>
> function showSlides() {
> var i;
> var slides = document.getElementsByClassName("mySlides");
> var dots = document.getElementsByClassName("dot");
> for (i = 0; i < slides.length; i++) {
> slides[i].style.display = "none";
> }
> slideIndex++;
> if (slideIndex > slides.length) {slideIndex = 1}
> for (i = 0; i < dots.length; i++) {
> dots[i].className = dots[i].className.replace(" active", "");
> }
> slides[slideIndex-1].style.display = "block";
> dots[slideIndex-1].className += " active";
> setTimeout(showSlides, 2000); // Change image every 2 seconds
> }
> </script>
>
> [inline:-search, -database='xxxxxxx', -table='xxxxxxxx', -sortfield='EventDate', -sortorder='descending', -maxrecords=3]
> [records]
> [field:'Event'] [field:'School']<br>
> [/records]
> [/inline]
>
> </body>
> </html>
>
>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6 License http://www.lassosoft.com/lassotalk?id=279960 Sat, 21 Jul 2018 03:54 -0400 marc http://www.lassosoft.com/lassotalk?id=279960 Is a license resellable? I don't use mine anymore. So you could buy mine.

- -
Regards,
Marc

> Op 21 jul. 2018 om 14:12 heeft Lubos Voros <lassotalk@lassozone.com> het volgende geschreven:
>
> Hi all,
>
> please help, Urgently I need one license. How is possible to buy Lasso 8.6 license?
>
> Lassosoft.com web site is long time, politely told, in an inoperable state. :-)
> Unable to sign-in (I managed it,only if I have deleted all cookies) and can't pay via PayPal service (only this way is possible on web).
>
> Thank you for any answer or ideas
>
> Regards
>
> Lubos
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279961 Sat, 21 Jul 2018 03:47 -0400 Jason Pettis http://www.lassosoft.com/lassotalk?id=279961 Michael,
It's been awhile, but I recall that it was very easy, I followed the guide
from http://www.lassosoft.com/Lasso-Professional-86-Windows-Installation
and it worked easily enough.

If you need me to check any settings on my set up let me know!

-Jason

On Fri, Jul 20, 2018 at 11:38 AM Michael Benedict <
michael@intelligentreg.com> wrote:

> Jason, Again Thanks.
>
> Do you have tips or observations regarding installation that I should be
> aware of?
>
> Was it pretty straight forward??
>
> Anything might help.
>
> Cheers,
> Michael
>
> -----Original Message-----
> From: lasso-bounces@lists.lassosoft.com
> [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> Sent: Thursday, July 19, 2018 5:44 PM
> To: lasso@lists.lassosoft.com
> Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
> Yes IIS 8
>
> -Jason
>
> On Thu, Jul 19, 2018 at 4:43 PM Michael Benedict
> <michael@intelligentreg.com>
> wrote:
>
> > Hi Jason,
> >
> > Regarding running on MS server 2012.
> >
> > Your web server is IIS? Is that correct?
> >
> > Michael
> >
> > -----Original Message-----
> > From: lasso-bounces@lists.lassosoft.com
> > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > Sent: Thursday, June 28, 2018 7:13 AM
> > To: lasso@lists.lassosoft.com
> > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> >
> > Michael,
> > Yes, working w/o issue. it's been stable and solid.
> > -Jason
> >
> > On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict
> > <michael@intelligentreg.com>
> > wrote:
> >
> > > Jason,
> > >
> > > Is it working?
> > >
> > > All I really need to know at this point.
> > >
> > > Thanks, Michael
> > >
> > > -----Original Message-----
> > > From: lasso-bounces@lists.lassosoft.com
> > > [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> > > Sent: Wednesday, June 27, 2018 5:54 PM
> > > To: lasso@lists.lassosoft.com
> > > Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
> > >
> > > I have an instance of 8.6 on MS Windows server 2012, not sure if I
> > > can help but let me know.
> > >
> > > -Jason
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> > > <michael@intelligentreg.com>
> > > wrote:
> > >
> > > > Hello,
> > > >
> > > > Anyone out there running Lasso 8.6 on MS Windows Server 2012 (2016
> > > maybe)?
> > > >
> > > > We are needing to update our servers a bit.
> > > >
> > > > Thanks,
> > > >
> > > > Michael
> > > >
> > > >
> > > > #############################################################
> > > >
> > > > This message is sent to you because you are subscribed to
> > > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > > archives available at http://www.lassotalk.com To unsubscribe,
> > > > E-mail
> > > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > > Send administrative queries to
> > > > <Lasso-request@lists.lassosoft.com>
> > > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > to:
> > > <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > >
> > >
> > > #############################################################
> > >
> > > This message is sent to you because you are subscribed to
> > > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > > archives available at http://www.lassotalk.com To unsubscribe,
> > > E-mail
> > > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> > >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to:
> > <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe, E-mail
> > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
> available at http://www.lassotalk.com To unsubscribe, E-mail to:
> <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Lasso 8.6 License http://www.lassosoft.com/lassotalk?id=279959 Sat, 21 Jul 2018 02:12 -0400 Lubos Voros http://www.lassosoft.com/lassotalk?id=279959 Hi all,

please help, Urgently I need one license. How is possible to buy Lasso
8.6 license?

Lassosoft.com web site is long time, politely told, in an inoperable
state. :-)
Unable to sign-in (I managed it,only if I have deleted all cookies) and
can't pay via PayPal service (only this way is possible on web).

Thank you for any answer or ideas

Regards

Lubos


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: cURL --data encoding and limits http://www.lassosoft.com/lassotalk?id=279958 Thu, 05 Jul 2018 07:05 -0400 Laurent G http://www.lassosoft.com/lassotalk?id=279958 Same parsing error with both --data-raw, --data and --data-urlencode

// HTML email message body
var('SP_body')=include_raw('html_email_body.txt');

shell('curl -v \
-H "Content-Type: application/json" \
-H "Authorization: ' + var('sparkpost_api_key') + '" \
--data-binary \'{
"content": {
"from": "'+ var('SP_from')+ '",
"reply_to":"'+ var('SP_reply_to')+ '",
"subject": "'+ var('SP_subject') + '",
"'+var('SP_html_text')+'": "'+var('SP_body')+'"
},
"recipients": [{ "address": "' + var('sp_recipient_address') + '" }]
}\' https://api.sparkpost.com/api/v1/transmissions');


Laurent

2018-07-05 16:45 GMT-04:00 Steffan Cline <steffan@hldns.com>:
> Can you email me your example directly? There is no reason either the built in or my drop in should fail.
>
>
> Thanks,
> Steffan Cline
> steffan@hldns.com
> 602-793-0014
>
>> On Jul 5, 2018, at 11:24 AM, Laurent G <laurent@netacces.com> wrote:
>>
>> I'm trying to use cURL instead of include_url in order to trigger Sparkpost API.
>> It works (Thanks Steve and Steffan) but I've an error when data is
>> more than 5000 characters and uses specifics encoding.
>> I need to send about 50 000 characters in data string. Actually I've
>> also have errors on < > " and }
>>
>> Is there a specific encoding or process before sending data to cURL ?
>>
>> Laurent
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: www.lassosoft.com is returning Error 500 http://www.lassosoft.com/lassotalk?id=279956 Thu, 05 Jul 2018 04:34 -0400 Alex Pilson http://www.lassosoft.com/lassotalk?id=279956 The legend lives!

-AP

> On Jul 5, 2018, at 4:23 PM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>
> I smell a Pilsonism in 3, 2, 1....
>
> --steve
>
>
> On 7/5/18 at 3:02 PM, carl@thursby.com (Carl Ketterling) pronounced:
>
>> Visiting www.lassosoft.com returns the following text:
>>
>> Internal Server Error
>>
>> The server encountered an internal error or misconfiguration and was unable to complete your request.
>>
>> Please contact the server administrator, serveradmin@lassosoft.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
>>
>> More information about this error may be available in the server error log.
>>
>>
>> Does anyone know who to contact?
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> Steve Piercy Website Builder Eugene, OR
> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
www.lassosoft.com is returning Error 500 http://www.lassosoft.com/lassotalk?id=279954 Thu, 05 Jul 2018 03:02 -0400 Carl Ketterling http://www.lassosoft.com/lassotalk?id=279954 Visiting www.lassosoft.com returns the following text:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, serveradmin@lassosoft.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.


Does anyone know who to contact?

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
cURL --data encoding and limits http://www.lassosoft.com/lassotalk?id=279952 Thu, 05 Jul 2018 02:24 -0400 Laurent G http://www.lassosoft.com/lassotalk?id=279952 I'm trying to use cURL instead of include_url in order to trigger Sparkpost API.
It works (Thanks Steve and Steffan) but I've an error when data is
more than 5000 characters and uses specifics encoding.
I need to send about 50 000 characters in data string. Actually I've
also have errors on < > " and }

Is there a specific encoding or process before sending data to cURL ?

Laurent

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: cURL --data encoding and limits http://www.lassosoft.com/lassotalk?id=279957 Thu, 05 Jul 2018 01:45 -0400 Steffan Cline http://www.lassosoft.com/lassotalk?id=279957 Can you email me your example directly? There is no reason either the built in or my drop in should fail.


Thanks,
Steffan Cline
steffan@hldns.com
602-793-0014

> On Jul 5, 2018, at 11:24 AM, Laurent G <laurent@netacces.com> wrote:
>
> I'm trying to use cURL instead of include_url in order to trigger Sparkpost API.
> It works (Thanks Steve and Steffan) but I've an error when data is
> more than 5000 characters and uses specifics encoding.
> I need to send about 50 000 characters in data string. Actually I've
> also have errors on < > " and }
>
> Is there a specific encoding or process before sending data to cURL ?
>
> Laurent
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: www.lassosoft.com is returning Error 500 http://www.lassosoft.com/lassotalk?id=279955 Thu, 05 Jul 2018 01:23 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279955 I smell a Pilsonism in 3, 2, 1....

--steve


On 7/5/18 at 3:02 PM, carl@thursby.com (Carl Ketterling) pronounced:

>Visiting www.lassosoft.com returns the following text:
>
>Internal Server Error
>
>The server encountered an internal error or misconfiguration
>and was unable to complete your request.
>
>Please contact the server administrator,
>serveradmin@lassosoft.com and inform them of the time the error
>occurred, and anything you might have done that may have caused
>the error.
>
>More information about this error may be available in the server error log.
>
>
>Does anyone know who to contact?
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: cURL --data encoding and limits http://www.lassosoft.com/lassotalk?id=279953 Thu, 05 Jul 2018 12:07 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279953 https://curl.haxx.se/docs/manpage.html#-d

curl url -d <data>
or
curl url -d <field>=<data>

should work.

--steve


On 7/5/18 at 2:24 PM, laurent@netacces.com (Laurent G) pronounced:

> I'm trying to use cURL instead of include_url in order to trigger Sparkpost API.
> It works (Thanks Steve and Steffan) but I've an error when data is
> more than 5000 characters and uses specifics encoding.
> I need to send about 50 000 characters in data string. Actually I've
> also have errors on < > " and }
>
> Is there a specific encoding or process before sending data to cURL ?
>
> Laurent
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
help me keep my ancient server alive? http://www.lassosoft.com/lassotalk?id=279951 Sun, 01 Jul 2018 10:32 -0400 Todd Vainisi http://www.lassosoft.com/lassotalk?id=279951 Hi List,

Long time no lasso talk! I have an old cent os 5 server that has lasso 8.1 on it . Something constantly happens to push the Lasso8Service to many gigs of memory until the sites all crash. I ssh in and issue lasso8ctl restart and the problem goes away. It used to take weeks between restarts, but now it is usually just a day or two, sometimes even less.

I=92ve tried to write a shell script to execute from cron to just automatically restart lasso twice a day. I can run this script from the command line and it executes perfectly. But from cron, not so much. The output from the script seems correct (it shows it has a good $PATH and I get output that says "Restarting Lasso Service: Done=94), but my sites all crash as a result.

Any ideas why it doesn=92t work from cron?

Here is the sh script (real complicated):

#!/bin/bash

export PATH="$PATH:/usr/sbin"
echo $PATH
lasso8ctl restart

******************
and the output (emailed to me by cron):

/usr/bin:/bin:/usr/sbin
Restarting Lasso Service: Done

Todd Vainisi





#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279949 Thu, 28 Jun 2018 11:51 -0400 Jon Harris http://www.lassosoft.com/lassotalk?id=279949 Hi Michael

Lasso 8.6 definitely works on Windows server 2012.

Although from memory there is a small bug/workaround with the installer. From memory, I think it was to do with a server variable. You should use the 64-bit connector (an installer option).

I can't vouch for server 2016 as I don't use it.

Regards
Jon Harris




-----Original Message-----
From: lasso-bounces@lists.lassosoft.com <lasso-bounces@lists.lassosoft.com> On Behalf Of Michael Benedict
Sent: 28 June 2018 03:09 AM
To: lasso@lists.lassosoft.com
Subject: RE: Lasso 8.6 ?? running of MS Server 2012-16??

Jason,

Is it working?

All I really need to know at this point.

Thanks, Michael

-----Original Message-----
From: lasso-bounces@lists.lassosoft.com
[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
Sent: Wednesday, June 27, 2018 5:54 PM
To: lasso@lists.lassosoft.com
Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??

I have an instance of 8.6 on MS Windows server 2012, not sure if I can help but let me know.

-Jason







On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict <michael@intelligentreg.com>
wrote:

> Hello,
>
> Anyone out there running Lasso 8.6 on MS Windows Server 2012 (2016 maybe)?
>
> We are needing to update our servers a bit.
>
> Thanks,
>
> Michael
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
available at http://www.lassotalk.com To unsubscribe, E-mail to:
<Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279950 Thu, 28 Jun 2018 08:12 -0400 Jason Pettis http://www.lassosoft.com/lassotalk?id=279950 Michael,
Yes, working w/o issue. it's been stable and solid.
-Jason

On Wed, Jun 27, 2018 at 8:09 PM Michael Benedict <michael@intelligentreg.com>
wrote:

> Jason,
>
> Is it working?
>
> All I really need to know at this point.
>
> Thanks, Michael
>
> -----Original Message-----
> From: lasso-bounces@lists.lassosoft.com
> [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
> Sent: Wednesday, June 27, 2018 5:54 PM
> To: lasso@lists.lassosoft.com
> Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??
>
> I have an instance of 8.6 on MS Windows server 2012, not sure if I can help
> but let me know.
>
> -Jason
>
>
>
>
>
>
>
> On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
> <michael@intelligentreg.com>
> wrote:
>
> > Hello,
> >
> > Anyone out there running Lasso 8.6 on MS Windows Server 2012 (2016
> maybe)?
> >
> > We are needing to update our servers a bit.
> >
> > Thanks,
> >
> > Michael
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com Official list
> > archives available at http://www.lassotalk.com To unsubscribe, E-mail
> > to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
> available at http://www.lassotalk.com To unsubscribe, E-mail to:
> <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279948 Wed, 27 Jun 2018 07:09 -0400 Michael Benedict http://www.lassosoft.com/lassotalk?id=279948 Jason,

Is it working?

All I really need to know at this point.

Thanks, Michael

-----Original Message-----
From: lasso-bounces@lists.lassosoft.com
[mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Jason Pettis
Sent: Wednesday, June 27, 2018 5:54 PM
To: lasso@lists.lassosoft.com
Subject: Re: Lasso 8.6 ?? running of MS Server 2012-16??

I have an instance of 8.6 on MS Windows server 2012, not sure if I can help
but let me know.

-Jason







On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict
<michael@intelligentreg.com>
wrote:

> Hello,
>
> Anyone out there running Lasso 8.6 on MS Windows Server 2012 (2016 maybe)?
>
> We are needing to update our servers a bit.
>
> Thanks,
>
> Michael
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com Official list archives
available at http://www.lassotalk.com To unsubscribe, E-mail to:
<Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279947 Wed, 27 Jun 2018 06:54 -0400 Jason Pettis http://www.lassosoft.com/lassotalk?id=279947 I have an instance of 8.6 on MS Windows server 2012, not sure if I can help
but let me know.

-Jason







On Wed, Jun 27, 2018 at 3:51 PM Michael Benedict <michael@intelligentreg.com>
wrote:

> Hello,
>
> Anyone out there running Lasso 8.6 on MS Windows Server 2012 (2016 maybe)?
>
> We are needing to update our servers a bit.
>
> Thanks,
>
> Michael
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Lasso 8.6 ?? running of MS Server 2012-16?? http://www.lassosoft.com/lassotalk?id=279946 Wed, 27 Jun 2018 02:51 -0400 Michael Benedict http://www.lassosoft.com/lassotalk?id=279946 Hello,

Anyone out there running Lasso 8.6 on MS Windows Server 2012 (2016 maybe)?

We are needing to update our servers a bit.

Thanks,

Michael


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279945 Thu, 14 Jun 2018 05:58 -0400 Carl Ketterling http://www.lassosoft.com/lassotalk?id=279945 I would recommend you have the path outside your root folder. I use /path/to/site/www for my root folder and /path/to/site/debug for my debug logging.

Then make sure you have write permissions to that folder and it’s files. The user on my Mac is “_lasso”, but you could allow read/write by everyone until you get it working and then limit the permission to where they should be.

> On Jun 14, 2018, at 5:45 PM, Steve Upton <upton@chromix.com> wrote:
>
>
> well. I finally threw in the towel and trashed El Cap Server.
>
> A bit of nuke & pave and I'm looking at plain old El Cap.
>
> As you can imagine, life is a lot simpler and I have Lasso 8.5 mostly running fine with the stock Apache 2.4
>
> I'm having problems with the [log] tag ("operation not permitted"), which I believe I've traced down to a file access problem (can't access the log file from a File tag either).
>
> Unfortunately lasso's not giving me the best error messages so I don't know if it's a path problem (website-relative /mySubFolder/myFile.txt type stuff) or an OS-level file access problem or an Apache-level access problem or a Lasso-level access problem....
>
> any ideas / hints?
>
> normal .lasso files serve fine.
>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279944 Thu, 14 Jun 2018 03:55 -0400 Bil Corry http://www.lassosoft.com/lassotalk?id=279944 Have fun (and thank Steve):

http://www.stevepiercy.com/articles/setting-up-file-tag-permissions-in-lasso-professional-8-on-mac-os-x-and-linux/


- Bil

> On Jun 14, 2018, at 3:45 PM, Steve Upton <upton@chromix.com> wrote:
>
>
> well. I finally threw in the towel and trashed El Cap Server.
>
> A bit of nuke & pave and I'm looking at plain old El Cap.
>
> As you can imagine, life is a lot simpler and I have Lasso 8.5 mostly running fine with the stock Apache 2.4
>
> I'm having problems with the [log] tag ("operation not permitted"), which I believe I've traced down to a file access problem (can't access the log file from a File tag either).
>
> Unfortunately lasso's not giving me the best error messages so I don't know if it's a path problem (website-relative /mySubFolder/myFile.txt type stuff) or an OS-level file access problem or an Apache-level access problem or a Lasso-level access problem....
>
> any ideas / hints?
>
> normal .lasso files serve fine.
>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279943 Thu, 14 Jun 2018 03:45 -0400 Steve Upton http://www.lassosoft.com/lassotalk?id=279943 well. I finally threw in the towel and trashed El Cap Server.

A bit of nuke & pave and I'm looking at plain old El Cap.

As you can imagine, life is a lot simpler and I have Lasso 8.5 mostly running fine with the stock Apache 2.4

I'm having problems with the [log] tag ("operation not permitted"), which I believe I've traced down to a file access problem (can't access the log file from a File tag either).

Unfortunately lasso's not giving me the best error messages so I don't know if it's a path problem (website-relative /mySubFolder/myFile.txt type stuff) or an OS-level file access problem or an Apache-level access problem or a Lasso-level access problem....

any ideas / hints?

normal .lasso files serve fine.



#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279942 Wed, 13 Jun 2018 09:38 -0400 Wade Maxfield http://www.lassosoft.com/lassotalk?id=279942 > On 13/06/2018, at 08:02, Steve Upton <upton@chromix.com> wrote:
>
> I agree. Or something like it.
>
> Does anyone know how to disable all the extra web server cruft that Apple stuffs into Server 5?
>
> Is it in the Config/Proxy/ files?

Are you using any of the features of OS X Server like Calendar or Wiki? If you aren’t then try checking in terminal:

ps ax | grep http


look for Proxy or apache_serviceproxy.conf, you’ll probably see

/usr/sbin/httpd -D FOREGROUND -f /Library/Server/Web/Config/Proxy/apache_serviceproxy.conf -E /private/var/log/apache2/service_proxy_error.log


if it is running, stop it it with

sudo /Applications/Server.app/Contents/ServerRoot/usr/sbin/serviceproxyctl stop


Then try loading your client_ip test page. If it doesn’t load at all, then you’ll need to check your conf files. I think by default OS X server sets up sites to listen on 34580 and 34543 on localhost, then slams the proxy in front listening on 80 & 443, forwarding to 34580/34543. So you’ll need to edit your conf files to listen on port 80/443.

- Wade





#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279940 Tue, 12 Jun 2018 01:03 -0400 Bil Corry http://www.lassosoft.com/lassotalk?id=279940 Likely a load balancer:

https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/x-forwarded-headers.html
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-Proto


- Bil


On Tue, Jun 12, 2018 at 12:36 PM, Steffan Cline <steffan@hldns.com> wrote:

> Maybe someone can confirm but I have a strong feeling that Forward in the
> header is the problem, not the connector. I think you have a caching proxy
> in front.
>
> Thanks,
> Steffan Cline
> steffan@hldns.com
> 602-793-0014
>
> > On Jun 12, 2018, at 12:16 PM, Steve Upton <upton@chromix.com> wrote:
> >
> >
> >> On Jun 12, 2018, at 12:12 PM, Steffan Cline <steffan@hldns.com> wrote:
> >>
> >> What does a dump of the raw header reveal?
> >
> > Host: xxxxx.com Cookie: __utma=85144262.5336459.1476209067.1484251364.1484272778.3
> Upgrade-Insecure-Requests: 1 Accept: text/html,application/xhtml+
> xml,application/xml;q=0.9,*/*;q=0.8 User-Agent: Mozilla/5.0 (Macintosh;
> Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko)
> Version/11.1.1 Safari/605.1.15 Accept-Language: en-us DNT: 1
> Accept-Encoding: gzip, deflate X-Forwarded-Proto: http X-Forwarded-Port: 80
> X-Forwarded-Host: xxxxx.com X-Forwarded-Server: xxxxx com Connection:
> Keep-Alive X_FORWARDED_PROTO: http
> >
> >
> >
> > #############################################################
> >
> > This message is sent to you because you are subscribed to
> > the mailing list Lasso Lasso@lists.lassosoft.com
> > Official list archives available at http://www.lassotalk.com
> > To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> > Send administrative queries to <Lasso-request@lists.lassosoft.com>
> >
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279941 Tue, 12 Jun 2018 01:02 -0400 Steve Upton http://www.lassosoft.com/lassotalk?id=279941 > On Jun 12, 2018, at 12:36 PM, Steffan Cline <steffan@hldns.com> wrote:
>
> Maybe someone can confirm but I have a strong feeling that Forward in the header is the problem, not the connector. I think you have a caching proxy in front.

I agree. Or something like it.

Does anyone know how to disable all the extra web server cruft that Apple stuffs into Server 5?

Is it in the Config/Proxy/ files?

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279939 Tue, 12 Jun 2018 12:36 -0400 Steffan Cline http://www.lassosoft.com/lassotalk?id=279939 Maybe someone can confirm but I have a strong feeling that Forward in the header is the problem, not the connector. I think you have a caching proxy in front.

Thanks,
Steffan Cline
steffan@hldns.com
602-793-0014

> On Jun 12, 2018, at 12:16 PM, Steve Upton <upton@chromix.com> wrote:
>
>
>> On Jun 12, 2018, at 12:12 PM, Steffan Cline <steffan@hldns.com> wrote:
>>
>> What does a dump of the raw header reveal?
>
> Host: xxxxx.com Cookie: __utma=85144262.5336459.1476209067.1484251364.1484272778.3 Upgrade-Insecure-Requests: 1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.1 Safari/605.1.15 Accept-Language: en-us DNT: 1 Accept-Encoding: gzip, deflate X-Forwarded-Proto: http X-Forwarded-Port: 80 X-Forwarded-Host: xxxxx.com X-Forwarded-Server: xxxxx com Connection: Keep-Alive X_FORWARDED_PROTO: http
>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279938 Tue, 12 Jun 2018 12:16 -0400 Steve Upton http://www.lassosoft.com/lassotalk?id=279938 > On Jun 12, 2018, at 12:12 PM, Steffan Cline <steffan@hldns.com> wrote:
>
> What does a dump of the raw header reveal?

Host: xxxxx.com Cookie: __utma=85144262.5336459.1476209067.1484251364.1484272778.3 Upgrade-Insecure-Requests: 1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.1 Safari/605.1.15 Accept-Language: en-us DNT: 1 Accept-Encoding: gzip, deflate X-Forwarded-Proto: http X-Forwarded-Port: 80 X-Forwarded-Host: xxxxx.com X-Forwarded-Server: xxxxx com Connection: Keep-Alive X_FORWARDED_PROTO: http



#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279937 Tue, 12 Jun 2018 12:12 -0400 Steffan Cline http://www.lassosoft.com/lassotalk?id=279937 What does a dump of the raw header reveal?

Thanks,
Steffan Cline
steffan@hldns.com
602-793-0014

> On Jun 12, 2018, at 12:10 PM, Steve Upton <upton@chromix.com> wrote:
>
>
>> On Jun 12, 2018, at 12:10 AM, Steve Upton <upton@chromix.com> wrote:
>>
>> I'm not sure about the performance cache. I'll check it tomorrow. I've had so many things on and off
>
> There appears to be no sign of the dreaded "Web Performance Cache" setting in OS X Server 5 (El Cap) that I can find, either in the UI or the various .conf files.
>
> I've turned off every cache and proxy .so I can find and I still only get 127.0.0.1 for the client_ip
>
> is there something else I'm missing?
>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso connector for Apache 2.4 and Lasso 8.5.x? http://www.lassosoft.com/lassotalk?id=279936 Tue, 12 Jun 2018 12:10 -0400 Steve Upton http://www.lassosoft.com/lassotalk?id=279936 > On Jun 12, 2018, at 12:10 AM, Steve Upton <upton@chromix.com> wrote:
>
> I'm not sure about the performance cache. I'll check it tomorrow. I've had so many things on and off

There appears to be no sign of the dreaded "Web Performance Cache" setting in OS X Server 5 (El Cap) that I can find, either in the UI or the various .conf files.

I've turned off every cache and proxy .so I can find and I still only get 127.0.0.1 for the client_ip

is there something else I'm missing?



#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: UPS Rates http://www.lassosoft.com/lassotalk?id=279935 Sat, 31 Mar 2018 12:59 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279935 1. This might not be relevant because you're using Lasso 9, but
what version of macOS? There is a known issue with libcurl on
certain versions, which might affect Lasso 9 (I know it affects
Lasso 8). There is a workaround by installing curl via
homebrew, and calling that version instead. See:

https://github.com/stevepiercy/AuthorizeNet_AIM/issues/5

2. You should not use shell with Lasso 9 because it is designed
for Lasso 8.

Additionally when using third party APIs over HTTP, you can use
include_url for most situations, then either curl, or
sys_process to invoke curl, if necessary. Use one of the
following Lasso 9 native types or methods in order of preference:

- include_url
- curl
- sys_process

Lasso's curl requires some patience and tweaking to get just
right. Setting headers is troublesome, as shown in the example
below. The documentation of Lasso's curl methods is
suboptimal. sys_process is usually straightforward, but I was
not able to figure out how to get it to work in the example
below, which I included for completeness and comparison.

All that said, here are two methods, one each for include_url
and curl mixed together.

[
local(url) = 'https://api.shipengine.com/v1/rates'
local(c) = curl(#url)
local(headers) = staticarray(
'Content-Type'='application/json',
'api-key'='ElJkhJuQIRoFq/kDEblco4LpZqRCdYNIoAVG7SywSXw')
local(data) = '{
"shipment": {
"validate_address": "no_validation",
"ship_to": {
"name": "Mickey and Minnie Mouse",
"phone": "714-781-4565",
"company_name": "The Walt Disney Company",
"address_line1": "500 South Buena Vista Street",
"city_locality": "Burbank",
"state_province": "CA",
"postal_code": "91521",
"country_code": "US"
},
"ship_from": {
"name": "Dade Murphy",
"phone": "512-485-4282",
"company_name": "Zero Cool",
"address_line1": "345 Chambers Street",
"address_line2": "Suite 100",
"city_locality": "New York City",
"state_province": "NY",
"postal_code": "10282",
"country_code": "US",
},
"packages": [
{
"weight": {
"value": 1.0,
"unit": "ounce"
}
}
]
},
"rate_options": {
"carrier_ids": [
"se-123890"
]
}
}'



// curl method

local(curl_headers) = ''
local(delimit) = ''
with item in #headers
do {
#curl_headers -> append(#delimit + #item->first + ': ' + #item->second)
#delimit = '\r\n'
}

handle => { #c->close }
#c -> set(CURLOPT_VERBOSE, 0)
#c -> set(CURLOPT_POST, 1)
#c -> set(CURLOPT_POSTFIELDS, #data)
#c -> set(CURLOPT_HTTPHEADER, #curl_headers)

local(result) = #c -> result
#c -> close

'<textarea rows="20" cols="80">'
#result
'</textarea>'



// include_url method

#result = include_url(
#url,
-postparams=#data,
-sendmimeheaders=#headers)

'<textarea rows="20" cols="80">'
#result
'</textarea>'



// sys_process failed attempt

local(cmd) = (#url
+ ' -X POST'
+ ' -H "Content-type: application/json"'
+ ' -H "api-key: ElJkhJuQIRoFq/kDEblco4LpZqRCdYNIoAVG7SywSXw"'
+ ' -d \'' + #data + '\''
)

local(proc) = sys_process('/usr/bin/curl', staticarray(#cmd))
local(outfoo)
'<textarea rows="20" cols="80">'
while(#proc->isOpen or #outfoo := #proc->readString) => {^
#outfoo->asString->encodeHtml
^}
'</textarea>'
#proc->close

]

--steve


On 3/30/18 at 2:27 PM, carl@thursby.com (Carl Ketterling) pronounced:

>Well, I was hoping to see how someone else made the call
>(assuming it’s working for them) so that I could find my own
>problem. But here goes.
>
>
>I have Lasso 9 running on macOS.
>
>I’m using the sample code for “Get Shipping Rates” from
>shipengine.com (https://docs.shipengine.com/docs/get-shipping-rates).
>
>If I copy and past their curl command, I get what I think is a
>complete response (over 700 lines). When I use Lasso, I get a
>much shorter response (30 lines).
>
>Details below.
>
>Carl
>
>
># -------------------------------------------------------
># The Lasso Page
>
><?LassoScript
>
>local( theURL = 'https://api.shipengine.com/v1/rates' ) // RATES URL
>local( postData = '\'
>{
>"shipment": {
>"validate_address": "no_validation",
>"ship_to": {
>"name": "Mickey and Minnie Mouse",
>"phone": "714-781-4565",
>"company_name": "The Walt Disney Company",
>"address_line1": "500 South Buena Vista Street",
>"city_locality": "Burbank",
>"state_province": "CA",
>"postal_code": "91521",
>"country_code": "US"
>},
>"ship_from": {
>"name": "Dade Murphy",
>"phone": "512-485-4282",
>"company_name": "Zero Cool",
>"address_line1": "345 Chambers Street",
>"address_line2": "Suite 100",
>"city_locality": "New York City",
>"state_province": "NY",
>"postal_code": "10282",
>"country_code": "US",
>},
>"packages": [
>{
>"weight": {
>"value": 1.0,
>"unit": "ounce"
>}
>}
>]
>},
>"rate_options": {
>"carrier_ids": [
>"se-123890"
>]
>}
>}
>\'' )
>
>local( curlResult = shell( 'curl '
>+ #theURL
>+ ' -X ' + 'POST'
>+ ' -H ' + '"Content-Type: application/json"'
>+ ' -H ' + '"api-key: ElJkhJuQIRoFq/kDEblco4LpZqRCdYNIoAVG7SywSXw"'
>+ ' -d ' + #postData )
>)
>
>#curlResult
>
>?>
>
># -------------------------------------------------------
># The Lasso Output
>
>: [],
>"packages": [
>{
>"package_code": "package",
>"weight": {
>"value": 1.00,
>"unit": "ounce"
>},
>"dimensions": {
>"unit": "inch",
>"length": 0.0,
>"width": 0.0,
>"height": 0.0
>},
>"insured_value": {
>"currency": "usd",
>"amount": 0.00
>},
>"label_messages": {
>"reference1": null,
>"reference2": null,
>"reference3": null
>}
>}
>],
>"total_weight": {
>"value": 1.00,
>"unit": "ounce"
>}
>}
>
>
># -------------------------------------------------------
># The cURL Command and Output
>
>$ curl 'https://api.shipengine.com/v1/rates' -X POST \
>>-H "Content-type: application/json" \
>>-H "api-key: ElJkhJuQIRoFq/kDEblco4LpZqRCdYNIoAVG7SywSXw" \
>>-d '
>>{
>>"shipment": {
>>"validate_address": "no_validation",
>>"ship_to": {
>>"name": "Mickey and Minnie Mouse",
>>"phone": "714-781-4565",
>>"company_name": "The Walt Disney Company",
>>"address_line1": "500 South Buena Vista Street",
>>"city_locality": "Burbank",
>>"state_province": "CA",
>>"postal_code": "91521",
>>"country_code": "US"
>>},
>>"ship_from": {
>>"name": "Dade Murphy",
>>"phone": "512-485-4282",
>>"company_name": "Zero Cool",
>>"address_line1": "345 Chambers Street",
>>"address_line2": "Suite 100",
>>"city_locality": "New York City",
>>"state_province": "NY",
>>"postal_code": "10282",
>>"country_code": "US",
>>},
>>"packages": [
>>{
>>"weight": {
>>"value": 1.0,
>>"unit": "ounce"
>>}
>>}
>>]
>>},
>>"rate_options": {
>>"carrier_ids": [
>>"se-123890"
>>]
>>}
>>}'
>
>{
>"rate_response": {
>"rates": [
>{
>"rate_id": "se-12385913",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 0.47
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "letter",
>"delivery_days": 4,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-03T00:00:00Z",
>"carrier_delivery_days": "3",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS First Class Mail",
>"service_code": "usps_first_class_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385914",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 1.00
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "large_envelope_or_flat",
>"delivery_days": 4,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-03T00:00:00Z",
>"carrier_delivery_days": "3",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS First Class Mail",
>"service_code": "usps_first_class_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385915",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 2.66
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "package",
>"delivery_days": 4,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-03T00:00:00Z",
>"carrier_delivery_days": "3",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS First Class Mail",
>"service_code": "usps_first_class_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385916",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 7.53
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "package",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385917",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 12.45
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "medium_flat_rate_box",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385918",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 6.85
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "small_flat_rate_box",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385919",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 17.10
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "large_flat_rate_box",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385920",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 6.35
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "flat_rate_envelope",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385921",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 6.90
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "flat_rate_padded_envelope",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385922",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 10.75
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "regional_rate_box_a",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385923",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 20.98
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "regional_rate_box_b",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385924",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 6.65
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "flat_rate_legal_envelope",
>"delivery_days": 3,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail",
>"service_code": "usps_priority_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385925",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 29.87
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "package",
>"delivery_days": 2,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "1-2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail Express",
>"service_code": "usps_priority_mail_express",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385926",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 21.98
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "flat_rate_envelope",
>"delivery_days": 2,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "1-2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail Express",
>"service_code": "usps_priority_mail_express",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385927",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 22.46
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "flat_rate_padded_envelope",
>"delivery_days": 2,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "1-2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail Express",
>"service_code": "usps_priority_mail_express",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385928",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 22.09
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "flat_rate_legal_envelope",
>"delivery_days": 2,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-02T00:00:00Z",
>"carrier_delivery_days": "1-2",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Priority Mail Express",
>"service_code": "usps_priority_mail_express",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385929",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 2.66
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "package",
>"delivery_days": 8,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-07T00:00:00Z",
>"carrier_delivery_days": "7",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Media Mail",
>"service_code": "usps_media_mail",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>},
>{
>"rate_id": "se-12385930",
>"rate_type": "shipment",
>"carrier_id": "se-123890",
>"shipping_amount": {
>"currency": "usd",
>"amount": 7.75
>},
>"insurance_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"confirmation_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"other_amount": {
>"currency": "usd",
>"amount": 0.00
>},
>"zone": 8,
>"package_type": "package",
>"delivery_days": 8,
>"guaranteed_service": false,
>"estimated_delivery_date": "2018-04-07T00:00:00Z",
>"carrier_delivery_days": "7",
>"ship_date": "2018-03-30T00:00:00Z",
>"negotiated_rate": false,
>"service_type": "USPS Parcel Select Ground",
>"service_code": "usps_parcel_select",
>"trackable": true,
>"carrier_code": "stamps_com",
>"carrier_nickname": "Free",
>"carrier_friendly_name": "Stamps.com",
>"validation_status": "valid",
>"warning_messages": [],
>"error_messages": []
>}
>],
>"invalid_rates": [],
>"rate_request_id": "se-912762",
>"shipment_id": "se-219724633",
>"created_at": "2018-03-30T19:18:12.327Z",
>"status": "completed",
>"errors": []
>},
>"shipment_id": "se-219724633",
>"carrier_id": null,
>"service_code": null,
>"external_shipment_id": null,
>"ship_date": "2018-03-30T00:00:00Z",
>"created_at": "2018-03-30T19:18:11.18Z",
>"modified_at": "2018-03-30T19:18:11.18Z",
>"shipment_status": "pending",
>"ship_to": {
>"name": "Mickey and Minnie Mouse",
>"phone": "714-781-4565",
>"company_name": "The Walt Disney Company",
>"address_line1": "500 South Buena Vista Street",
>"address_line2": null,
>"address_line3": null,
>"city_locality": "Burbank",
>"state_province": "CA",
>"postal_code": "91521",
>"country_code": "US",
>"address_residential_indicator": "unknown"
>},
>"ship_from": {
>"name": "Dade Murphy",
>"phone": "512-485-4282",
>"company_name": "Zero Cool",
>"address_line1": "345 Chambers Street",
>"address_line2": "Suite 100",
>"address_line3": null,
>"city_locality": "New York City",
>"state_province": "NY",
>"postal_code": "10282",
>"country_code": "US",
>"address_residential_indicator": "unknown"
>},
>"warehouse_id": null,
>"return_to": {
>"name": "Dade Murphy",
>"phone": "512-485-4282",
>"company_name": "Zero Cool",
>"address_line1": "345 Chambers Street",
>"address_line2": "Suite 100",
>"address_line3": null,
>"city_locality": "New York City",
>"state_province": "NY",
>"postal_code": "10282",
>"country_code": "US",
>"address_residential_indicator": "unknown"
>},
>"confirmation": "none",
>"customs": null,
>"advanced_options": {
>"bill_to_account": null,
>"bill_to_country_code": null,
>"bill_to_party": null,
>"bill_to_postal_code": null,
>"contains_alcohol": false,
>"delivered_duty_paid": false,
>"non_machinable": false,
>"saturday_delivery": false,
>"freight_class": null,
>"custom_field1": null,
>"custom_field2": null,
>"custom_field3": null
>},
>"insurance_provider": "none",
>"tags": [],
>"packages": [
>{
>"package_code": "package",
>"weight": {
>"value": 1.00,
>"unit": "ounce"
>},
>"dimensions": {
>"unit": "inch",
>"length": 0.0,
>"width": 0.0,
>"height": 0.0
>},
>"insured_value": {
>"currency": "usd",
>"amount": 0.00
>},
>"label_messages": {
>"reference1": null,
>"reference2": null,
>"reference3": null
>}
>}
>],
>"total_weight": {
>"value": 1.00,
>"unit": "ounce"
>}
>}
>
>
>
>
>
>>On Mar 30, 2018, at 2:30 AM, Steve Piercy - Website Builder <Web@StevePiercy.com> wrote:
>>
>>You don't provide sufficient information to help.
>>
>>What do you try?
>>
>>What do you expect to see?
>>
>>What do you observe?
>>
>>What is your operating system and version?
>>
>>--steve
>>
>>
>>On 3/30/18 at 12:09 AM, carl@thursby.com (Carl Ketterling) pronounced:
>>
>>> Max,
>>> I’ve been trying to use ShipEngine.com, and I’m having
>>>problems. Can you share what
>you’ve done?
>>> Specifically, I’ve been having problems getting the
>>>correct data from the curl command.
>I’ve been using ‘shell’ tag from
>http://www.lassosoft.com/tagswap/detail/shell and wonder if
>that is the cause.
>>> Could you provide an example of one of your calls?
>>> Carl
>>>
>>>> On Jan 24, 2018, at 8:31 PM, Maxwell Klein <lists@maxkdev.com> wrote:
>>>> I haven't looked at UPS's API, but the USPS and
>>>>Stamps.com APIs did not look friendly.
>>> Just started testing ShipEngine.com and it's been super easy so far, they support
>multiple carriers including UPS. Here are the REST API docs:
>>>> https://docs.shipengine.com/docs
>>>> The Pay-As-You-Go of 5¢ per shipment sees very
>>>>reasonable given all the functionality,
>>> plus you don't have to learn another API if you need more than UPS later on.
>>>> -Max
>>>>
>>>>> On Jan 24, 2018, at 1:37 PM, Mike Ealy <m_lasso@hhpublishing.com> wrote:
>>>>> Can anyone suggest a solution to pass parameters to UPS to retrieve shipping
>>>>> costs? I'm using Lasso 8.6 on a Mac.
>>>>> I remember using TC_UPS_RateQuote years ago but it doesn't seem to be
>>>>> supported anymore.
>>>>> Thanks,
>>>>> Mike Ealy
>>>>> #############################################################
>>>>> This message is sent to you because you are subscribed to
>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>> Official list archives available at http://www.lassotalk.com
>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>> #############################################################
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>> #############################################################
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>>Steve Piercy Website Builder Eugene, OR
>><web@stevepiercy.com> <http://www.stevepiercy.com/>
>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com
>>Official list archives available at http://www.lassotalk.com
>>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: UPS Rates http://www.lassosoft.com/lassotalk?id=279934 Fri, 30 Mar 2018 02:27 -0400 Carl Ketterling http://www.lassosoft.com/lassotalk?id=279934 Well, I was hoping to see how someone else made the call (assuming it’s working for them) so that I could find my own problem. But here goes.


I have Lasso 9 running on macOS.

I’m using the sample code for “Get Shipping Rates” from shipengine.com (https://docs.shipengine.com/docs/get-shipping-rates).

If I copy and past their curl command, I get what I think is a complete response (over 700 lines). When I use Lasso, I get a much shorter response (30 lines).

Details below.

Carl


# -------------------------------------------------------
# The Lasso Page

<?LassoScript

local( theURL = 'https://api.shipengine.com/v1/rates' ) // RATES URL
local( postData = '\'
{
"shipment": {
"validate_address": "no_validation",
"ship_to": {
"name": "Mickey and Minnie Mouse",
"phone": "714-781-4565",
"company_name": "The Walt Disney Company",
"address_line1": "500 South Buena Vista Street",
"city_locality": "Burbank",
"state_province": "CA",
"postal_code": "91521",
"country_code": "US"
},
"ship_from": {
"name": "Dade Murphy",
"phone": "512-485-4282",
"company_name": "Zero Cool",
"address_line1": "345 Chambers Street",
"address_line2": "Suite 100",
"city_locality": "New York City",
"state_province": "NY",
"postal_code": "10282",
"country_code": "US",
},
"packages": [
{
"weight": {
"value": 1.0,
"unit": "ounce"
}
}
]
},
"rate_options": {
"carrier_ids": [
"se-123890"
]
}
}
\'' )

local( curlResult = shell( 'curl '
+ #theURL
+ ' -X ' + 'POST'
+ ' -H ' + '"Content-Type: application/json"'
+ ' -H ' + '"api-key: ElJkhJuQIRoFq/kDEblco4LpZqRCdYNIoAVG7SywSXw"'
+ ' -d ' + #postData )
)

#curlResult

?>

# -------------------------------------------------------
# The Lasso Output

: [],
"packages": [
{
"package_code": "package",
"weight": {
"value": 1.00,
"unit": "ounce"
},
"dimensions": {
"unit": "inch",
"length": 0.0,
"width": 0.0,
"height": 0.0
},
"insured_value": {
"currency": "usd",
"amount": 0.00
},
"label_messages": {
"reference1": null,
"reference2": null,
"reference3": null
}
}
],
"total_weight": {
"value": 1.00,
"unit": "ounce"
}
}


# -------------------------------------------------------
# The cURL Command and Output

$ curl 'https://api.shipengine.com/v1/rates' -X POST \
> -H "Content-type: application/json" \
> -H "api-key: ElJkhJuQIRoFq/kDEblco4LpZqRCdYNIoAVG7SywSXw" \
> -d '
> {
> "shipment": {
> "validate_address": "no_validation",
> "ship_to": {
> "name": "Mickey and Minnie Mouse",
> "phone": "714-781-4565",
> "company_name": "The Walt Disney Company",
> "address_line1": "500 South Buena Vista Street",
> "city_locality": "Burbank",
> "state_province": "CA",
> "postal_code": "91521",
> "country_code": "US"
> },
> "ship_from": {
> "name": "Dade Murphy",
> "phone": "512-485-4282",
> "company_name": "Zero Cool",
> "address_line1": "345 Chambers Street",
> "address_line2": "Suite 100",
> "city_locality": "New York City",
> "state_province": "NY",
> "postal_code": "10282",
> "country_code": "US",
> },
> "packages": [
> {
> "weight": {
> "value": 1.0,
> "unit": "ounce"
> }
> }
> ]
> },
> "rate_options": {
> "carrier_ids": [
> "se-123890"
> ]
> }
> }'

{
"rate_response": {
"rates": [
{
"rate_id": "se-12385913",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 0.47
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "letter",
"delivery_days": 4,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-03T00:00:00Z",
"carrier_delivery_days": "3",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS First Class Mail",
"service_code": "usps_first_class_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385914",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 1.00
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "large_envelope_or_flat",
"delivery_days": 4,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-03T00:00:00Z",
"carrier_delivery_days": "3",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS First Class Mail",
"service_code": "usps_first_class_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385915",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 2.66
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "package",
"delivery_days": 4,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-03T00:00:00Z",
"carrier_delivery_days": "3",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS First Class Mail",
"service_code": "usps_first_class_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385916",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 7.53
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "package",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385917",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 12.45
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "medium_flat_rate_box",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385918",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 6.85
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "small_flat_rate_box",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385919",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 17.10
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "large_flat_rate_box",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385920",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 6.35
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "flat_rate_envelope",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385921",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 6.90
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "flat_rate_padded_envelope",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385922",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 10.75
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "regional_rate_box_a",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385923",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 20.98
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "regional_rate_box_b",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385924",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 6.65
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "flat_rate_legal_envelope",
"delivery_days": 3,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail",
"service_code": "usps_priority_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385925",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 29.87
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "package",
"delivery_days": 2,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "1-2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail Express",
"service_code": "usps_priority_mail_express",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385926",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 21.98
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "flat_rate_envelope",
"delivery_days": 2,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "1-2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail Express",
"service_code": "usps_priority_mail_express",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385927",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 22.46
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "flat_rate_padded_envelope",
"delivery_days": 2,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "1-2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail Express",
"service_code": "usps_priority_mail_express",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385928",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 22.09
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "flat_rate_legal_envelope",
"delivery_days": 2,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-02T00:00:00Z",
"carrier_delivery_days": "1-2",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Priority Mail Express",
"service_code": "usps_priority_mail_express",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385929",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 2.66
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "package",
"delivery_days": 8,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-07T00:00:00Z",
"carrier_delivery_days": "7",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Media Mail",
"service_code": "usps_media_mail",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
},
{
"rate_id": "se-12385930",
"rate_type": "shipment",
"carrier_id": "se-123890",
"shipping_amount": {
"currency": "usd",
"amount": 7.75
},
"insurance_amount": {
"currency": "usd",
"amount": 0.00
},
"confirmation_amount": {
"currency": "usd",
"amount": 0.00
},
"other_amount": {
"currency": "usd",
"amount": 0.00
},
"zone": 8,
"package_type": "package",
"delivery_days": 8,
"guaranteed_service": false,
"estimated_delivery_date": "2018-04-07T00:00:00Z",
"carrier_delivery_days": "7",
"ship_date": "2018-03-30T00:00:00Z",
"negotiated_rate": false,
"service_type": "USPS Parcel Select Ground",
"service_code": "usps_parcel_select",
"trackable": true,
"carrier_code": "stamps_com",
"carrier_nickname": "Free",
"carrier_friendly_name": "Stamps.com",
"validation_status": "valid",
"warning_messages": [],
"error_messages": []
}
],
"invalid_rates": [],
"rate_request_id": "se-912762",
"shipment_id": "se-219724633",
"created_at": "2018-03-30T19:18:12.327Z",
"status": "completed",
"errors": []
},
"shipment_id": "se-219724633",
"carrier_id": null,
"service_code": null,
"external_shipment_id": null,
"ship_date": "2018-03-30T00:00:00Z",
"created_at": "2018-03-30T19:18:11.18Z",
"modified_at": "2018-03-30T19:18:11.18Z",
"shipment_status": "pending",
"ship_to": {
"name": "Mickey and Minnie Mouse",
"phone": "714-781-4565",
"company_name": "The Walt Disney Company",
"address_line1": "500 South Buena Vista Street",
"address_line2": null,
"address_line3": null,
"city_locality": "Burbank",
"state_province": "CA",
"postal_code": "91521",
"country_code": "US",
"address_residential_indicator": "unknown"
},
"ship_from": {
"name": "Dade Murphy",
"phone": "512-485-4282",
"company_name": "Zero Cool",
"address_line1": "345 Chambers Street",
"address_line2": "Suite 100",
"address_line3": null,
"city_locality": "New York City",
"state_province": "NY",
"postal_code": "10282",
"country_code": "US",
"address_residential_indicator": "unknown"
},
"warehouse_id": null,
"return_to": {
"name": "Dade Murphy",
"phone": "512-485-4282",
"company_name": "Zero Cool",
"address_line1": "345 Chambers Street",
"address_line2": "Suite 100",
"address_line3": null,
"city_locality": "New York City",
"state_province": "NY",
"postal_code": "10282",
"country_code": "US",
"address_residential_indicator": "unknown"
},
"confirmation": "none",
"customs": null,
"advanced_options": {
"bill_to_account": null,
"bill_to_country_code": null,
"bill_to_party": null,
"bill_to_postal_code": null,
"contains_alcohol": false,
"delivered_duty_paid": false,
"non_machinable": false,
"saturday_delivery": false,
"freight_class": null,
"custom_field1": null,
"custom_field2": null,
"custom_field3": null
},
"insurance_provider": "none",
"tags": [],
"packages": [
{
"package_code": "package",
"weight": {
"value": 1.00,
"unit": "ounce"
},
"dimensions": {
"unit": "inch",
"length": 0.0,
"width": 0.0,
"height": 0.0
},
"insured_value": {
"currency": "usd",
"amount": 0.00
},
"label_messages": {
"reference1": null,
"reference2": null,
"reference3": null
}
}
],
"total_weight": {
"value": 1.00,
"unit": "ounce"
}
}





> On Mar 30, 2018, at 2:30 AM, Steve Piercy - Website Builder <Web@StevePiercy.com> wrote:
>
> You don't provide sufficient information to help.
>
> What do you try?
>
> What do you expect to see?
>
> What do you observe?
>
> What is your operating system and version?
>
> --steve
>
>
> On 3/30/18 at 12:09 AM, carl@thursby.com (Carl Ketterling) pronounced:
>
>> Max,
>>
>> I’ve been trying to use ShipEngine.com, and I’m having problems. Can you share what you’ve done?
>>
>> Specifically, I’ve been having problems getting the correct data from the curl command. I’ve been using ‘shell’ tag from http://www.lassosoft.com/tagswap/detail/shell and wonder if that is the cause.
>>
>> Could you provide an example of one of your calls?
>>
>> Carl
>>
>>
>>> On Jan 24, 2018, at 8:31 PM, Maxwell Klein <lists@maxkdev.com> wrote:
>>>
>>> I haven't looked at UPS's API, but the USPS and Stamps.com APIs did not look friendly.
>> Just started testing ShipEngine.com and it's been super easy so far, they support multiple carriers including UPS. Here are the REST API docs:
>>>
>>> https://docs.shipengine.com/docs
>>>
>>> The Pay-As-You-Go of 5¢ per shipment sees very reasonable given all the functionality,
>> plus you don't have to learn another API if you need more than UPS later on.
>>>
>>> -Max
>>>
>>>
>>>> On Jan 24, 2018, at 1:37 PM, Mike Ealy <m_lasso@hhpublishing.com> wrote:
>>>> Can anyone suggest a solution to pass parameters to UPS to retrieve shipping
>>>> costs? I'm using Lasso 8.6 on a Mac.
>>>> I remember using TC_UPS_RateQuote years ago but it doesn't seem to be
>>>> supported anymore.
>>>> Thanks,
>>>> Mike Ealy
>>>> #############################################################
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> Steve Piercy Website Builder Eugene, OR
> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: UPS Rates http://www.lassosoft.com/lassotalk?id=279933 Fri, 30 Mar 2018 12:30 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279933 You don't provide sufficient information to help.

What do you try?

What do you expect to see?

What do you observe?

What is your operating system and version?

--steve


On 3/30/18 at 12:09 AM, carl@thursby.com (Carl Ketterling) pronounced:

>Max,
>
>I’ve been trying to use ShipEngine.com, and I’m having
>problems. Can you share what you’ve done?
>
>Specifically, I’ve been having problems getting the correct
>data from the curl command. I’ve been using ‘shell’ tag
>from http://www.lassosoft.com/tagswap/detail/shell and wonder
>if that is the cause.
>
>Could you provide an example of one of your calls?
>
>Carl
>
>
>>On Jan 24, 2018, at 8:31 PM, Maxwell Klein <lists@maxkdev.com> wrote:
>>
>>I haven't looked at UPS's API, but the USPS and Stamps.com APIs did not look friendly.
>Just started testing ShipEngine.com and it's been super easy so
>far, they support multiple carriers including UPS. Here are the
>REST API docs:
>>
>>https://docs.shipengine.com/docs
>>
>>The Pay-As-You-Go of 5¢ per shipment sees very reasonable given all the functionality,
>plus you don't have to learn another API if you need more than UPS later on.
>>
>>-Max
>>
>>
>>> On Jan 24, 2018, at 1:37 PM, Mike Ealy <m_lasso@hhpublishing.com> wrote:
>>> Can anyone suggest a solution to pass parameters to UPS to
>>>retrieve shipping
>>> costs? I'm using Lasso 8.6 on a Mac.
>>> I remember using TC_UPS_RateQuote years ago but it doesn't
>>>seem to be
>>> supported anymore.
>>> Thanks,
>>> Mike Ealy
>>> #############################################################
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com
>>Official list archives available at http://www.lassotalk.com
>>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: UPS Rates http://www.lassosoft.com/lassotalk?id=279932 Fri, 30 Mar 2018 12:09 -0400 Carl Ketterling http://www.lassosoft.com/lassotalk?id=279932 Max,

I’ve been trying to use ShipEngine.com, and I’m having problems. Can you share what you’ve done?

Specifically, I’ve been having problems getting the correct data from the curl command. I’ve been using ‘shell’ tag from http://www.lassosoft.com/tagswap/detail/shell and wonder if that is the cause.

Could you provide an example of one of your calls?

Carl


> On Jan 24, 2018, at 8:31 PM, Maxwell Klein <lists@maxkdev.com> wrote:
>
> I haven't looked at UPS's API, but the USPS and Stamps.com APIs did not look friendly. Just started testing ShipEngine.com and it's been super easy so far, they support multiple carriers including UPS. Here are the REST API docs:
>
> https://docs.shipengine.com/docs
>
> The Pay-As-You-Go of 5¢ per shipment sees very reasonable given all the functionality, plus you don't have to learn another API if you need more than UPS later on.
>
> -Max
>
>
>> On Jan 24, 2018, at 1:37 PM, Mike Ealy <m_lasso@hhpublishing.com> wrote:
>>
>> Can anyone suggest a solution to pass parameters to UPS to retrieve shipping
>> costs? I'm using Lasso 8.6 on a Mac.
>>
>> I remember using TC_UPS_RateQuote years ago but it doesn't seem to be
>> supported anymore.
>>
>> Thanks,
>> Mike Ealy
>>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.5.6 install on El Capitan http://www.lassosoft.com/lassotalk?id=279931 Thu, 29 Mar 2018 11:42 -0400 Laurent G http://www.lassosoft.com/lassotalk?id=279931 Here is a link to download :
https://www.dropbox.com/s/nij2695elcfqxqe/Lasso_8_Connectors_for_Apache_2.4.zip?dl=0

Laurent

2018-03-26 15:55 GMT-04:00 Erik Vandermey <lists@webcentrix.net>:
> Sure, I could use the 2.4 connector.
>
> Regards,
> ---
> Erik VanderMey • erik@webcentrix.net <mailto:erik@webcentrix.net> • 630-206-2900 • (Messages/FaceTime: erikv@mac.com <mailto:erikv@mac.com>)
> WebCentrix, Inc. • http://webcentrix.net <http://webcentrix.net/> • Web Hosting/Co-Location/Dedicated Servers
> Certified Lasso Developer (CLD) • Kerio Connect/Control/Operator Reseller
>
>
>
>> On Feb 27, 2018, at 2:23 PM, Laurent G <laurent@netacces.com <mailto:laurent@netacces.com>> wrote:
>>
>> Does anyone need Lasso8ConnectorforApache2.4.so ?
>>
>> 2018-02-27 15:18 GMT-05:00 Laurent G <laurent@netacces.com <mailto:laurent@netacces.com>>:
>>> I had this issue too when I tried to installed lasso8connectorforapache2.4.so
>>> I had to disabled SIP in order to modify the recipient folder.
>>>
>>> 2018-02-27 15:10 GMT-05:00 James Sheffer <james@higherpowered.com <mailto:james@higherpowered.com>>:
>>>> I would think it would be a good idea but haven’t done it yet.
>>>>
>>>> I finally got Lasso 8.5.6 running in Sierra. Once I’m finished setting up the server, I’ll post updated instructions of exactly what I did to get it to work. Disabling SIP was one of the steps I didn’t know about until Steffan pointed it out and I “think” was the main problem with Lasso not wanting to install (I also had to install Java 6). I’m going to reenable it once finished and let you know if there are any problems (I don’t imagine why re-enabling SIP would cause any problems)…
>>>>
>>>> James Sheffer
>>>> james@higherpowered.com <mailto:james@higherpowered.com>
>>>> www.higherpowered.com <http://www.higherpowered.com/>
>>>> 469-256-0268
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>> On Feb 27, 2018, at 9:23 AM, Laurent G <laurent@netacces.com> wrote:
>>>>>
>>>>> Do we need to enabled back SIP (System Integrity Protection) after
>>>>> Lasso install on Sierra?
>>>>>
>>>>>
>>>>> Laurent
>>>>>
>>>>> 2018-02-25 16:43 GMT-05:00 James Sheffer <james@higherpowered.com>:
>>>>>> Doh!
>>>>>>
>>>>>> In my “hurridness", I was on another lasso server - no server admin :-(
>>>>>>
>>>>>>
>>>>>>> On Feb 25, 2018, at 1:34 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>
>>>>>>> Wow!
>>>>>>>
>>>>>>> I still get an internal server error but can now get into the server admin app now!
>>>>>>>
>>>>>>> James
>>>>>>>
>>>>>>>> On Feb 25, 2018, at 1:28 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>
>>>>>>>> I now have this in the lasso errors file:
>>>>>>>>
>>>>>>>> [02/25/18 13:15:02] Restarted site process 1 default
>>>>>>>> [02/25/18 14:54:38] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 583
>>>>>>>>
>>>>>>>> [02/25/18 14:54:40] Restarted site process 1 default
>>>>>>>> [02/25/18 15:22:46] Initialize - Required
>>>>>>>>
>>>>>>>> James
>>>>>>>>
>>>>>>>>> On Feb 25, 2018, at 1:27 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>>
>>>>>>>>> Ok, turned SIP off. Same problem. I’m thinking with this off, I should reinstall Lasso and try again? Should I uninstall first?
>>>>>>>>> Any other suggestions?
>>>>>>>>>
>>>>>>>>> Thanks again so much for the help!!!
>>>>>>>>>
>>>>>>>>> James
>>>>>>>>>
>>>>>>>>>> On Feb 25, 2018, at 11:45 AM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>>>
>>>>>>>>>> One other thing- Lasso is running according to activity monitor.
>>>>>>>>>>
>>>>>>>>>> Sent from my iPhone
>>>>>>>>>>
>>>>>>>>>>> On Feb 25, 2018, at 11:42 AM, James Sheffer <James@higherpowered.com> wrote:
>>>>>>>>>>>
>>>>>>>>>>> Forgive my ignorance but what is SIM?
>>>>>>>>>>>
>>>>>>>>>>> Sent from my iPhone
>>>>>>>>>>>
>>>>>>>>>>>> On Feb 25, 2018, at 11:18 AM, Steffan A. Cline <steffan@hldns.com> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>> Did you turn off SIM?
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Steffan A. Cline
>>>>>>>>>>>> steffan@hldns.com
>>>>>>>>>>>> 602-793-0014
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>> On Feb 25, 2018, at 12:14 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>> Ok, I’m headed for trouble very quickly!
>>>>>>>>>>>>>
>>>>>>>>>>>>> I’m still trying to get Lasso 8.5.6 to run in Sierra (since people got it running in Sierra just the same as El Capitan, I upgraded the server to Sierra (not High Sierra!).
>>>>>>>>>>>>>
>>>>>>>>>>>>> I did the following:
>>>>>>>>>>>>> - Installed snow leopard (8.5.6) and installed Lasso. Then upgraded through to Sierra.
>>>>>>>>>>>>> - Made the changes from below. I had to change the lasso8.conf file:
>>>>>>>>>>>>> LoadModule lasso8_module /usr/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>> To:
>>>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.4.so
>>>>>>>>>>>>> ** The Lasso8.conf file had /usr/libexec - I added the “local” which is where I put the connector file so Apache would load.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Now Apache loads but I get an internal server error when trying to load a simple lasso page (no errors in the apachectl configtest)
>>>>>>>>>>>>>
>>>>>>>>>>>>> In lassoerrors.txt file, I have the following:
>>>>>>>>>>>>>
>>>>>>>>>>>>> [02/25/18 13:00:09] Restarted site process 1 default
>>>>>>>>>>>>> [02/25/18 13:00:15] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 528
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> Anyone have any ideas? I’ve got 2 more days to get this working or all authorize.net <http://authorize.net/> calls will fail :-)
>>>>>>>>>>>>>
>>>>>>>>>>>>> Should I re-run the installer for Lasso 8.5.6?
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> It’s very simple … after some research
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Lasso 8.6 on El Capitan
>>>>>>>>>>>>>>>>>> ———————————
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Download the latest Lasso8 installer and run it.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Open the Terminal app.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Check if you have this folder: /usr/local/libexec
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> $ ls -l /usr/local/libexec/apache2
>>>>>>>>>>>>>>>>>> total 792
>>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 117008 11 okt 2015 Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 142468 11 okt 2015 Lasso8ConnectorforApache2.4.so
>>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 44416 24 mrt 19:55 mod_lasso9-2.4.so
>>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 34252 11 okt 2015 mod_lasso9.10.10.so
>>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 58428 11 okt 2015 mod_lasso9.so
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> If not, create it.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec
>>>>>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec/apache2
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> and copy the 'Lasso8ConnectorforApache2.4.so' into that folder. Scan Lassotalk for a download link.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Look in /etc/apache2/httpd.conf and check the end of that file. It should have the following 3 lines:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> $ tail /etc/apache2/httpd.conf
>>>>>>>>>>>>>>>>>> #Begin: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>>>>> Include /private/etc/apache2/users/lasso8.conf
>>>>>>>>>>>>>>>>>> #End: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Next, edit file /etc/apache2/users/lasso8.conf and look at the 'LoadModule’-line. It should look like this:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Change the 'Lasso8ConnectorforApache2.2.so' into 'Lasso8ConnectorforApache2.4.so'
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> For Lasso 8 to start when OS X starts, since Mac OS 10.10 you need a LaunchDaemon plist.
>>>>>>>>>>>>>>>>>> Enter the following commands in Terminal:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> $ sudo vi /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>>>>>>>>>>>> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
>>>>>>>>>>>>>>>>>> <plist version="1.0">
>>>>>>>>>>>>>>>>>> <dict>
>>>>>>>>>>>>>>>>>> <key>RunAtLoad</key>
>>>>>>>>>>>>>>>>>> <true/>
>>>>>>>>>>>>>>>>>> <key>Label</key>
>>>>>>>>>>>>>>>>>> <string>com.lassosoft.lasso8</string>
>>>>>>>>>>>>>>>>>> <key>ProgramArguments</key>
>>>>>>>>>>>>>>>>>> <array>
>>>>>>>>>>>>>>>>>> <string>/Applications/Lasso Professional 8/LassoAdmin/Lasso8Service.sh</string>
>>>>>>>>>>>>>>>>>> </array>
>>>>>>>>>>>>>>>>>> </dict>
>>>>>>>>>>>>>>>>>> </plist>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> $ sudo chown root:wheel /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>>> $ sudo chmod 644 /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>>> $ sudo launchctl load -w /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> That should do it.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> - -
>>>>>>>>>>>>>>>>>> Regards,
>>>>>>>>>>>>>>>>>> Marc Vos
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> James Sheffer
>>>>>>>>>>>>> james@higherpowered.com
>>>>>>>>>>>>> www.higherpowered.com
>>>>>>>>>>>>> 469-256-0268
>>>>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> #############################################################
>>>>>>>>>
>>>>>>>>> This message is sent to you because you are subscribed to
>>>>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>>>>
>>>>>>>>
>>>>>>>> #############################################################
>>>>>>>>
>>>>>>>> This message is sent to you because you are subscribed to
>>>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>>>
>>>>>>>
>>>>>>> #############################################################
>>>>>>>
>>>>>>> This message is sent to you because you are subscribed to
>>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>>
>>>>>>
>>>>>> #############################################################
>>>>>>
>>>>>> This message is sent to you because you are subscribed to
>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>
>>>>> #############################################################
>>>>>
>>>>> This message is sent to you because you are subscribed to
>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>> Official list archives available at http://www.lassotalk.com
>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>>
>>>> #############################################################
>>>>
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
>> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Lasso 8.6.3 on High Sierra and MAMP Pro http://www.lassosoft.com/lassotalk?id=279930 Mon, 26 Mar 2018 09:55 -0400 Erik Vandermey http://www.lassosoft.com/lassotalk?id=279930 Have some legacy sites (Lasso 8.5.6 on MacOS 10.5.8) that I need to keep running so I’m diving in with a High Sierra install with MAMP Pro.

First you have to turn off SIP (System Integrity Protection). Failure to turn it off will block the Lasso installer from completing.

Reboot in Recovery mode (start up holding Command-R). Open Terminal app and use this command:

csrutil enable -without fs

This leaves SIP enabled except for File System protection.

Reboot the server.

Now run the Lasso 8.6.3 installer. It will create and install the Lasso Apache connector in /usr/local/libexec

MAMP Pro uses Apache 2.2, so you can use the connector from the 8.6.3 installer and just move/copy it to the MAMP Apache modules folder.

MAMP Pro Apache modules are here:

/Applications/MAMP/Library/modules

Then append the httpd.conf file in MAMP Pro. Select File > Edit Template > Apache > httpd.conf and paste this at the bottom:

LoadModule lasso8_module /Applications/MAMP/Library/modules/Lasso8ConnectorforApache2.2.so

<Location ~ "^.*\.[Ll][Aa][Ss][Ss][Oo]$">
SetHandler lasso8-handler
</Location>

<Location ~ "^.*\.[Ll][Aa][Ss][Ss][Oo][Aa][Pp][Pp]$">
SetHandler lasso8-handler
</Location>

Note the lasso8_module path is adjusted for the MAMP modules location.

Tested with two non-database Lasso sites and it works great!

Tomorrow I’ll test with a site that uses MySQL.

Regards,
---
Erik VanderMey • erik@webcentrix.net • 630-206-2900 • (Messages/FaceTime: erikv@mac.com)
WebCentrix, Inc. • http://webcentrix.net • Web Hosting/Co-Location/Dedicated Servers
Certified Lasso Developer (CLD) • Kerio Connect/Control/Operator Reseller




#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.5.6 install on El Capitan http://www.lassosoft.com/lassotalk?id=279929 Mon, 26 Mar 2018 02:55 -0400 Erik Vandermey http://www.lassosoft.com/lassotalk?id=279929 Sure, I could use the 2.4 connector.

Regards,
---
Erik VanderMey • erik@webcentrix.net <mailto:erik@webcentrix.net> • 630-206-2900 • (Messages/FaceTime: erikv@mac.com <mailto:erikv@mac.com>)
WebCentrix, Inc. • http://webcentrix.net <http://webcentrix.net/> • Web Hosting/Co-Location/Dedicated Servers
Certified Lasso Developer (CLD) • Kerio Connect/Control/Operator Reseller



> On Feb 27, 2018, at 2:23 PM, Laurent G <laurent@netacces.com <mailto:laurent@netacces.com>> wrote:
>
> Does anyone need Lasso8ConnectorforApache2.4.so ?
>
> 2018-02-27 15:18 GMT-05:00 Laurent G <laurent@netacces.com <mailto:laurent@netacces.com>>:
>> I had this issue too when I tried to installed lasso8connectorforapache2.4.so
>> I had to disabled SIP in order to modify the recipient folder.
>>
>> 2018-02-27 15:10 GMT-05:00 James Sheffer <james@higherpowered.com <mailto:james@higherpowered.com>>:
>>> I would think it would be a good idea but haven’t done it yet.
>>>
>>> I finally got Lasso 8.5.6 running in Sierra. Once I’m finished setting up the server, I’ll post updated instructions of exactly what I did to get it to work. Disabling SIP was one of the steps I didn’t know about until Steffan pointed it out and I “think” was the main problem with Lasso not wanting to install (I also had to install Java 6). I’m going to reenable it once finished and let you know if there are any problems (I don’t imagine why re-enabling SIP would cause any problems)…
>>>
>>> James Sheffer
>>> james@higherpowered.com <mailto:james@higherpowered.com>
>>> www.higherpowered.com <http://www.higherpowered.com/>
>>> 469-256-0268
>>>
>>>
>>>
>>>
>>>
>>>> On Feb 27, 2018, at 9:23 AM, Laurent G <laurent@netacces.com> wrote:
>>>>
>>>> Do we need to enabled back SIP (System Integrity Protection) after
>>>> Lasso install on Sierra?
>>>>
>>>>
>>>> Laurent
>>>>
>>>> 2018-02-25 16:43 GMT-05:00 James Sheffer <james@higherpowered.com>:
>>>>> Doh!
>>>>>
>>>>> In my “hurridness", I was on another lasso server - no server admin :-(
>>>>>
>>>>>
>>>>>> On Feb 25, 2018, at 1:34 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>
>>>>>> Wow!
>>>>>>
>>>>>> I still get an internal server error but can now get into the server admin app now!
>>>>>>
>>>>>> James
>>>>>>
>>>>>>> On Feb 25, 2018, at 1:28 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>
>>>>>>> I now have this in the lasso errors file:
>>>>>>>
>>>>>>> [02/25/18 13:15:02] Restarted site process 1 default
>>>>>>> [02/25/18 14:54:38] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 583
>>>>>>>
>>>>>>> [02/25/18 14:54:40] Restarted site process 1 default
>>>>>>> [02/25/18 15:22:46] Initialize - Required
>>>>>>>
>>>>>>> James
>>>>>>>
>>>>>>>> On Feb 25, 2018, at 1:27 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>
>>>>>>>> Ok, turned SIP off. Same problem. I’m thinking with this off, I should reinstall Lasso and try again? Should I uninstall first?
>>>>>>>> Any other suggestions?
>>>>>>>>
>>>>>>>> Thanks again so much for the help!!!
>>>>>>>>
>>>>>>>> James
>>>>>>>>
>>>>>>>>> On Feb 25, 2018, at 11:45 AM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>>
>>>>>>>>> One other thing- Lasso is running according to activity monitor.
>>>>>>>>>
>>>>>>>>> Sent from my iPhone
>>>>>>>>>
>>>>>>>>>> On Feb 25, 2018, at 11:42 AM, James Sheffer <James@higherpowered.com> wrote:
>>>>>>>>>>
>>>>>>>>>> Forgive my ignorance but what is SIM?
>>>>>>>>>>
>>>>>>>>>> Sent from my iPhone
>>>>>>>>>>
>>>>>>>>>>> On Feb 25, 2018, at 11:18 AM, Steffan A. Cline <steffan@hldns.com> wrote:
>>>>>>>>>>>
>>>>>>>>>>> Did you turn off SIM?
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Steffan A. Cline
>>>>>>>>>>> steffan@hldns.com
>>>>>>>>>>> 602-793-0014
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>> On Feb 25, 2018, at 12:14 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>> Ok, I’m headed for trouble very quickly!
>>>>>>>>>>>>
>>>>>>>>>>>> I’m still trying to get Lasso 8.5.6 to run in Sierra (since people got it running in Sierra just the same as El Capitan, I upgraded the server to Sierra (not High Sierra!).
>>>>>>>>>>>>
>>>>>>>>>>>> I did the following:
>>>>>>>>>>>> - Installed snow leopard (8.5.6) and installed Lasso. Then upgraded through to Sierra.
>>>>>>>>>>>> - Made the changes from below. I had to change the lasso8.conf file:
>>>>>>>>>>>> LoadModule lasso8_module /usr/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>> To:
>>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.4.so
>>>>>>>>>>>> ** The Lasso8.conf file had /usr/libexec - I added the “local” which is where I put the connector file so Apache would load.
>>>>>>>>>>>>
>>>>>>>>>>>> Now Apache loads but I get an internal server error when trying to load a simple lasso page (no errors in the apachectl configtest)
>>>>>>>>>>>>
>>>>>>>>>>>> In lassoerrors.txt file, I have the following:
>>>>>>>>>>>>
>>>>>>>>>>>> [02/25/18 13:00:09] Restarted site process 1 default
>>>>>>>>>>>> [02/25/18 13:00:15] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 528
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Anyone have any ideas? I’ve got 2 more days to get this working or all authorize.net <http://authorize.net/> calls will fail :-)
>>>>>>>>>>>>
>>>>>>>>>>>> Should I re-run the installer for Lasso 8.5.6?
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> It’s very simple … after some research
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Lasso 8.6 on El Capitan
>>>>>>>>>>>>>>>>> ———————————
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Download the latest Lasso8 installer and run it.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Open the Terminal app.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Check if you have this folder: /usr/local/libexec
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> $ ls -l /usr/local/libexec/apache2
>>>>>>>>>>>>>>>>> total 792
>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 117008 11 okt 2015 Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 142468 11 okt 2015 Lasso8ConnectorforApache2.4.so
>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 44416 24 mrt 19:55 mod_lasso9-2.4.so
>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 34252 11 okt 2015 mod_lasso9.10.10.so
>>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 58428 11 okt 2015 mod_lasso9.so
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> If not, create it.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec
>>>>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec/apache2
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> and copy the 'Lasso8ConnectorforApache2.4.so' into that folder. Scan Lassotalk for a download link.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Look in /etc/apache2/httpd.conf and check the end of that file. It should have the following 3 lines:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> $ tail /etc/apache2/httpd.conf
>>>>>>>>>>>>>>>>> #Begin: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>>>> Include /private/etc/apache2/users/lasso8.conf
>>>>>>>>>>>>>>>>> #End: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Next, edit file /etc/apache2/users/lasso8.conf and look at the 'LoadModule’-line. It should look like this:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Change the 'Lasso8ConnectorforApache2.2.so' into 'Lasso8ConnectorforApache2.4.so'
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> For Lasso 8 to start when OS X starts, since Mac OS 10.10 you need a LaunchDaemon plist.
>>>>>>>>>>>>>>>>> Enter the following commands in Terminal:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> $ sudo vi /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>>>>>>>>>>> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
>>>>>>>>>>>>>>>>> <plist version="1.0">
>>>>>>>>>>>>>>>>> <dict>
>>>>>>>>>>>>>>>>> <key>RunAtLoad</key>
>>>>>>>>>>>>>>>>> <true/>
>>>>>>>>>>>>>>>>> <key>Label</key>
>>>>>>>>>>>>>>>>> <string>com.lassosoft.lasso8</string>
>>>>>>>>>>>>>>>>> <key>ProgramArguments</key>
>>>>>>>>>>>>>>>>> <array>
>>>>>>>>>>>>>>>>> <string>/Applications/Lasso Professional 8/LassoAdmin/Lasso8Service.sh</string>
>>>>>>>>>>>>>>>>> </array>
>>>>>>>>>>>>>>>>> </dict>
>>>>>>>>>>>>>>>>> </plist>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> $ sudo chown root:wheel /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>> $ sudo chmod 644 /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>> $ sudo launchctl load -w /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> That should do it.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> - -
>>>>>>>>>>>>>>>>> Regards,
>>>>>>>>>>>>>>>>> Marc Vos
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> James Sheffer
>>>>>>>>>>>> james@higherpowered.com
>>>>>>>>>>>> www.higherpowered.com
>>>>>>>>>>>> 469-256-0268
>>>>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> #############################################################
>>>>>>>>
>>>>>>>> This message is sent to you because you are subscribed to
>>>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>>>
>>>>>>>
>>>>>>> #############################################################
>>>>>>>
>>>>>>> This message is sent to you because you are subscribed to
>>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>>
>>>>>>
>>>>>> #############################################################
>>>>>>
>>>>>> This message is sent to you because you are subscribed to
>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>
>>>>>
>>>>> #############################################################
>>>>>
>>>>> This message is sent to you because you are subscribed to
>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>> Official list archives available at http://www.lassotalk.com
>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>> #############################################################
>>>>
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com <mailto:Lasso@lists.lassosoft.com>
> Official list archives available at http://www.lassotalk.com <http://www.lassotalk.com/>
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com <mailto:Lasso-unsubscribe@lists.lassosoft.com>>
> Send administrative queries to <Lasso-request@lists.lassosoft.com <mailto:Lasso-request@lists.lassosoft.com>>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Anyone want to unload their LassoGuide 9.2 Hardcover book? http://www.lassosoft.com/lassotalk?id=279928 Fri, 23 Mar 2018 01:46 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279928 There is a PDF for the latest version.
http://lassoguide.com/LassoGuide9.3.pdf

You could send the PDF to a local or online book printer.

--steve


On 3/23/18 at 12:15 AM, krettig@multirater.com (Keith M. Rettig) pronounced:

>Hopefully this is not an inappropriate question to ask here.
>Anyone out there not interested in keeping their copy of the
>"LassoGuide 9.2 Full Colour Hard Cover” book?
>
>If not, I would like to buy a copy from someone. I want to get
>better at using Lasso and I suspect the book will help.
>Contact me directly if you are interested in selling me your book.
>
>Keith.
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Anyone want to unload their LassoGuide 9.2 Hardcover book? http://www.lassosoft.com/lassotalk?id=279927 Fri, 23 Mar 2018 12:15 -0400 Keith M. Rettig http://www.lassosoft.com/lassotalk?id=279927 Hopefully this is not an inappropriate question to ask here.
Anyone out there not interested in keeping their copy of the "LassoGuide 9.2 Full Colour Hard Cover” book?

If not, I would like to buy a copy from someone. I want to get better at using Lasso and I suspect the book will help.
Contact me directly if you are interested in selling me your book.

Keith.

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: [OT] Spanish Characters in Windows http://www.lassosoft.com/lassotalk?id=279925 Mon, 12 Mar 2018 06:29 -0400 Jolle Carlestam http://www.lassosoft.com/lassotalk?id=279925 > 12 mars 2018 kl. 18:27 skrev Jolle Carlestam <jolle@carlestam.com>:
>
> ITF-8 WITHOUT BOM

UTF-8...

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: [OT] Spanish Characters in Windows http://www.lassosoft.com/lassotalk?id=279924 Mon, 12 Mar 2018 06:27 -0400 Jolle Carlestam http://www.lassosoft.com/lassotalk?id=279924 For future reference. This is the way to handle it in Lasso 8.X. For Lasso 9.X it is actually the reverse. Files should be saved as ITF-8 WITHOUT BOM.

:-)

HDB
Jolle

> 12 mars 2018 kl. 18:06 skrev Patrick Larkin <plarkin@basdschools.org>:
>
> Thanks. Just a matter of saving with UTF-8 BOM encoding in Notepad++ in Windows. Worked like a charm.


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 9 CentOS 7.4 not processing script syntax http://www.lassosoft.com/lassotalk?id=279926 Mon, 12 Mar 2018 01:37 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279926 Perhaps it is in compat for 8?

--steve


On 3/12/18 at 12:10 PM, jolle@carlestam.com (Jolle Carlestam) pronounced:

>This was fun.
>
>My experiments shows that the supported versions are indeed
><?lasso ... ?>
><?= ... ?>
>and
>[ ... ]
>
>So how come
><?lassoscript
>?>
>works?
>
>Well, my guess is that it’s because the Lasso interpreter is
>satisfied with the <?lasso as a clue. Whatever comes after that
>is treated as code. I tried for example
><?lassodate
>?>
>and it worked too.
>
>In any case I’m using a lot of <?lassoscript in my solutions
>and they have so far worked without issues on MacOS and Linux
>in different flavours and with different versions of Lasso 9.2-9.3X.
>
><lassoscript on the other hand is something I don’t use nor
>think has been advertised as should work.
>
>HDB
>Jolle
>
>
>>12 mars 2018 kl. 11:42 skrev Tim Taplin <taplin@accesstelluride.com>:
>>
>>Hmm.. I have several sites using <?LassoScript and <?lassoscript on Lasso 9.3 and MacOS
>>
>>I don’t do much on Linux, so its possible that support was not provided there ? Anyone
>able to clear this up ?
>>
>>Tim Taplin
>>
>>
>>> On Mar 10, 2018, at 2:56 PM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>>> <LassoScript … ?>
>>> or
>>> <?LassoScript … ?>
>>> <?lasso … ?> is supported, and <?LassoScript … ?> is omitted.
>>> http://lassoguide.com/language/calling-lasso.html#calling-lasso-web-pages
>>> --steve
>>> On 3/10/18 at 1:50 PM, subscriptions@pixenter.com (Ari
>>>Denison) pronounced:
>>>
>>>> I think I must be missing something obvious in lux or my
>>>>httpd config files, but in new server setup, but I can’t
>>>>get Lasso to process anything inside <LassoScript … ?> It
>will
>>>> only old square bracket [ ] syntax. My setup is a
>>>>minimal install of CentOS 7.4, with apache and Lasso 9.3x
>>>> Can someone help me understand why this might be
>>>>happening? - Ari
>>>> #############################################################
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>>>-- -- --
>>> Steve Piercy Website Builder Eugene, OR
>>> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>>> #############################################################
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com
>>Official list archives available at http://www.lassotalk.com
>>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: [OT] Spanish Characters in Windows http://www.lassosoft.com/lassotalk?id=279923 Mon, 12 Mar 2018 01:06 -0400 Patrick Larkin http://www.lassosoft.com/lassotalk?id=279923 Thanks. Just a matter of saving with UTF-8 BOM encoding in Notepad++ in Windows. Worked like a charm.


Patrick Larkin
Information Services
Bethlehem Area School District



> On Mar 12, 2018, at 12:53 PM, Bil Corry <bil@corry.biz> wrote:
>
> I'm not sure for Lasso 9, but in previous versions of Lasso, this is how
> character encoding of files are interpreted:
>
> http://www.lassosoft.com/Character-Sets-of-Lasso-Files
>
> For your case, if you're saving files in UTF-8, then add a BOM and they'll
> display correctly. If you're saving in MacRoman (default Mac encoding),
> then you'll either need to resave it into ISO-8859-1, or resave it into
> UTF-8 with a BOM.
>
> Or there may be other solutions too, hopefully others will chime in.
>
> - Bil
>
>
> On Mon, Mar 12, 2018 at 9:29 AM, Patrick Larkin <plarkin@basdschools.org>
> wrote:
>
>> Hello -
>>
>> A year or so ago, we had to transfer one of our Lasso servers from Mac to
>> Windows.
>>
>> We post a lot of Spanish language HTML. On the Mac, I used to be able to
>> just copy and paste Spanish that was given to me into a webpage and it just
>> worked keeping all the accents and special characters.
>>
>> On Windows 2008 Server R2, the characters get replaced by crazy
>> combinations of characters. Is there something I need to do in Windows to
>> make it work? I’ve been stumbling through replacing characters with ASCII
>> equiv codes but I have way to much text to do this any longer. Is there a
>> trick?
>>
>>
>>
>> Patrick Larkin
>> Information Services
>> Bethlehem Area School District
>>
>>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
[OT] Spanish Characters in Windows http://www.lassosoft.com/lassotalk?id=279921 Mon, 12 Mar 2018 12:29 -0400 Patrick Larkin http://www.lassosoft.com/lassotalk?id=279921 Hello -

A year or so ago, we had to transfer one of our Lasso servers from Mac to Windows.

We post a lot of Spanish language HTML. On the Mac, I used to be able to just copy and paste Spanish that was given to me into a webpage and it just worked keeping all the accents and special characters.

On Windows 2008 Server R2, the characters get replaced by crazy combinations of characters. Is there something I need to do in Windows to make it work? I’ve been stumbling through replacing characters with ASCII equiv codes but I have way to much text to do this any longer. Is there a trick?



Patrick Larkin
Information Services
Bethlehem Area School District




#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 9 CentOS 7.4 not processing script syntax http://www.lassosoft.com/lassotalk?id=279920 Mon, 12 Mar 2018 12:10 -0400 Jolle Carlestam http://www.lassosoft.com/lassotalk?id=279920 This was fun.

My experiments shows that the supported versions are indeed
<?lasso ... ?>
<?= ... ?>
and
[ ... ]

So how come
<?lassoscript
?>
works?

Well, my guess is that it’s because the Lasso interpreter is satisfied with the <?lasso as a clue. Whatever comes after that is treated as code. I tried for example
<?lassodate
?>
and it worked too.

In any case I’m using a lot of <?lassoscript in my solutions and they have so far worked without issues on MacOS and Linux in different flavours and with different versions of Lasso 9.2-9.3X.

<lassoscript on the other hand is something I don’t use nor think has been advertised as should work.

HDB
Jolle


> 12 mars 2018 kl. 11:42 skrev Tim Taplin <taplin@accesstelluride.com>:
>
> Hmm.. I have several sites using <?LassoScript and <?lassoscript on Lasso 9.3 and MacOS
>
> I don’t do much on Linux, so its possible that support was not provided there ? Anyone able to clear this up ?
>
> Tim Taplin
>
>
>> On Mar 10, 2018, at 2:56 PM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>>
>> <LassoScript … ?>
>>
>> or
>>
>> <?LassoScript … ?>
>>
>> <?lasso … ?> is supported, and <?LassoScript … ?> is omitted.
>>
>> http://lassoguide.com/language/calling-lasso.html#calling-lasso-web-pages
>>
>> --steve
>>
>>
>> On 3/10/18 at 1:50 PM, subscriptions@pixenter.com (Ari Denison) pronounced:
>>
>>> I think I must be missing something obvious in lux or my httpd config files, but in new
>>> server setup, but I can’t get Lasso to process anything inside <LassoScript … ?> It will
>>> only old square bracket [ ] syntax.
>>>
>>> My setup is a minimal install of CentOS 7.4, with apache and Lasso 9.3x
>>>
>>> Can someone help me understand why this might be happening?
>>>
>>> - Ari
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>> Steve Piercy Website Builder Eugene, OR
>> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: -returnfield causing Filemaker error connecting to FMS16 http://www.lassosoft.com/lassotalk?id=279916 Mon, 12 Mar 2018 11:45 -0400 Jolle Carlestam http://www.lassosoft.com/lassotalk?id=279916 12 mars 2018 kl. 11:39 skrev Tim Taplin <taplin@accesstelluride.com>:
>
> Trying to track down why database queries seem to be able to write to but not read from Filemaker16 Server db’s.
>
> Narrowed down to inlines containing -returnfield trigger an error on the Filemaker side.
>
> I notice from an archeological dig thru LassoTalk archives that apparently returnfield doesn’t do anything for Filemaker datasource anyway, but I would expect it to either silently do nothing, or popup a Lasso error so that we know what’s going on.
>
> Any thoughts or workarounds known ?

In theory, should it not work with DS instead of inlines?

HDB
Jolle

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: [OT] Spanish Characters in Windows http://www.lassosoft.com/lassotalk?id=279922 Mon, 12 Mar 2018 09:53 -0400 Bil Corry http://www.lassosoft.com/lassotalk?id=279922 I'm not sure for Lasso 9, but in previous versions of Lasso, this is how
character encoding of files are interpreted:

http://www.lassosoft.com/Character-Sets-of-Lasso-Files

For your case, if you're saving files in UTF-8, then add a BOM and they'll
display correctly. If you're saving in MacRoman (default Mac encoding),
then you'll either need to resave it into ISO-8859-1, or resave it into
UTF-8 with a BOM.

Or there may be other solutions too, hopefully others will chime in.

- Bil


On Mon, Mar 12, 2018 at 9:29 AM, Patrick Larkin <plarkin@basdschools.org>
wrote:

> Hello -
>
> A year or so ago, we had to transfer one of our Lasso servers from Mac to
> Windows.
>
> We post a lot of Spanish language HTML. On the Mac, I used to be able to
> just copy and paste Spanish that was given to me into a webpage and it just
> worked keeping all the accents and special characters.
>
> On Windows 2008 Server R2, the characters get replaced by crazy
> combinations of characters. Is there something I need to do in Windows to
> make it work? I’ve been stumbling through replacing characters with ASCII
> equiv codes but I have way to much text to do this any longer. Is there a
> trick?
>
>
>
> Patrick Larkin
> Information Services
> Bethlehem Area School District
>
>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: -returnfield causing Filemaker error connecting to FMS16 http://www.lassosoft.com/lassotalk?id=279919 Mon, 12 Mar 2018 05:03 -0400 Tim Taplin http://www.lassosoft.com/lassotalk?id=279919 Digging a bit deeper into the Filemaker error and comparing the xml query string to some documentation on Filemaker’s Web Publishing, it looks like Lasso is turning the -returnfield keyword into a -field “query parameter” in Filemaker’s xml query syntax, and that parameter is intended to be used in accessing data in container fields.

Still no useful error is displayed, or logged, and no explanation why this worked up until we upgraded from FM11 to FM16. I see the same information in the FM10 documentation as in the FM16 documentation.

Tim Taplin

> On Mar 12, 2018, at 4:54 AM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>
> On 3/12/18 at 11:45 AM, jolle@carlestam.com (Jolle Carlestam) pronounced:
>
>> In theory, should it not work with DS instead of inlines?
>
> ds does not support FM queries, just SQL queries.
>
> AFAIK, FM does not support SQL queries into its datasource, only from FM to external SQL datasources.
>
> --steve
>
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> Steve Piercy Website Builder Eugene, OR
> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 9 CentOS 7.4 not processing script syntax http://www.lassosoft.com/lassotalk?id=279915 Mon, 12 Mar 2018 04:42 -0400 Tim Taplin http://www.lassosoft.com/lassotalk?id=279915 Hmm.. I have several sites using <?LassoScript and <?lassoscript on Lasso 9.3 and MacOS

I don’t do much on Linux, so its possible that support was not provided there ? Anyone able to clear this up ?

Tim Taplin


> On Mar 10, 2018, at 2:56 PM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>
> <LassoScript … ?>
>
> or
>
> <?LassoScript … ?>
>
> <?lasso … ?> is supported, and <?LassoScript … ?> is omitted.
>
> http://lassoguide.com/language/calling-lasso.html#calling-lasso-web-pages
>
> --steve
>
>
> On 3/10/18 at 1:50 PM, subscriptions@pixenter.com (Ari Denison) pronounced:
>
>> I think I must be missing something obvious in lux or my httpd config files, but in new
>> server setup, but I can’t get Lasso to process anything inside <LassoScript … ?> It will
>> only old square bracket [ ] syntax.
>>
>> My setup is a minimal install of CentOS 7.4, with apache and Lasso 9.3x
>>
>> Can someone help me understand why this might be happening?
>>
>> - Ari
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> Steve Piercy Website Builder Eugene, OR
> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
-returnfield causing Filemaker error connecting to FMS16 http://www.lassosoft.com/lassotalk?id=279914 Mon, 12 Mar 2018 04:39 -0400 Tim Taplin http://www.lassosoft.com/lassotalk?id=279914 Trying to track down why database queries seem to be able to write to but not read from Filemaker16 Server db’s.

Narrowed down to inlines containing -returnfield trigger an error on the Filemaker side.

I notice from an archeological dig thru LassoTalk archives that apparently returnfield doesn’t do anything for Filemaker datasource anyway, but I would expect it to either silently do nothing, or popup a Lasso error so that we know what’s going on.

Any thoughts or workarounds known ?

Thanks

Tim Taplin


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: -returnfield causing Filemaker error connecting to FMS16 http://www.lassosoft.com/lassotalk?id=279918 Mon, 12 Mar 2018 03:54 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279918 On 3/12/18 at 11:45 AM, jolle@carlestam.com (Jolle Carlestam) pronounced:

>In theory, should it not work with DS instead of inlines?

ds does not support FM queries, just SQL queries.

AFAIK, FM does not support SQL queries into its datasource, only
from FM to external SQL datasources.

--steve

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: -returnfield causing Filemaker error connecting to FMS16 http://www.lassosoft.com/lassotalk?id=279917 Mon, 12 Mar 2018 03:49 -0400 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279917 Create a new layout containing only the fields that you want to
return, and update your inline -table or -layout parameter
accordingly. Requires code rewrite, but it will improve
performance since less data gets serialized and returned.

--steve


On 3/12/18 at 4:39 AM, taplin@accesstelluride.com (Tim Taplin) pronounced:

>Trying to track down why database queries seem to be able to
>write to but not read from Filemaker16 Server db’s.
>Narrowed down to inlines containing -returnfield trigger an
>error on the Filemaker side.
>I notice from an archeological dig thru LassoTalk archives that
>apparently returnfield doesn’t do anything for Filemaker
>datasource anyway, but I would expect it to either silently do
>nothing, or popup a Lasso error so that we know what’s going on.
>
>Any thoughts or workarounds known ?
>Thanks
>
>Tim Taplin
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 9 CentOS 7.4 not processing script syntax http://www.lassosoft.com/lassotalk?id=279913 Sat, 10 Mar 2018 03:12 -0500 Ari Denison http://www.lassosoft.com/lassotalk?id=279913 Originally written in 8 then converted to earlier installs 9, and I swear that includes earlier installs of 9.3. It worked in those earlier installs of 9 but not the version I just installed. That’s why I figured there might be a setting I missed. Oh well, easy enough fix with find/replace in bbedit. :)

Thanks again.

> On Mar 10, 2018, at 2:36 PM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>
> I don't know.
>
> Were your files written for Lasso 8? Lasso 8 syntax is mostly compatible with Lasso 9, yet not entirely. The idiosyncratic differences will cause no end in frustration, none of which are documented in an upgrade guide.
>
> --steve
>
>
> On 3/10/18 at 2:03 PM, subscriptions@pixenter.com (Ari Denison) pronounced:
>
>> Ok, thank you. When did this happen? I have thousands and thousands of <?LassoScript pages that have been running for years.
>> Do I need to convert my old <?LassoScript pages to <?Lasso or is there some sort of compatibility mode I can use to enable legacy support of LassoScript?
>> Thanks for the heads up, but I really am wondering why and when this change was made. Seems arbitrary, not that such changes are unusual in languages.
>>
>>
>>> On Mar 10, 2018, at 1:56 PM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>>>
>>> <LassoScript … ?>
>>>
>>> or
>>>
>>> <?LassoScript … ?>
>>>
>>> <?lasso … ?> is supported, and <?LassoScript … ?> is omitted.
>>>
>>> http://lassoguide.com/language/calling-lasso.html#calling-lasso-web-pages
>>>
>>> --steve
>>>
>>>
>>> On 3/10/18 at 1:50 PM, subscriptions@pixenter.com (Ari Denison) pronounced:
>>>
>>>> I think I must be missing something obvious in lux or my httpd config files, but in new server setup, but I can’t get Lasso to process anything inside <LassoScript … ?> It will only old square bracket [ ] syntax. My setup is a minimal install of CentOS 7.4, with apache and Lasso 9.3x
>>>> Can someone help me understand why this might be happening? - Ari
>>>> #############################################################
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>>> Steve Piercy Website Builder Eugene, OR
>>> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>>>
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> Steve Piercy Website Builder Eugene, OR
> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 9 CentOS 7.4 not processing script syntax http://www.lassosoft.com/lassotalk?id=279912 Sat, 10 Mar 2018 02:36 -0500 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279912 I don't know.

Were your files written for Lasso 8? Lasso 8 syntax is mostly
compatible with Lasso 9, yet not entirely. The idiosyncratic
differences will cause no end in frustration, none of which are
documented in an upgrade guide.

--steve


On 3/10/18 at 2:03 PM, subscriptions@pixenter.com (Ari Denison) pronounced:

>Ok, thank you. When did this happen? I have thousands and
>thousands of <?LassoScript pages that have been running for years.
>Do I need to convert my old <?LassoScript pages to <?Lasso or
>is there some sort of compatibility mode I can use to enable
>legacy support of LassoScript?
>Thanks for the heads up, but I really am wondering why and when
>this change was made. Seems arbitrary, not that such changes
>are unusual in languages.
>
>
>>On Mar 10, 2018, at 1:56 PM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>>
>><LassoScript … ?>
>>
>>or
>>
>><?LassoScript … ?>
>>
>><?lasso … ?> is supported, and <?LassoScript … ?> is omitted.
>>
>>http://lassoguide.com/language/calling-lasso.html#calling-lasso-web-pages
>>
>>--steve
>>
>>
>>On 3/10/18 at 1:50 PM, subscriptions@pixenter.com (Ari Denison) pronounced:
>>
>>> I think I must be missing something obvious in lux or my
>>>httpd config files, but in new server setup, but I can’t
>>>get Lasso to process anything inside <LassoScript … ?> It
>>>will only old square bracket [ ] syntax. My setup is a
>>>minimal install of CentOS 7.4, with apache and Lasso 9.3x
>>> Can someone help me understand why this might be
>>>happening? - Ari
>>> #############################################################
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
>>Steve Piercy Website Builder Eugene, OR
>><web@stevepiercy.com> <http://www.stevepiercy.com/>
>>
>>
>>#############################################################
>>
>>This message is sent to you because you are subscribed to
>>the mailing list Lasso Lasso@lists.lassosoft.com
>>Official list archives available at http://www.lassotalk.com
>>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
>#############################################################
>
>This message is sent to you because you are subscribed to
>the mailing list Lasso Lasso@lists.lassosoft.com
>Official list archives available at http://www.lassotalk.com
>To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 9 CentOS 7.4 not processing script syntax http://www.lassosoft.com/lassotalk?id=279911 Sat, 10 Mar 2018 02:03 -0500 Ari Denison http://www.lassosoft.com/lassotalk?id=279911 Ok, thank you. When did this happen? I have thousands and thousands of <?LassoScript pages that have been running for years.

Do I need to convert my old <?LassoScript pages to <?Lasso or is there some sort of compatibility mode I can use to enable legacy support of LassoScript?

Thanks for the heads up, but I really am wondering why and when this change was made. Seems arbitrary, not that such changes are unusual in languages.



> On Mar 10, 2018, at 1:56 PM, Steve Piercy - Website Builder <web@stevepiercy.com> wrote:
>
> <LassoScript … ?>
>
> or
>
> <?LassoScript … ?>
>
> <?lasso … ?> is supported, and <?LassoScript … ?> is omitted.
>
> http://lassoguide.com/language/calling-lasso.html#calling-lasso-web-pages
>
> --steve
>
>
> On 3/10/18 at 1:50 PM, subscriptions@pixenter.com (Ari Denison) pronounced:
>
>> I think I must be missing something obvious in lux or my httpd config files, but in new
>> server setup, but I can’t get Lasso to process anything inside <LassoScript … ?> It will
>> only old square bracket [ ] syntax.
>>
>> My setup is a minimal install of CentOS 7.4, with apache and Lasso 9.3x
>>
>> Can someone help me understand why this might be happening?
>>
>> - Ari
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
> Steve Piercy Website Builder Eugene, OR
> <web@stevepiercy.com> <http://www.stevepiercy.com/>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 9 CentOS 7.4 not processing script syntax http://www.lassosoft.com/lassotalk?id=279910 Sat, 10 Mar 2018 01:56 -0500 Steve Piercy - Website Builder http://www.lassosoft.com/lassotalk?id=279910 <LassoScript … ?>

or

<?LassoScript … ?>

<?lasso … ?> is supported, and <?LassoScript … ?> is omitted.

http://lassoguide.com/language/calling-lasso.html#calling-lasso-web-pages

--steve


On 3/10/18 at 1:50 PM, subscriptions@pixenter.com (Ari Denison) pronounced:

> I think I must be missing something obvious in lux or my httpd config files, but in new
> server setup, but I can’t get Lasso to process anything inside <LassoScript … ?> It will
> only old square bracket [ ] syntax.
>
> My setup is a minimal install of CentOS 7.4, with apache and Lasso 9.3x
>
> Can someone help me understand why this might be happening?
>
> - Ari
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Steve Piercy Website Builder Eugene, OR
<web@stevepiercy.com> <http://www.stevepiercy.com/>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Lasso 9 CentOS 7.4 not processing script syntax http://www.lassosoft.com/lassotalk?id=279909 Sat, 10 Mar 2018 01:50 -0500 Ari Denison http://www.lassosoft.com/lassotalk?id=279909 I think I must be missing something obvious in lux or my httpd config files, but in new server setup, but I can’t get Lasso to process anything inside <LassoScript … ?> It will only old square bracket [ ] syntax.

My setup is a minimal install of CentOS 7.4, with apache and Lasso 9.3x

Can someone help me understand why this might be happening?

- Ari

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Need help setting up Apache & Lasso 9.3.1-4 on MacOS 10.13.3 http://www.lassosoft.com/lassotalk?id=279908 Fri, 09 Mar 2018 09:00 -0500 Jolle Carlestam http://www.lassosoft.com/lassotalk?id=279908 I can probably help you. What time zone are you in? I’m in Central European (GMT+1)

HDB
Jolle

Sent from a mobile device. Any anomalies is due to Autocorrect.

> 9 mars 2018 kl. 08:40 skrev Keith M. Rettig <krettig@multirater.com>:
>
> If you are capable and interested in being paid to help get this thing up and running, please message me directly.
> Let me know your rate and how you propose to share the computer while you teach/show me what to do. [I am planning to create two more machines with same set up]
>
> I connect to Filemaker if it interests you.
> I probably need 60/40 help with Apache/Lasso.
> For instance I would like to give multiple users access to their, and only their, web site.
>
> I am already running Lasso 9.2 on Apache on MacOS 10.7.5 for years.
>
> I emailed Lasso support to take one of their group courses. But given the recent discussion about their decreased efforts, I figured I would hedge and also ask the community in case they don’t get back to me.
>
> Thanks,
> Keith.
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Need help setting up Apache & Lasso 9.3.1-4 on MacOS 10.13.3 http://www.lassosoft.com/lassotalk?id=279907 Thu, 08 Mar 2018 11:40 -0500 Keith M. Rettig http://www.lassosoft.com/lassotalk?id=279907 If you are capable and interested in being paid to help get this thing up and running, please message me directly.
Let me know your rate and how you propose to share the computer while you teach/show me what to do. [I am planning to create two more machines with same set up]

I connect to Filemaker if it interests you.
I probably need 60/40 help with Apache/Lasso.
For instance I would like to give multiple users access to their, and only their, web site.

I am already running Lasso 9.2 on Apache on MacOS 10.7.5 for years.

I emailed Lasso support to take one of their group courses. But given the recent discussion about their decreased efforts, I figured I would hedge and also ask the community in case they don’t get back to me.

Thanks,
Keith.

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: JDBC debugging http://www.lassosoft.com/lassotalk?id=279906 Wed, 07 Mar 2018 05:05 -0500 French, Shelane http://www.lassosoft.com/lassotalk?id=279906 I just asked the DBA to change the password to the one I had for the old server with this user account. After he did, I was able to connect. So even though I created a "new connection," it's as if the password was cached somewhere and the old password was being submitted.




Shelane French
Workforce Enablement
Livermore Information Technology
On 3/5/18, 12:57 PM, "lasso-bounces@lists.lassosoft.com on behalf of French, Shelane" <lasso-bounces@lists.lassosoft.com on behalf of french8@llnl.gov> wrote:

So, I forgot to disclaim. I am on Lasso 8.6.3. I see the error log in the Lasso Admin and I'm not sure where else to look.

I entered the username and password that the DBA gave me. He verified while looking at Lasso Admin that it was the correct login information. He made sure the account was not locked before I hit the "update" button on the host connection information.



Shelane French
Workforce Enablement
Livermore Information Technology

On 3/5/18, 12:54 PM, "lasso-bounces@lists.lassosoft.com on behalf of Ke Carlton" <lasso-bounces@lists.lassosoft.com on behalf of ke@zeroloop.com> wrote:

Google says:

"ORA-28000: the account is locked.

Cause: The user has entered wrong password consequently for maximum number
of times specified by the user"s profile parameter FAILED_LOGIN_ATTEMPTS,
or the DBA has locked the account

Action: Wait for PASSWORD_LOCK_TIME or contact DBA"


Did you receive this error immediately or after several attempts?


On Tue, Mar 6, 2018 at 7:02 AM French, Shelane <french8@llnl.gov> wrote:

> The database team is migrating the one Oracle database that I access to a
> new server. So, they’ve set me up an account to access the test databases
> on the new server. I have done all previous connections through JDBC. They
> sent me the updated account info, passwords, and JDBC connection string.
>
> jdbc:oracle:thin:@ldap://
> dbserver.llnl.gov:389/pspre,cn=OracleContext,dc=llnl,dc=gov
>
> The error log shows two different errors:
>
> JDBC Error: ORA-28000: the account is locked
> JDBC Error: Could not retrieve connection info from pool
>
> How can I do better debugging to find out what's going on? I just did a
> WebEx with the dba. He said the connection string, username, and password
> were correct. He was also showing that the account was getting locked from
> "too many bad" requests.
>
>
>
> Shelane French
> Workforce Enablement
> Livermore Information Technology
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
RE: Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279905 Wed, 07 Mar 2018 05:02 -0500 Jon Harris http://www.lassosoft.com/lassotalk?id=279905 We put:

lower_case_table_names = 1

in our /etc/my.cnf, to sort out case issues from a mysql server moved from Windows to Centos.

HTH
Jon


-----Original Message-----
From: lasso-bounces@lists.lassosoft.com [mailto:lasso-bounces@lists.lassosoft.com] On Behalf Of Bil Corry
Sent: 07 March 2018 04:05 PM
To: lasso@lists.lassosoft.com
Subject: Re: Lasso 8.6.3 connectivity issue with MySQL

I concur - I would try using an uppercase PDI and see if that fixes it.

- Bil

On Mon, Mar 5, 2018 at 2:39 PM, Ke Carlton <ke@zeroloop.com> wrote:

> On some linux / MySQL configurations databases and table names can be
> case sensitive.
>
> You should try specifying the database in the correct case.
>
> On Tue, Mar 6, 2018 at 10:27 AM Robert Givens <rwg@imagers.com> wrote:
>
> >
> > The only thing that looks suspicious is the difference in case for
> > the database PDI, which is supposed to be uppercase.
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com Official list
> archives available at http://www.lassotalk.com To unsubscribe, E-mail
> to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com Official list archives available at http://www.lassotalk.com To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279904 Wed, 07 Mar 2018 09:04 -0500 Bil Corry http://www.lassosoft.com/lassotalk?id=279904 I concur - I would try using an uppercase PDI and see if that fixes it.

- Bil

On Mon, Mar 5, 2018 at 2:39 PM, Ke Carlton <ke@zeroloop.com> wrote:

> On some linux / MySQL configurations databases and table names can be case
> sensitive.
>
> You should try specifying the database in the correct case.
>
> On Tue, Mar 6, 2018 at 10:27 AM Robert Givens <rwg@imagers.com> wrote:
>
> >
> > The only thing that looks suspicious is the difference in case for the
> > database PDI, which is supposed to be uppercase.
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279901 Mon, 05 Mar 2018 09:39 -0500 Ke Carlton http://www.lassosoft.com/lassotalk?id=279901 On some linux / MySQL configurations databases and table names can be case
sensitive.

You should try specifying the database in the correct case.

On Tue, Mar 6, 2018 at 10:27 AM Robert Givens <rwg@imagers.com> wrote:

>
> The only thing that looks suspicious is the difference in case for the
> database PDI, which is supposed to be uppercase.

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: JDBC debugging http://www.lassosoft.com/lassotalk?id=279898 Mon, 05 Mar 2018 08:56 -0500 French, Shelane http://www.lassosoft.com/lassotalk?id=279898 So, I forgot to disclaim. I am on Lasso 8.6.3. I see the error log in the Lasso Admin and I'm not sure where else to look.

I entered the username and password that the DBA gave me. He verified while looking at Lasso Admin that it was the correct login information. He made sure the account was not locked before I hit the "update" button on the host connection information.



Shelane French
Workforce Enablement
Livermore Information Technology

On 3/5/18, 12:54 PM, "lasso-bounces@lists.lassosoft.com on behalf of Ke Carlton" <lasso-bounces@lists.lassosoft.com on behalf of ke@zeroloop.com> wrote:

Google says:

"ORA-28000: the account is locked.

Cause: The user has entered wrong password consequently for maximum number
of times specified by the user"s profile parameter FAILED_LOGIN_ATTEMPTS,
or the DBA has locked the account

Action: Wait for PASSWORD_LOCK_TIME or contact DBA"


Did you receive this error immediately or after several attempts?


On Tue, Mar 6, 2018 at 7:02 AM French, Shelane <french8@llnl.gov> wrote:

> The database team is migrating the one Oracle database that I access to a
> new server. So, they’ve set me up an account to access the test databases
> on the new server. I have done all previous connections through JDBC. They
> sent me the updated account info, passwords, and JDBC connection string.
>
> jdbc:oracle:thin:@ldap://
> dbserver.llnl.gov:389/pspre,cn=OracleContext,dc=llnl,dc=gov
>
> The error log shows two different errors:
>
> JDBC Error: ORA-28000: the account is locked
> JDBC Error: Could not retrieve connection info from pool
>
> How can I do better debugging to find out what's going on? I just did a
> WebEx with the dba. He said the connection string, username, and password
> were correct. He was also showing that the account was getting locked from
> "too many bad" requests.
>
>
>
> Shelane French
> Workforce Enablement
> Livermore Information Technology
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: JDBC debugging http://www.lassosoft.com/lassotalk?id=279897 Mon, 05 Mar 2018 08:53 -0500 Ke Carlton http://www.lassosoft.com/lassotalk?id=279897 Google says:

"ORA-28000: the account is locked.

Cause: The user has entered wrong password consequently for maximum number
of times specified by the user"s profile parameter FAILED_LOGIN_ATTEMPTS,
or the DBA has locked the account

Action: Wait for PASSWORD_LOCK_TIME or contact DBA"


Did you receive this error immediately or after several attempts?


On Tue, Mar 6, 2018 at 7:02 AM French, Shelane <french8@llnl.gov> wrote:

> The database team is migrating the one Oracle database that I access to a
> new server. So, they’ve set me up an account to access the test databases
> on the new server. I have done all previous connections through JDBC. They
> sent me the updated account info, passwords, and JDBC connection string.
>
> jdbc:oracle:thin:@ldap://
> dbserver.llnl.gov:389/pspre,cn=OracleContext,dc=llnl,dc=gov
>
> The error log shows two different errors:
>
> JDBC Error: ORA-28000: the account is locked
> JDBC Error: Could not retrieve connection info from pool
>
> How can I do better debugging to find out what's going on? I just did a
> WebEx with the dba. He said the connection string, username, and password
> were correct. He was also showing that the account was getting locked from
> "too many bad" requests.
>
>
>
> Shelane French
> Workforce Enablement
> Livermore Information Technology
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
JDBC debugging http://www.lassosoft.com/lassotalk?id=279896 Mon, 05 Mar 2018 06:02 -0500 French, Shelane http://www.lassosoft.com/lassotalk?id=279896 The database team is migrating the one Oracle database that I access to a new server. So, they’ve set me up an account to access the test databases on the new server. I have done all previous connections through JDBC. They sent me the updated account info, passwords, and JDBC connection string.

jdbc:oracle:thin:@ldap://dbserver.llnl.gov:389/pspre,cn=OracleContext,dc=llnl,dc=gov

The error log shows two different errors:

JDBC Error: ORA-28000: the account is locked
JDBC Error: Could not retrieve connection info from pool

How can I do better debugging to find out what's going on? I just did a WebEx with the dba. He said the connection string, username, and password were correct. He was also showing that the account was getting locked from "too many bad" requests.



Shelane French
Workforce Enablement
Livermore Information Technology


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279900 Mon, 05 Mar 2018 04:38 -0500 Mason Miller http://www.lassosoft.com/lassotalk?id=279900 There is an age old problem with Lasso’s ability to do DNS lookups dying until a restart. Have you tried 127.0.0.1 instead of localhost?

Mason

> On Mar 5, 2018, at 4:27 PM, Robert Givens <rwg@imagers.com> wrote:
>
>> On Mar 1, 2018, at 10:22 PM, lasso-request@lists.lassosoft.com wrote:
>>
>> Perhaps there's something here that can help?
>>
>> https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should <https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should>
>>
>> What do the MySQL logs show?
>>
>>
>> - Bil
>
> Bil, thanks for the link. The symptom seemed the seem although their issues were caused by copying a database which was not the case here.
>
> No errors are logged in the error log.
> I set a general log in my.cnf.
> In comparing the PHP vs the Lasso call. They are very similar:
>
> PHP
> 2018-03-05T20:53:19.106598Z 25 Connect root@localhost on PDI using Socket
> 2018-03-05T20:53:19.106806Z 25 Query SELECT * FROM templates
> 2018-03-05T20:53:19.199382Z 25 Quit
>
> Lasso
> 2018-03-05T20:53:22.518152Z 26 Connect root@localhost on using Socket
> 2018-03-05T20:53:22.518224Z 26 Init DB pdi
> 2018-03-05T20:53:22.518299Z 26 Query SELECT * FROM templates
> 2018-03-05T20:53:22.518458Z 26 Quit
>
> The only thing that looks suspicious is the difference in case for the database PDI, which is supposed to be uppercase. I suspect that if I restarted the server to fix the issue then the log entries for the same PHP and lasso tests would be identical. But for now I’m not restarting the server so that I might find the root cause to this.
>
> Any ideas on what I should look at next?
>
> ~ Robert
>
>
>>
>>
>> On Mon, Feb 26, 2018 at 10:25 AM, Robert Givens <rwg@imagers.com <mailto:rwg@imagers.com>> wrote:
>>
>>> Hi,
>>> I?m in need of help with an Lasso 8.6.3 connectivity issue with MySQL.
>>>
>>> Lasso can no longer access MySQL records until server is restarted, where
>>> it was able to access a MySQL database and multiple tables within without
>>> issue.
>>>
>>> Running Lasso 8.6.3 on CentOS 6.9, MySQL 5.7.20, AWS t2.small instance
>>>
>>> Found this in the Lasso Error logs: Error: MySQLDS: error from mysql: 1146
>>> Table 'pdi.templates' doesn't exist. The same error message appears for all
>>> tables lasso attempts to query.
>>>
>>> What I?ve tried.
>>> * Verified that the tables lasso is reporting as missing do exist with
>>> records in MySQL.
>>> * Verified that PHP can access the same table and records with identical
>>> query not working for Lasso
>>> * Restarting MySQL - Doesn?t fix the issues
>>> * Restarting Lasso - Doesn?t fix the issues
>>> * Restarting the server - Fixes the issue but only temporally.
>>>
>>>
>>> What might have triggered this issue. These are the only two actions that
>>> I?m fairly certain caused the problem, but it has occurred a half dozen
>>> times since setting up this server in November 2017.
>>> * Restarting Apache service after updating http.conf with a new secure
>>> certificate. Prior to the restart the server ran for two weeks without
>>> issue.
>>> * Adding a field to a MySQL table via Lasso Database browser.
>>>
>>> What might be the root cause of this issue?
>>>
>>> Thank you,
>>>
>>> Robert W. Givens
>>> IMAGERS | Senior Web Developer
>>> 1575 Northside Drive #490 | Atlanta GA 30318
>>> Direct: 404.605.8339 | robert@imagers.com <mailto:robert@imagers.com> <mailto:ben@imagers.com <mailto:ben@imagers.com>>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

Mason Miller

miller@listingstogo.com
https://www.listingstogo.com/

miller@sitewelder.com
https://www.sitewelder.com/

703-626-5532 cell



#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279899 Mon, 05 Mar 2018 04:27 -0500 Robert Givens http://www.lassosoft.com/lassotalk?id=279899 > On Mar 1, 2018, at 10:22 PM, lasso-request@lists.lassosoft.com wrote:
>
> Perhaps there's something here that can help?
>
> https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should <https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should>
>
> What do the MySQL logs show?
>
>
> - Bil

Bil, thanks for the link. The symptom seemed the seem although their issues were caused by copying a database which was not the case here.

No errors are logged in the error log.
I set a general log in my.cnf.
In comparing the PHP vs the Lasso call. They are very similar:

PHP
2018-03-05T20:53:19.106598Z 25 Connect root@localhost on PDI using Socket
2018-03-05T20:53:19.106806Z 25 Query SELECT * FROM templates
2018-03-05T20:53:19.199382Z 25 Quit

Lasso
2018-03-05T20:53:22.518152Z 26 Connect root@localhost on using Socket
2018-03-05T20:53:22.518224Z 26 Init DB pdi
2018-03-05T20:53:22.518299Z 26 Query SELECT * FROM templates
2018-03-05T20:53:22.518458Z 26 Quit

The only thing that looks suspicious is the difference in case for the database PDI, which is supposed to be uppercase. I suspect that if I restarted the server to fix the issue then the log entries for the same PHP and lasso tests would be identical. But for now I’m not restarting the server so that I might find the root cause to this.

Any ideas on what I should look at next?

~ Robert


>
>
> On Mon, Feb 26, 2018 at 10:25 AM, Robert Givens <rwg@imagers.com <mailto:rwg@imagers.com>> wrote:
>
>> Hi,
>> I?m in need of help with an Lasso 8.6.3 connectivity issue with MySQL.
>>
>> Lasso can no longer access MySQL records until server is restarted, where
>> it was able to access a MySQL database and multiple tables within without
>> issue.
>>
>> Running Lasso 8.6.3 on CentOS 6.9, MySQL 5.7.20, AWS t2.small instance
>>
>> Found this in the Lasso Error logs: Error: MySQLDS: error from mysql: 1146
>> Table 'pdi.templates' doesn't exist. The same error message appears for all
>> tables lasso attempts to query.
>>
>> What I?ve tried.
>> * Verified that the tables lasso is reporting as missing do exist with
>> records in MySQL.
>> * Verified that PHP can access the same table and records with identical
>> query not working for Lasso
>> * Restarting MySQL - Doesn?t fix the issues
>> * Restarting Lasso - Doesn?t fix the issues
>> * Restarting the server - Fixes the issue but only temporally.
>>
>>
>> What might have triggered this issue. These are the only two actions that
>> I?m fairly certain caused the problem, but it has occurred a half dozen
>> times since setting up this server in November 2017.
>> * Restarting Apache service after updating http.conf with a new secure
>> certificate. Prior to the restart the server ran for two weeks without
>> issue.
>> * Adding a field to a MySQL table via Lasso Database browser.
>>
>> What might be the root cause of this issue?
>>
>> Thank you,
>>
>> Robert W. Givens
>> IMAGERS | Senior Web Developer
>> 1575 Northside Drive #490 | Atlanta GA 30318
>> Direct: 404.605.8339 | robert@imagers.com <mailto:robert@imagers.com> <mailto:ben@imagers.com <mailto:ben@imagers.com>>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279903 Mon, 05 Mar 2018 03:52 -0500 Robert Givens http://www.lassosoft.com/lassotalk?id=279903 >
> There is an age old problem with Lasso?s ability to do DNS lookups dying until a restart. Have you tried 127.0.0.1 instead of localhost?
>
> Mason

Originally the host was set to 127.0.0.1. I changed it to localhost which is how PHP is accessing the database. The issue occurs when host is configured for either 127.0.0.1 or localhost.

~ Robert

>
>> On Mar 5, 2018, at 4:27 PM, Robert Givens <rwg@imagers.com <mailto:rwg@imagers.com>> wrote:
>>
>>> On Mar 1, 2018, at 10:22 PM, lasso-request@lists.lassosoft.com <mailto:lasso-request@lists.lassosoft.com> wrote:
>>>
>>> Perhaps there's something here that can help?
>>>
>>> https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should <https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should> <https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should <https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should>>
>>>
>>> What do the MySQL logs show?
>>>
>>>
>>> - Bil
>>
>> Bil, thanks for the link. The symptom seemed the seem although their issues were caused by copying a database which was not the case here.
>>
>> No errors are logged in the error log.
>> I set a general log in my.cnf.
>> In comparing the PHP vs the Lasso call. They are very similar:
>>
>> PHP
>> 2018-03-05T20:53:19.106598Z 25 Connect root@localhost on PDI using Socket
>> 2018-03-05T20:53:19.106806Z 25 Query SELECT * FROM templates
>> 2018-03-05T20:53:19.199382Z 25 Quit
>>
>> Lasso
>> 2018-03-05T20:53:22.518152Z 26 Connect root@localhost on using Socket
>> 2018-03-05T20:53:22.518224Z 26 Init DB pdi
>> 2018-03-05T20:53:22.518299Z 26 Query SELECT * FROM templates
>> 2018-03-05T20:53:22.518458Z 26 Quit
>>
>> The only thing that looks suspicious is the difference in case for the database PDI, which is supposed to be uppercase. I suspect that if I restarted the server to fix the issue then the log entries for the same PHP and lasso tests would be identical. But for now I?m not restarting the server so that I might find the root cause to this.
>>
>> Any ideas on what I should look at next?
>>
>> ~ Robert


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279902 Mon, 05 Mar 2018 02:41 -0500 Steffan Cline http://www.lassosoft.com/lassotalk?id=279902 Typically Oracle will uppercase all table and column names but will take any combo in a query. I haven’t run across that issue on a connect string though. I’d recommend trying to uppercase as a test.

Thanks,
Steffan Cline
steffan@hldns.com
602-793-0014

> On Mar 5, 2018, at 2:39 PM, Ke Carlton <ke@zeroloop.com> wrote:
>
> On some linux / MySQL configurations databases and table names can be case
> sensitive.
>
> You should try specifying the database in the correct case.
>
>> On Tue, Mar 6, 2018 at 10:27 AM Robert Givens <rwg@imagers.com> wrote:
>>
>>
>> The only thing that looks suspicious is the difference in case for the
>> database PDI, which is supposed to be uppercase.
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279895 Thu, 01 Mar 2018 08:21 -0500 Bil Corry http://www.lassosoft.com/lassotalk?id=279895 Perhaps there's something here that can help?

https://stackoverflow.com/questions/7759170/mysql-table-doesnt-exist-but-it-does-or-it-should

What do the MySQL logs show?


- Bil


On Mon, Feb 26, 2018 at 10:25 AM, Robert Givens <rwg@imagers.com> wrote:

> Hi,
> I’m in need of help with an Lasso 8.6.3 connectivity issue with MySQL.
>
> Lasso can no longer access MySQL records until server is restarted, where
> it was able to access a MySQL database and multiple tables within without
> issue.
>
> Running Lasso 8.6.3 on CentOS 6.9, MySQL 5.7.20, AWS t2.small instance
>
> Found this in the Lasso Error logs: Error: MySQLDS: error from mysql: 1146
> Table 'pdi.templates' doesn't exist. The same error message appears for all
> tables lasso attempts to query.
>
> What I’ve tried.
> * Verified that the tables lasso is reporting as missing do exist with
> records in MySQL.
> * Verified that PHP can access the same table and records with identical
> query not working for Lasso
> * Restarting MySQL - Doesn’t fix the issues
> * Restarting Lasso - Doesn’t fix the issues
> * Restarting the server - Fixes the issue but only temporally.
>
>
> What might have triggered this issue. These are the only two actions that
> I’m fairly certain caused the problem, but it has occurred a half dozen
> times since setting up this server in November 2017.
> * Restarting Apache service after updating http.conf with a new secure
> certificate. Prior to the restart the server ran for two weeks without
> issue.
> * Adding a field to a MySQL table via Lasso Database browser.
>
> What might be the root cause of this issue?
>
> Thank you,
>
> Robert W. Givens
> IMAGERS | Senior Web Developer
> 1575 Northside Drive #490 | Atlanta GA 30318
> Direct: 404.605.8339 | robert@imagers.com <mailto:ben@imagers.com>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.5.6 install on El Capitan http://www.lassosoft.com/lassotalk?id=279894 Tue, 27 Feb 2018 03:23 -0500 Laurent G http://www.lassosoft.com/lassotalk?id=279894 Does anyone need Lasso8ConnectorforApache2.4.so ?

2018-02-27 15:18 GMT-05:00 Laurent G <laurent@netacces.com>:
> I had this issue too when I tried to installed lasso8connectorforapache2.4.so
> I had to disabled SIP in order to modify the recipient folder.
>
> 2018-02-27 15:10 GMT-05:00 James Sheffer <james@higherpowered.com>:
>> I would think it would be a good idea but haven’t done it yet.
>>
>> I finally got Lasso 8.5.6 running in Sierra. Once I’m finished setting up the server, I’ll post updated instructions of exactly what I did to get it to work. Disabling SIP was one of the steps I didn’t know about until Steffan pointed it out and I “think” was the main problem with Lasso not wanting to install (I also had to install Java 6). I’m going to reenable it once finished and let you know if there are any problems (I don’t imagine why re-enabling SIP would cause any problems)…
>>
>> James Sheffer
>> james@higherpowered.com
>> www.higherpowered.com
>> 469-256-0268
>>
>>
>>
>>
>>
>>> On Feb 27, 2018, at 9:23 AM, Laurent G <laurent@netacces.com> wrote:
>>>
>>> Do we need to enabled back SIP (System Integrity Protection) after
>>> Lasso install on Sierra?
>>>
>>>
>>> Laurent
>>>
>>> 2018-02-25 16:43 GMT-05:00 James Sheffer <james@higherpowered.com>:
>>>> Doh!
>>>>
>>>> In my “hurridness", I was on another lasso server - no server admin :-(
>>>>
>>>>
>>>>> On Feb 25, 2018, at 1:34 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>
>>>>> Wow!
>>>>>
>>>>> I still get an internal server error but can now get into the server admin app now!
>>>>>
>>>>> James
>>>>>
>>>>>> On Feb 25, 2018, at 1:28 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>
>>>>>> I now have this in the lasso errors file:
>>>>>>
>>>>>> [02/25/18 13:15:02] Restarted site process 1 default
>>>>>> [02/25/18 14:54:38] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 583
>>>>>>
>>>>>> [02/25/18 14:54:40] Restarted site process 1 default
>>>>>> [02/25/18 15:22:46] Initialize - Required
>>>>>>
>>>>>> James
>>>>>>
>>>>>>> On Feb 25, 2018, at 1:27 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>
>>>>>>> Ok, turned SIP off. Same problem. I’m thinking with this off, I should reinstall Lasso and try again? Should I uninstall first?
>>>>>>> Any other suggestions?
>>>>>>>
>>>>>>> Thanks again so much for the help!!!
>>>>>>>
>>>>>>> James
>>>>>>>
>>>>>>>> On Feb 25, 2018, at 11:45 AM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>
>>>>>>>> One other thing- Lasso is running according to activity monitor.
>>>>>>>>
>>>>>>>> Sent from my iPhone
>>>>>>>>
>>>>>>>>> On Feb 25, 2018, at 11:42 AM, James Sheffer <James@higherpowered.com> wrote:
>>>>>>>>>
>>>>>>>>> Forgive my ignorance but what is SIM?
>>>>>>>>>
>>>>>>>>> Sent from my iPhone
>>>>>>>>>
>>>>>>>>>> On Feb 25, 2018, at 11:18 AM, Steffan A. Cline <steffan@hldns.com> wrote:
>>>>>>>>>>
>>>>>>>>>> Did you turn off SIM?
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Steffan A. Cline
>>>>>>>>>> steffan@hldns.com
>>>>>>>>>> 602-793-0014
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>> On Feb 25, 2018, at 12:14 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>>>>
>>>>>>>>>>> Ok, I’m headed for trouble very quickly!
>>>>>>>>>>>
>>>>>>>>>>> I’m still trying to get Lasso 8.5.6 to run in Sierra (since people got it running in Sierra just the same as El Capitan, I upgraded the server to Sierra (not High Sierra!).
>>>>>>>>>>>
>>>>>>>>>>> I did the following:
>>>>>>>>>>> - Installed snow leopard (8.5.6) and installed Lasso. Then upgraded through to Sierra.
>>>>>>>>>>> - Made the changes from below. I had to change the lasso8.conf file:
>>>>>>>>>>> LoadModule lasso8_module /usr/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>> To:
>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.4.so
>>>>>>>>>>> ** The Lasso8.conf file had /usr/libexec - I added the “local” which is where I put the connector file so Apache would load.
>>>>>>>>>>>
>>>>>>>>>>> Now Apache loads but I get an internal server error when trying to load a simple lasso page (no errors in the apachectl configtest)
>>>>>>>>>>>
>>>>>>>>>>> In lassoerrors.txt file, I have the following:
>>>>>>>>>>>
>>>>>>>>>>> [02/25/18 13:00:09] Restarted site process 1 default
>>>>>>>>>>> [02/25/18 13:00:15] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 528
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Anyone have any ideas? I’ve got 2 more days to get this working or all authorize.net <http://authorize.net/> calls will fail :-)
>>>>>>>>>>>
>>>>>>>>>>> Should I re-run the installer for Lasso 8.5.6?
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>>>>>> It’s very simple … after some research
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Lasso 8.6 on El Capitan
>>>>>>>>>>>>>>>> ———————————
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Download the latest Lasso8 installer and run it.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Open the Terminal app.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Check if you have this folder: /usr/local/libexec
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> $ ls -l /usr/local/libexec/apache2
>>>>>>>>>>>>>>>> total 792
>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 117008 11 okt 2015 Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 142468 11 okt 2015 Lasso8ConnectorforApache2.4.so
>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 44416 24 mrt 19:55 mod_lasso9-2.4.so
>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 34252 11 okt 2015 mod_lasso9.10.10.so
>>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 58428 11 okt 2015 mod_lasso9.so
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> If not, create it.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec
>>>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec/apache2
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> and copy the 'Lasso8ConnectorforApache2.4.so' into that folder. Scan Lassotalk for a download link.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Look in /etc/apache2/httpd.conf and check the end of that file. It should have the following 3 lines:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> $ tail /etc/apache2/httpd.conf
>>>>>>>>>>>>>>>> #Begin: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>>> Include /private/etc/apache2/users/lasso8.conf
>>>>>>>>>>>>>>>> #End: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Next, edit file /etc/apache2/users/lasso8.conf and look at the 'LoadModule’-line. It should look like this:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Change the 'Lasso8ConnectorforApache2.2.so' into 'Lasso8ConnectorforApache2.4.so'
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> For Lasso 8 to start when OS X starts, since Mac OS 10.10 you need a LaunchDaemon plist.
>>>>>>>>>>>>>>>> Enter the following commands in Terminal:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> $ sudo vi /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>>>>>>>>>> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
>>>>>>>>>>>>>>>> <plist version="1.0">
>>>>>>>>>>>>>>>> <dict>
>>>>>>>>>>>>>>>> <key>RunAtLoad</key>
>>>>>>>>>>>>>>>> <true/>
>>>>>>>>>>>>>>>> <key>Label</key>
>>>>>>>>>>>>>>>> <string>com.lassosoft.lasso8</string>
>>>>>>>>>>>>>>>> <key>ProgramArguments</key>
>>>>>>>>>>>>>>>> <array>
>>>>>>>>>>>>>>>> <string>/Applications/Lasso Professional 8/LassoAdmin/Lasso8Service.sh</string>
>>>>>>>>>>>>>>>> </array>
>>>>>>>>>>>>>>>> </dict>
>>>>>>>>>>>>>>>> </plist>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> $ sudo chown root:wheel /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>> $ sudo chmod 644 /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>> $ sudo launchctl load -w /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> That should do it.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> - -
>>>>>>>>>>>>>>>> Regards,
>>>>>>>>>>>>>>>> Marc Vos
>>>>>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> James Sheffer
>>>>>>>>>>> james@higherpowered.com
>>>>>>>>>>> www.higherpowered.com
>>>>>>>>>>> 469-256-0268
>>>>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> #############################################################
>>>>>>>
>>>>>>> This message is sent to you because you are subscribed to
>>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>>
>>>>>>
>>>>>> #############################################################
>>>>>>
>>>>>> This message is sent to you because you are subscribed to
>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>
>>>>>
>>>>> #############################################################
>>>>>
>>>>> This message is sent to you because you are subscribed to
>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>> Official list archives available at http://www.lassotalk.com
>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>>
>>>> #############################################################
>>>>
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.5.6 install on El Capitan http://www.lassosoft.com/lassotalk?id=279893 Tue, 27 Feb 2018 03:18 -0500 Laurent G http://www.lassosoft.com/lassotalk?id=279893 I had this issue too when I tried to installed lasso8connectorforapache2.4.so
I had to disabled SIP in order to modify the recipient folder.

2018-02-27 15:10 GMT-05:00 James Sheffer <james@higherpowered.com>:
> I would think it would be a good idea but haven’t done it yet.
>
> I finally got Lasso 8.5.6 running in Sierra. Once I’m finished setting up the server, I’ll post updated instructions of exactly what I did to get it to work. Disabling SIP was one of the steps I didn’t know about until Steffan pointed it out and I “think” was the main problem with Lasso not wanting to install (I also had to install Java 6). I’m going to reenable it once finished and let you know if there are any problems (I don’t imagine why re-enabling SIP would cause any problems)…
>
> James Sheffer
> james@higherpowered.com
> www.higherpowered.com
> 469-256-0268
>
>
>
>
>
>> On Feb 27, 2018, at 9:23 AM, Laurent G <laurent@netacces.com> wrote:
>>
>> Do we need to enabled back SIP (System Integrity Protection) after
>> Lasso install on Sierra?
>>
>>
>> Laurent
>>
>> 2018-02-25 16:43 GMT-05:00 James Sheffer <james@higherpowered.com>:
>>> Doh!
>>>
>>> In my “hurridness", I was on another lasso server - no server admin :-(
>>>
>>>
>>>> On Feb 25, 2018, at 1:34 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>
>>>> Wow!
>>>>
>>>> I still get an internal server error but can now get into the server admin app now!
>>>>
>>>> James
>>>>
>>>>> On Feb 25, 2018, at 1:28 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>
>>>>> I now have this in the lasso errors file:
>>>>>
>>>>> [02/25/18 13:15:02] Restarted site process 1 default
>>>>> [02/25/18 14:54:38] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 583
>>>>>
>>>>> [02/25/18 14:54:40] Restarted site process 1 default
>>>>> [02/25/18 15:22:46] Initialize - Required
>>>>>
>>>>> James
>>>>>
>>>>>> On Feb 25, 2018, at 1:27 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>
>>>>>> Ok, turned SIP off. Same problem. I’m thinking with this off, I should reinstall Lasso and try again? Should I uninstall first?
>>>>>> Any other suggestions?
>>>>>>
>>>>>> Thanks again so much for the help!!!
>>>>>>
>>>>>> James
>>>>>>
>>>>>>> On Feb 25, 2018, at 11:45 AM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>
>>>>>>> One other thing- Lasso is running according to activity monitor.
>>>>>>>
>>>>>>> Sent from my iPhone
>>>>>>>
>>>>>>>> On Feb 25, 2018, at 11:42 AM, James Sheffer <James@higherpowered.com> wrote:
>>>>>>>>
>>>>>>>> Forgive my ignorance but what is SIM?
>>>>>>>>
>>>>>>>> Sent from my iPhone
>>>>>>>>
>>>>>>>>> On Feb 25, 2018, at 11:18 AM, Steffan A. Cline <steffan@hldns.com> wrote:
>>>>>>>>>
>>>>>>>>> Did you turn off SIM?
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Steffan A. Cline
>>>>>>>>> steffan@hldns.com
>>>>>>>>> 602-793-0014
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>> On Feb 25, 2018, at 12:14 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>>>
>>>>>>>>>> Ok, I’m headed for trouble very quickly!
>>>>>>>>>>
>>>>>>>>>> I’m still trying to get Lasso 8.5.6 to run in Sierra (since people got it running in Sierra just the same as El Capitan, I upgraded the server to Sierra (not High Sierra!).
>>>>>>>>>>
>>>>>>>>>> I did the following:
>>>>>>>>>> - Installed snow leopard (8.5.6) and installed Lasso. Then upgraded through to Sierra.
>>>>>>>>>> - Made the changes from below. I had to change the lasso8.conf file:
>>>>>>>>>> LoadModule lasso8_module /usr/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>> To:
>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.4.so
>>>>>>>>>> ** The Lasso8.conf file had /usr/libexec - I added the “local” which is where I put the connector file so Apache would load.
>>>>>>>>>>
>>>>>>>>>> Now Apache loads but I get an internal server error when trying to load a simple lasso page (no errors in the apachectl configtest)
>>>>>>>>>>
>>>>>>>>>> In lassoerrors.txt file, I have the following:
>>>>>>>>>>
>>>>>>>>>> [02/25/18 13:00:09] Restarted site process 1 default
>>>>>>>>>> [02/25/18 13:00:15] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 528
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Anyone have any ideas? I’ve got 2 more days to get this working or all authorize.net <http://authorize.net/> calls will fail :-)
>>>>>>>>>>
>>>>>>>>>> Should I re-run the installer for Lasso 8.5.6?
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>>>>>> It’s very simple … after some research
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Lasso 8.6 on El Capitan
>>>>>>>>>>>>>>> ———————————
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Download the latest Lasso8 installer and run it.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Open the Terminal app.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Check if you have this folder: /usr/local/libexec
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> $ ls -l /usr/local/libexec/apache2
>>>>>>>>>>>>>>> total 792
>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 117008 11 okt 2015 Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 142468 11 okt 2015 Lasso8ConnectorforApache2.4.so
>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 44416 24 mrt 19:55 mod_lasso9-2.4.so
>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 34252 11 okt 2015 mod_lasso9.10.10.so
>>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 58428 11 okt 2015 mod_lasso9.so
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> If not, create it.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec
>>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec/apache2
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> and copy the 'Lasso8ConnectorforApache2.4.so' into that folder. Scan Lassotalk for a download link.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Look in /etc/apache2/httpd.conf and check the end of that file. It should have the following 3 lines:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> $ tail /etc/apache2/httpd.conf
>>>>>>>>>>>>>>> #Begin: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>> Include /private/etc/apache2/users/lasso8.conf
>>>>>>>>>>>>>>> #End: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Next, edit file /etc/apache2/users/lasso8.conf and look at the 'LoadModule’-line. It should look like this:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Change the 'Lasso8ConnectorforApache2.2.so' into 'Lasso8ConnectorforApache2.4.so'
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> For Lasso 8 to start when OS X starts, since Mac OS 10.10 you need a LaunchDaemon plist.
>>>>>>>>>>>>>>> Enter the following commands in Terminal:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> $ sudo vi /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>>>>>>>>> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
>>>>>>>>>>>>>>> <plist version="1.0">
>>>>>>>>>>>>>>> <dict>
>>>>>>>>>>>>>>> <key>RunAtLoad</key>
>>>>>>>>>>>>>>> <true/>
>>>>>>>>>>>>>>> <key>Label</key>
>>>>>>>>>>>>>>> <string>com.lassosoft.lasso8</string>
>>>>>>>>>>>>>>> <key>ProgramArguments</key>
>>>>>>>>>>>>>>> <array>
>>>>>>>>>>>>>>> <string>/Applications/Lasso Professional 8/LassoAdmin/Lasso8Service.sh</string>
>>>>>>>>>>>>>>> </array>
>>>>>>>>>>>>>>> </dict>
>>>>>>>>>>>>>>> </plist>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> $ sudo chown root:wheel /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>> $ sudo chmod 644 /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>> $ sudo launchctl load -w /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> That should do it.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> - -
>>>>>>>>>>>>>>> Regards,
>>>>>>>>>>>>>>> Marc Vos
>>>>>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> James Sheffer
>>>>>>>>>> james@higherpowered.com
>>>>>>>>>> www.higherpowered.com
>>>>>>>>>> 469-256-0268
>>>>>>>>>>
>>>>>>
>>>>>>
>>>>>> #############################################################
>>>>>>
>>>>>> This message is sent to you because you are subscribed to
>>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>>> Official list archives available at http://www.lassotalk.com
>>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>>
>>>>>
>>>>> #############################################################
>>>>>
>>>>> This message is sent to you because you are subscribed to
>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>> Official list archives available at http://www.lassotalk.com
>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>>
>>>> #############################################################
>>>>
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.5.6 install on El Capitan http://www.lassosoft.com/lassotalk?id=279891 Tue, 27 Feb 2018 12:23 -0500 Laurent G http://www.lassosoft.com/lassotalk?id=279891 Do we need to enabled back SIP (System Integrity Protection) after
Lasso install on Sierra?


Laurent

2018-02-25 16:43 GMT-05:00 James Sheffer <james@higherpowered.com>:
> Doh!
>
> In my “hurridness", I was on another lasso server - no server admin :-(
>
>
>> On Feb 25, 2018, at 1:34 PM, James Sheffer <james@higherpowered.com> wrote:
>>
>> Wow!
>>
>> I still get an internal server error but can now get into the server admin app now!
>>
>> James
>>
>>> On Feb 25, 2018, at 1:28 PM, James Sheffer <james@higherpowered.com> wrote:
>>>
>>> I now have this in the lasso errors file:
>>>
>>> [02/25/18 13:15:02] Restarted site process 1 default
>>> [02/25/18 14:54:38] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 583
>>>
>>> [02/25/18 14:54:40] Restarted site process 1 default
>>> [02/25/18 15:22:46] Initialize - Required
>>>
>>> James
>>>
>>>> On Feb 25, 2018, at 1:27 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>
>>>> Ok, turned SIP off. Same problem. I’m thinking with this off, I should reinstall Lasso and try again? Should I uninstall first?
>>>> Any other suggestions?
>>>>
>>>> Thanks again so much for the help!!!
>>>>
>>>> James
>>>>
>>>>> On Feb 25, 2018, at 11:45 AM, James Sheffer <james@higherpowered.com> wrote:
>>>>>
>>>>> One other thing- Lasso is running according to activity monitor.
>>>>>
>>>>> Sent from my iPhone
>>>>>
>>>>>> On Feb 25, 2018, at 11:42 AM, James Sheffer <James@higherpowered.com> wrote:
>>>>>>
>>>>>> Forgive my ignorance but what is SIM?
>>>>>>
>>>>>> Sent from my iPhone
>>>>>>
>>>>>>> On Feb 25, 2018, at 11:18 AM, Steffan A. Cline <steffan@hldns.com> wrote:
>>>>>>>
>>>>>>> Did you turn off SIM?
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Steffan A. Cline
>>>>>>> steffan@hldns.com
>>>>>>> 602-793-0014
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>> On Feb 25, 2018, at 12:14 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>
>>>>>>>> Ok, I’m headed for trouble very quickly!
>>>>>>>>
>>>>>>>> I’m still trying to get Lasso 8.5.6 to run in Sierra (since people got it running in Sierra just the same as El Capitan, I upgraded the server to Sierra (not High Sierra!).
>>>>>>>>
>>>>>>>> I did the following:
>>>>>>>> - Installed snow leopard (8.5.6) and installed Lasso. Then upgraded through to Sierra.
>>>>>>>> - Made the changes from below. I had to change the lasso8.conf file:
>>>>>>>> LoadModule lasso8_module /usr/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>> To:
>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.4.so
>>>>>>>> ** The Lasso8.conf file had /usr/libexec - I added the “local” which is where I put the connector file so Apache would load.
>>>>>>>>
>>>>>>>> Now Apache loads but I get an internal server error when trying to load a simple lasso page (no errors in the apachectl configtest)
>>>>>>>>
>>>>>>>> In lassoerrors.txt file, I have the following:
>>>>>>>>
>>>>>>>> [02/25/18 13:00:09] Restarted site process 1 default
>>>>>>>> [02/25/18 13:00:15] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 528
>>>>>>>>
>>>>>>>>
>>>>>>>> Anyone have any ideas? I’ve got 2 more days to get this working or all authorize.net <http://authorize.net/> calls will fail :-)
>>>>>>>>
>>>>>>>> Should I re-run the installer for Lasso 8.5.6?
>>>>>>>>
>>>>>>>>
>>>>>>>>>>>>> It’s very simple … after some research
>>>>>>>>>>>>>
>>>>>>>>>>>>> Lasso 8.6 on El Capitan
>>>>>>>>>>>>> ———————————
>>>>>>>>>>>>>
>>>>>>>>>>>>> Download the latest Lasso8 installer and run it.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Open the Terminal app.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Check if you have this folder: /usr/local/libexec
>>>>>>>>>>>>>
>>>>>>>>>>>>> $ ls -l /usr/local/libexec/apache2
>>>>>>>>>>>>> total 792
>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 117008 11 okt 2015 Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 142468 11 okt 2015 Lasso8ConnectorforApache2.4.so
>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 44416 24 mrt 19:55 mod_lasso9-2.4.so
>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 34252 11 okt 2015 mod_lasso9.10.10.so
>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 58428 11 okt 2015 mod_lasso9.so
>>>>>>>>>>>>>
>>>>>>>>>>>>> If not, create it.
>>>>>>>>>>>>>
>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec
>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec/apache2
>>>>>>>>>>>>>
>>>>>>>>>>>>> and copy the 'Lasso8ConnectorforApache2.4.so' into that folder. Scan Lassotalk for a download link.
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> Look in /etc/apache2/httpd.conf and check the end of that file. It should have the following 3 lines:
>>>>>>>>>>>>>
>>>>>>>>>>>>> $ tail /etc/apache2/httpd.conf
>>>>>>>>>>>>> #Begin: Added by Lasso 8.6 installer
>>>>>>>>>>>>> Include /private/etc/apache2/users/lasso8.conf
>>>>>>>>>>>>> #End: Added by Lasso 8.6 installer
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> Next, edit file /etc/apache2/users/lasso8.conf and look at the 'LoadModule’-line. It should look like this:
>>>>>>>>>>>>>
>>>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>
>>>>>>>>>>>>> Change the 'Lasso8ConnectorforApache2.2.so' into 'Lasso8ConnectorforApache2.4.so'
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> For Lasso 8 to start when OS X starts, since Mac OS 10.10 you need a LaunchDaemon plist.
>>>>>>>>>>>>> Enter the following commands in Terminal:
>>>>>>>>>>>>>
>>>>>>>>>>>>> $ sudo vi /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>
>>>>>>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>>>>>>> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
>>>>>>>>>>>>> <plist version="1.0">
>>>>>>>>>>>>> <dict>
>>>>>>>>>>>>> <key>RunAtLoad</key>
>>>>>>>>>>>>> <true/>
>>>>>>>>>>>>> <key>Label</key>
>>>>>>>>>>>>> <string>com.lassosoft.lasso8</string>
>>>>>>>>>>>>> <key>ProgramArguments</key>
>>>>>>>>>>>>> <array>
>>>>>>>>>>>>> <string>/Applications/Lasso Professional 8/LassoAdmin/Lasso8Service.sh</string>
>>>>>>>>>>>>> </array>
>>>>>>>>>>>>> </dict>
>>>>>>>>>>>>> </plist>
>>>>>>>>>>>>>
>>>>>>>>>>>>> $ sudo chown root:wheel /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>> $ sudo chmod 644 /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>> $ sudo launchctl load -w /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> That should do it.
>>>>>>>>>>>>>
>>>>>>>>>>>>> - -
>>>>>>>>>>>>> Regards,
>>>>>>>>>>>>> Marc Vos
>>>>>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> James Sheffer
>>>>>>>> james@higherpowered.com
>>>>>>>> www.higherpowered.com
>>>>>>>> 469-256-0268
>>>>>>>>
>>>>
>>>>
>>>> #############################################################
>>>>
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: Lasso 8.5.6 install on El Capitan http://www.lassosoft.com/lassotalk?id=279892 Tue, 27 Feb 2018 12:10 -0500 James Sheffer http://www.lassosoft.com/lassotalk?id=279892 I would think it would be a good idea but haven’t done it yet.

I finally got Lasso 8.5.6 running in Sierra. Once I’m finished setting up the server, I’ll post updated instructions of exactly what I did to get it to work. Disabling SIP was one of the steps I didn’t know about until Steffan pointed it out and I “think” was the main problem with Lasso not wanting to install (I also had to install Java 6). I’m going to reenable it once finished and let you know if there are any problems (I don’t imagine why re-enabling SIP would cause any problems)…

James Sheffer
james@higherpowered.com
www.higherpowered.com
469-256-0268





> On Feb 27, 2018, at 9:23 AM, Laurent G <laurent@netacces.com> wrote:
>
> Do we need to enabled back SIP (System Integrity Protection) after
> Lasso install on Sierra?
>
>
> Laurent
>
> 2018-02-25 16:43 GMT-05:00 James Sheffer <james@higherpowered.com>:
>> Doh!
>>
>> In my “hurridness", I was on another lasso server - no server admin :-(
>>
>>
>>> On Feb 25, 2018, at 1:34 PM, James Sheffer <james@higherpowered.com> wrote:
>>>
>>> Wow!
>>>
>>> I still get an internal server error but can now get into the server admin app now!
>>>
>>> James
>>>
>>>> On Feb 25, 2018, at 1:28 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>
>>>> I now have this in the lasso errors file:
>>>>
>>>> [02/25/18 13:15:02] Restarted site process 1 default
>>>> [02/25/18 14:54:38] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 583
>>>>
>>>> [02/25/18 14:54:40] Restarted site process 1 default
>>>> [02/25/18 15:22:46] Initialize - Required
>>>>
>>>> James
>>>>
>>>>> On Feb 25, 2018, at 1:27 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>
>>>>> Ok, turned SIP off. Same problem. I’m thinking with this off, I should reinstall Lasso and try again? Should I uninstall first?
>>>>> Any other suggestions?
>>>>>
>>>>> Thanks again so much for the help!!!
>>>>>
>>>>> James
>>>>>
>>>>>> On Feb 25, 2018, at 11:45 AM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>
>>>>>> One other thing- Lasso is running according to activity monitor.
>>>>>>
>>>>>> Sent from my iPhone
>>>>>>
>>>>>>> On Feb 25, 2018, at 11:42 AM, James Sheffer <James@higherpowered.com> wrote:
>>>>>>>
>>>>>>> Forgive my ignorance but what is SIM?
>>>>>>>
>>>>>>> Sent from my iPhone
>>>>>>>
>>>>>>>> On Feb 25, 2018, at 11:18 AM, Steffan A. Cline <steffan@hldns.com> wrote:
>>>>>>>>
>>>>>>>> Did you turn off SIM?
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> Steffan A. Cline
>>>>>>>> steffan@hldns.com
>>>>>>>> 602-793-0014
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>> On Feb 25, 2018, at 12:14 PM, James Sheffer <james@higherpowered.com> wrote:
>>>>>>>>>
>>>>>>>>> Ok, I’m headed for trouble very quickly!
>>>>>>>>>
>>>>>>>>> I’m still trying to get Lasso 8.5.6 to run in Sierra (since people got it running in Sierra just the same as El Capitan, I upgraded the server to Sierra (not High Sierra!).
>>>>>>>>>
>>>>>>>>> I did the following:
>>>>>>>>> - Installed snow leopard (8.5.6) and installed Lasso. Then upgraded through to Sierra.
>>>>>>>>> - Made the changes from below. I had to change the lasso8.conf file:
>>>>>>>>> LoadModule lasso8_module /usr/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>> To:
>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.4.so
>>>>>>>>> ** The Lasso8.conf file had /usr/libexec - I added the “local” which is where I put the connector file so Apache would load.
>>>>>>>>>
>>>>>>>>> Now Apache loads but I get an internal server error when trying to load a simple lasso page (no errors in the apachectl configtest)
>>>>>>>>>
>>>>>>>>> In lassoerrors.txt file, I have the following:
>>>>>>>>>
>>>>>>>>> [02/25/18 13:00:09] Restarted site process 1 default
>>>>>>>>> [02/25/18 13:00:15] Failed to hand socket to child. errno: 32 strerror: "Broken pipe" site id: 1 site pid: 528
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Anyone have any ideas? I’ve got 2 more days to get this working or all authorize.net <http://authorize.net/> calls will fail :-)
>>>>>>>>>
>>>>>>>>> Should I re-run the installer for Lasso 8.5.6?
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>>>>>> It’s very simple … after some research
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Lasso 8.6 on El Capitan
>>>>>>>>>>>>>> ———————————
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Download the latest Lasso8 installer and run it.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Open the Terminal app.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Check if you have this folder: /usr/local/libexec
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> $ ls -l /usr/local/libexec/apache2
>>>>>>>>>>>>>> total 792
>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 117008 11 okt 2015 Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 142468 11 okt 2015 Lasso8ConnectorforApache2.4.so
>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 44416 24 mrt 19:55 mod_lasso9-2.4.so
>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 34252 11 okt 2015 mod_lasso9.10.10.so
>>>>>>>>>>>>>> -rwxr-xr-x 1 root wheel 58428 11 okt 2015 mod_lasso9.so
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> If not, create it.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec
>>>>>>>>>>>>>> $ sudo mkdir /usr/local/libexec/apache2
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> and copy the 'Lasso8ConnectorforApache2.4.so' into that folder. Scan Lassotalk for a download link.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Look in /etc/apache2/httpd.conf and check the end of that file. It should have the following 3 lines:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> $ tail /etc/apache2/httpd.conf
>>>>>>>>>>>>>> #Begin: Added by Lasso 8.6 installer
>>>>>>>>>>>>>> Include /private/etc/apache2/users/lasso8.conf
>>>>>>>>>>>>>> #End: Added by Lasso 8.6 installer
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Next, edit file /etc/apache2/users/lasso8.conf and look at the 'LoadModule’-line. It should look like this:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> LoadModule lasso8_module /usr/local/libexec/apache2/Lasso8ConnectorforApache2.2.so
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Change the 'Lasso8ConnectorforApache2.2.so' into 'Lasso8ConnectorforApache2.4.so'
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> For Lasso 8 to start when OS X starts, since Mac OS 10.10 you need a LaunchDaemon plist.
>>>>>>>>>>>>>> Enter the following commands in Terminal:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> $ sudo vi /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>>>>>>>>>>> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
>>>>>>>>>>>>>> <plist version="1.0">
>>>>>>>>>>>>>> <dict>
>>>>>>>>>>>>>> <key>RunAtLoad</key>
>>>>>>>>>>>>>> <true/>
>>>>>>>>>>>>>> <key>Label</key>
>>>>>>>>>>>>>> <string>com.lassosoft.lasso8</string>
>>>>>>>>>>>>>> <key>ProgramArguments</key>
>>>>>>>>>>>>>> <array>
>>>>>>>>>>>>>> <string>/Applications/Lasso Professional 8/LassoAdmin/Lasso8Service.sh</string>
>>>>>>>>>>>>>> </array>
>>>>>>>>>>>>>> </dict>
>>>>>>>>>>>>>> </plist>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> $ sudo chown root:wheel /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>> $ sudo chmod 644 /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>> $ sudo launchctl load -w /Library/LaunchDaemons/com.lassosoft.lasso8.plist
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> That should do it.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> - -
>>>>>>>>>>>>>> Regards,
>>>>>>>>>>>>>> Marc Vos
>>>>>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> James Sheffer
>>>>>>>>> james@higherpowered.com
>>>>>>>>> www.higherpowered.com
>>>>>>>>> 469-256-0268
>>>>>>>>>
>>>>>
>>>>>
>>>>> #############################################################
>>>>>
>>>>> This message is sent to you because you are subscribed to
>>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>>> Official list archives available at http://www.lassotalk.com
>>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>>
>>>>
>>>> #############################################################
>>>>
>>>> This message is sent to you because you are subscribed to
>>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>>> Official list archives available at http://www.lassotalk.com
>>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>>
>>>
>>> #############################################################
>>>
>>> This message is sent to you because you are subscribed to
>>> the mailing list Lasso Lasso@lists.lassosoft.com
>>> Official list archives available at http://www.lassotalk.com
>>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>>
>>
>> #############################################################
>>
>> This message is sent to you because you are subscribed to
>> the mailing list Lasso Lasso@lists.lassosoft.com
>> Official list archives available at http://www.lassotalk.com
>> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
>> Send administrative queries to <Lasso-request@lists.lassosoft.com>
>
> #############################################################
>
> This message is sent to you because you are subscribed to
> the mailing list Lasso Lasso@lists.lassosoft.com
> Official list archives available at http://www.lassotalk.com
> To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
> Send administrative queries to <Lasso-request@lists.lassosoft.com>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Lasso 8.6.3 connectivity issue with MySQL http://www.lassosoft.com/lassotalk?id=279890 Mon, 26 Feb 2018 12:25 -0500 Robert Givens http://www.lassosoft.com/lassotalk?id=279890 Hi,
I’m in need of help with an Lasso 8.6.3 connectivity issue with MySQL.

Lasso can no longer access MySQL records until server is restarted, where it was able to access a MySQL database and multiple tables within without issue.

Running Lasso 8.6.3 on CentOS 6.9, MySQL 5.7.20, AWS t2.small instance

Found this in the Lasso Error logs: Error: MySQLDS: error from mysql: 1146 Table 'pdi.templates' doesn't exist. The same error message appears for all tables lasso attempts to query.

What I’ve tried.
* Verified that the tables lasso is reporting as missing do exist with records in MySQL.
* Verified that PHP can access the same table and records with identical query not working for Lasso
* Restarting MySQL - Doesn’t fix the issues
* Restarting Lasso - Doesn’t fix the issues
* Restarting the server - Fixes the issue but only temporally.


What might have triggered this issue. These are the only two actions that I’m fairly certain caused the problem, but it has occurred a half dozen times since setting up this server in November 2017.
* Restarting Apache service after updating http.conf with a new secure certificate. Prior to the restart the server ran for two weeks without issue.
* Adding a field to a MySQL table via Lasso Database browser.

What might be the root cause of this issue?

Thank you,

Robert W. Givens
IMAGERS | Senior Web Developer
1575 Northside Drive #490 | Atlanta GA 30318
Direct: 404.605.8339 | robert@imagers.com <mailto:ben@imagers.com>

#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>
Re: DS update multiple rows http://www.lassosoft.com/lassotalk?id=279889 Mon, 26 Feb 2018 11:11 -0500 Jolle Carlestam http://www.lassosoft.com/lassotalk?id=279889 Thanks!

> 26 feb. 2018 kl. 10:53 skrev Ke Carlton <ke@zeroloop.com>:
>
> ds->update(::mytable)->set(::some_col = 'value')->where(::some_key = 'a
> value')
>
> On Mon, 26 Feb 2018 at 19:35, Jolle Carlestam <jolle@carlestam.com> wrote:
>
>> What would be the DS optimal equivalent of this SQL:
>>
>> UPDATE mytable
>> SET this_col = ’A value'
>> WHERE this_key = ’A key’
>>
>> Expecting 0 to infinite number of rows to be updated.
>>
>> HDB
>> Jolle
>>


#############################################################

This message is sent to you because you are subscribed to
the mailing list Lasso Lasso@lists.lassosoft.com
Official list archives available at http://www.lassotalk.com
To unsubscribe, E-mail to: <Lasso-unsubscribe@lists.lassosoft.com>
Send administrative queries to <Lasso-request@lists.lassosoft.com>

]]>