swfaddress-users Mailing List for SWFAddress (Page 4)
Brought to you by:
asual
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(6) |
Dec
(11) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
|
Mar
(6) |
Apr
(12) |
May
|
Jun
(8) |
Jul
(2) |
Aug
(13) |
Sep
|
Oct
(2) |
Nov
(18) |
Dec
(4) |
2008 |
Jan
(5) |
Feb
(5) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
(4) |
Oct
(5) |
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: sebastian c. <inf...@gm...> - 2007-06-01 11:38:26
|
Hi Mark, no we are using PHP. On 6/1/07, Mark Cassar <far...@gm...> wrote: > > Hi there, > > Are you using ASP.NET because if you're embedding the swf inside an > ASP.Net form there is an issue which you can resolve. > > Mark Cassar > www.casasoft.com.mt > > sebastian chedal wrote: > > Hello everyone, > > > > Thanks for taking the time to read my problem. > > > > I'm using SWFAddress/Object 1.1 > > > > Only IE6 has an issue. > > > > When I use: > > > > //AS: > > ExternalInterface.call ("check"); > > //JS: > > function check () { > > alert("check"); > > } > > > > This works fine on ALL browsers. > > > > But if I use: > > AS: > > ExternalInterface.call ("spawnWindow", > > > fullString,__data.parameters.myTitle,"'toolbar="+__data.parameters.toolbar+",location="+__data.parameters.location+",status="+__data.parameters.status+",menubar="+__data.parameters.menubar+",scrollbars="+__data.parameters.scrollbars+",resizable="+__data.parameters.resizeable+",width="+__data.parameters.width+",height="+__data.parameters.height+"'"); > > > > //JS: > > function spawnWindow(URL,Name,features) { > > alert("spawnWindow"); > > window.open(URL,Name,features); > > } > > > > This works fine in FFox, Safari, IE7 etc. but in IE6 ONLY the alert is > > triggered. > > > > So I tried to use inline JS: > > > > //AS: > > getURL > > ("javascript:NewWindow=window.open > ('"+String(fullString)+"','"+__data.parameters.myTitle+"','toolbar="+String(__data.parameters.toolbar)+",location="+String(__data.parameters.location)+",status="+String(__data.parameters.status)+",menubar="+String(__data.parameters.menubar)+",scrollbars="+String(__data.parameters.scrollbars)+",resizable="+String(__data.parameters.resizeable)+",width="+String(__data.parameters.width)+",height="+String(__data.parameters.height)+"'); > > NewWindow.focus(); void(0);"); > > > > This again works fine in all browsers except IE6... [where nothing > > happens] > > =( > > > > So it would seem that I can access alert; but not window.open; using > > either javascript inline, or via a External.Interface function... > > > > I also need to use Javascript to call the stats engine [currently > > Google Analytics; but we will switch to Omniture soon, and this also > > uses javascript] - but this is also NOT working in IE6. > > > > I'm really out of options!!! So far it seems like a bad deal to have > > deeplinking/bookmarking but no IE6 support! eeik! > > > > If anyone has any insight, your input is really appreciated! > > > > With kindness, > > > > Sebastian. > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > swfaddress-users mailing list > > swf...@li... > > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Mark C. <far...@gm...> - 2007-06-01 11:14:36
|
Hi there, Are you using ASP.NET because if you're embedding the swf inside an ASP.Net form there is an issue which you can resolve. Mark Cassar www.casasoft.com.mt sebastian chedal wrote: > Hello everyone, > > Thanks for taking the time to read my problem. > > I'm using SWFAddress/Object 1.1 > > Only IE6 has an issue. > > When I use: > > //AS: > ExternalInterface.call ("check"); > //JS: > function check () { > alert("check"); > } > > This works fine on ALL browsers. > > But if I use: > AS: > ExternalInterface.call ("spawnWindow", > fullString,__data.parameters.myTitle,"'toolbar="+__data.parameters.toolbar+",location="+__data.parameters.location+",status="+__data.parameters.status+",menubar="+__data.parameters.menubar+",scrollbars="+__data.parameters.scrollbars+",resizable="+__data.parameters.resizeable+",width="+__data.parameters.width+",height="+__data.parameters.height+"'"); > > //JS: > function spawnWindow(URL,Name,features) { > alert("spawnWindow"); > window.open(URL,Name,features); > } > > This works fine in FFox, Safari, IE7 etc. but in IE6 ONLY the alert is > triggered. > > So I tried to use inline JS: > > //AS: > getURL > ("javascript:NewWindow=window.open('"+String(fullString)+"','"+__data.parameters.myTitle+"','toolbar="+String(__data.parameters.toolbar)+",location="+String(__data.parameters.location)+",status="+String(__data.parameters.status)+",menubar="+String(__data.parameters.menubar)+",scrollbars="+String(__data.parameters.scrollbars)+",resizable="+String(__data.parameters.resizeable)+",width="+String(__data.parameters.width)+",height="+String(__data.parameters.height)+"'); > NewWindow.focus(); void(0);"); > > This again works fine in all browsers except IE6... [where nothing > happens] > =( > > So it would seem that I can access alert; but not window.open; using > either javascript inline, or via a External.Interface function... > > I also need to use Javascript to call the stats engine [currently > Google Analytics; but we will switch to Omniture soon, and this also > uses javascript] - but this is also NOT working in IE6. > > I'm really out of options!!! So far it seems like a bad deal to have > deeplinking/bookmarking but no IE6 support! eeik! > > If anyone has any insight, your input is really appreciated! > > With kindness, > > Sebastian. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > ------------------------------------------------------------------------ > > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: sebastian c. <inf...@gm...> - 2007-06-01 10:39:20
|
Hello everyone, Thanks for taking the time to read my problem. I'm using SWFAddress/Object 1.1 Only IE6 has an issue. When I use: //AS: ExternalInterface.call ("check"); //JS: function check () { alert("check"); } This works fine on ALL browsers. But if I use: AS: ExternalInterface.call ("spawnWindow", fullString,__data.parameters.myTitle,"'toolbar="+__data.parameters.toolbar+",location="+__data.parameters.location+",status="+__data.parameters.status+",menubar="+__data.parameters.menubar+",scrollbars="+__data.parameters.scrollbars+",resizable="+__data.parameters.resizeable+",width="+__data.parameters.width+",height="+__data.parameters.height+"'"); //JS: function spawnWindow(URL,Name,features) { alert("spawnWindow"); window.open(URL,Name,features); } This works fine in FFox, Safari, IE7 etc. but in IE6 ONLY the alert is triggered. So I tried to use inline JS: //AS: getURL ("javascript:NewWindow=window.open('"+String(fullString)+"','"+__data.parameters.myTitle+"','toolbar="+String(__data.parameters.toolbar)+",location="+String(__data.parameters.location)+",status="+String(__data.parameters.status)+",menubar="+String(__data.parameters.menubar)+",scrollbars="+String(__data.parameters.scrollbars)+",resizable="+String(__data.parameters.resizeable)+",width="+String(__data.parameters.width)+",height="+String(__data.parameters.height)+"'); NewWindow.focus(); void(0);"); This again works fine in all browsers except IE6... [where nothing happens] =( So it would seem that I can access alert; but not window.open; using either javascript inline, or via a External.Interface function... I also need to use Javascript to call the stats engine [currently Google Analytics; but we will switch to Omniture soon, and this also uses javascript] - but this is also NOT working in IE6. I'm really out of options!!! So far it seems like a bad deal to have deeplinking/bookmarking but no IE6 support! eeik! If anyone has any insight, your input is really appreciated! With kindness, Sebastian. |
From: Nathan M. <nm...@te...> - 2007-04-25 18:10:13
|
Thanks Rostislav. everything works now! It seems it was a bad copy and paste job so using the file directly from the other server worked. Thanks, Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog On Apr 25, 2007, at 9:22 AM, Rostislav Hristov wrote: > Just copy and paste the file from your Perfect Hideaways server > without modifying the content. If it does not work try removing or > commenting lines to detect where exactly is the problem. > > > -- > Asual - open software that pushes the limits > http://www.asual.com/ > > > On 4/25/07, Nathan Meyers <nm...@te...> wrote: >> Hmm, good test. With just 'RewriteEngine on' in the file I don't get >> an error, so it must be working! >> >> I think my syntax must have gone wrong, because I have only a copy >> and paste version of the file that you used on my previous project. >> Are you possibly able to send me the file so I can see if that works. >> I'm sure that during the copy/paste/email process something went >> wrong. >> >> Thanks Rostislav for all your help so far. >> >> Nathan Meyers @ The Orange Dog >> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] >> 21 790 6092 | F:+27[0]21 791 4460 >> >> View our portfolio: http://www.orangedog.co.za/ >> Visit our Blog: http://www.orangedog.co.za/blog/ >> ---- >> NEW in 2006 >> Hout Bay Online: http://www.houtbayonline.com >> Powered by The Orange Dog >> >> >> >> On Apr 25, 2007, at 8:52 AM, Rostislav Hristov wrote: >> >>> The good thing is that there is a progress :) >>> >>> Remove that /usr/local/ line completely, If the problem still exist >>> try testing only with "RewriteEngine on" single line to check if >>> mod_rewrite is enabled. >>> >>> >>> -- >>> Asual - open software that pushes the limits >>> http://www.asual.com/ >>> >>> >>> On 4/24/07, Nathan Meyers <nm...@te...> wrote: >>>> Hmm, after activating the .htaccess on the server I am still >>>> getting >>>> this error... >>>> >>>> -------------- >>>> Internal Server Error >>>> >>>> The server encountered an internal error or misconfiguration and >>>> was >>>> unable to complete your request. >>>> >>>> Please contact the server administrator, >>>> web...@ho... >>>> 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. >>>> -------------- >>>> >>>> Something in the file must be wrong, and I think it has to be the >>>> header. I know the path to the server is... >>>>>> /usr/local/vweb/orangedog/www.houtbayonline.com/data/.htaccess >>>> ..but if that is commented anyway I don't suppose it makes a >>>> difference. >>>> Is there anything I am missing here? >>>> >>>> Rostislav, I am using the same file here as you used on my Perfect >>>> Hideaways project, but I am just not getting this. >>>> >>>> Any further help would be appreciated! >>>> >>>> Thanks, >>>> Nathan Meyers @ The Orange Dog >>>> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27 >>>> [0] >>>> 21 790 6092 | F:+27[0]21 791 4460 >>>> >>>> View our portfolio: http://www.orangedog.co.za/ >>>> Visit our Blog: http://www.orangedog.co.za/blog/ >>>> ---- >>>> NEW in 2006 >>>> Hout Bay Online: http://www.houtbayonline.com >>>> Powered by The Orange Dog >>>> >>>> >>>> >>>> On Apr 24, 2007, at 5:41 PM, Rostislav Hristov wrote: >>>> >>>>> Hi Nathan, >>>>> >>>>> the .htaccess file should be places in the root folder of the >>>>> website, >>>>> not in a subfolder. I have no idea what the [root@vinesweb01 html] >>>>> should do, but the # symbol means a comment. Is this a public >>>>> hosting >>>>> service or a private server? If .htaccess is enabled then you can >>>>> force an error if you write some meaningless text in it. If this >>>>> does >>>>> not work then probably it should be enabled using the >>>>> AllowOverride >>>>> directive of Apache HTTPD. >>>>> >>>>> Best, >>>>> Rostislav >>>>> >>>>> >>>>> On 4/24/07, Nathan Meyers <nm...@te...> wrote: >>>>>> Hi again all >>>>>> I am having a few issues with .htaccess not working, and I just >>>>>> wanted to check that I have everything correct before asking >>>>>> server >>>>>> admin to do anything... >>>>>> >>>>>> ----------------- >>>>>> [root@vinesweb01 html]# cat /usr/local/vweb/orangedog/ >>>>>> www.houtbayonline.com/data/.htaccess >>>>>> <IfModule mod_rewrite.c> >>>>>> >>>>>> RewriteEngine on >>>>>> RewriteBase / >>>>>> >>>>>> RewriteCond %{HTTP_USER_AGENT} Googlebot|Msnbot|Slurp|Jeeves >>>>>> [NC] >>>>>> RewriteCond %{REQUEST_FILENAME} !-f >>>>>> RewriteCond %{REQUEST_FILENAME} !-d >>>>>> RewriteCond %{QUERY_STRING} (.*) >>>>>> RewriteRule ^(.+[^/])(/?)$ ?swfaddress=/$1/&%1 >>>>>> [NE,L] >>>>>> >>>>>> RewriteCond %{HTTP_USER_AGENT} MSIE >>>>>> [NC] >>>>>> RewriteCond %{REQUEST_FILENAME} !-f >>>>>> RewriteCond %{REQUEST_FILENAME} !-d >>>>>> RewriteCond %{QUERY_STRING} (.+) >>>>>> RewriteRule ^(.+[^/])(/?)$ ?/$1/?%1 >>>>>> [R,NE,L] >>>>>> >>>>>> RewriteCond %{HTTP_USER_AGENT} MSIE >>>>>> [NC] >>>>>> RewriteCond %{REQUEST_FILENAME} !-f >>>>>> RewriteCond %{REQUEST_FILENAME} !-d >>>>>> RewriteCond %{QUERY_STRING} !(.+) >>>>>> RewriteRule ^(.+[^/])(/?)$ ?/$1/ >>>>>> [R,NE,L] >>>>>> >>>>>> RewriteCond %{REQUEST_FILENAME} !-f >>>>>> RewriteCond %{REQUEST_FILENAME} !-d >>>>>> RewriteRule ^(.+[^/])(/?)$ #/$1/ >>>>>> [R,NE,L] >>>>>> >>>>>> </IfModule> >>>>>> >>>>>> ----------------- >>>>>> >>>>>> Does the [root@vinesweb01 html] actually matter? I don't know >>>>>> what to >>>>>> change that to, but this one is from a previous website, so it's >>>>>> obviously completely wrong for this server. >>>>>> If everything above is correct, what do I need to ask server >>>>>> admin to >>>>>> do to make the .htaccess work? >>>>>> >>>>>> Thanks everyone :-) >>>>>> >>>>>> Nathan Meyers @ The Orange Dog >>>>>> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27 >>>>>> [0] >>>>>> 21 790 6092 | F:+27[0]21 791 4460 >>>>>> >>>>>> View our portfolio: http://www.orangedog.co.za/ >>>>>> Visit our Blog: http://www.orangedog.co.za/blog/ >>>>>> ---- >>>>>> NEW in 2006 >>>>>> Hout Bay Online: http://www.houtbayonline.com >>>>>> Powered by The Orange Dog >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> ----------------------------------------------------------------- >>>>>> -- >>>>>> -- >>>>>> ---- >>>>>> This SF.net email is sponsored by DB2 Express >>>>>> Download DB2 Express C - the FREE version of DB2 express and take >>>>>> control of your XML. No limits. Just data. Click to get it now. >>>>>> http://sourceforge.net/powerbar/db2/ >>>>>> _______________________________________________ >>>>>> swfaddress-users mailing list >>>>>> swf...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>>>>> >>>>> >>>>> >>>>> -- >>>>> Asual - open software that pushes the limits >>>>> http://www.asual.com/ >>>>> >>>>> ------------------------------------------------------------------ >>>>> -- >>>>> -- >>>>> --- >>>>> This SF.net email is sponsored by DB2 Express >>>>> Download DB2 Express C - the FREE version of DB2 express and take >>>>> control of your XML. No limits. Just data. Click to get it now. >>>>> http://sourceforge.net/powerbar/db2/ >>>>> _______________________________________________ >>>>> swfaddress-users mailing list >>>>> swf...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>>>> >>>> >>>> >>>> ------------------------------------------------------------------- >>>> -- >>>> ---- >>>> This SF.net email is sponsored by DB2 Express >>>> Download DB2 Express C - the FREE version of DB2 express and take >>>> control of your XML. No limits. Just data. Click to get it now. >>>> http://sourceforge.net/powerbar/db2/ >>>> _______________________________________________ >>>> swfaddress-users mailing list >>>> swf...@li... >>>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>>> >>> >>> -------------------------------------------------------------------- >>> -- >>> --- >>> This SF.net email is sponsored by DB2 Express >>> Download DB2 Express C - the FREE version of DB2 express and take >>> control of your XML. No limits. Just data. Click to get it now. >>> http://sourceforge.net/powerbar/db2/ >>> _______________________________________________ >>> swfaddress-users mailing list >>> swf...@li... >>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>> >> >> >> --------------------------------------------------------------------- >> ---- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Rostislav H. <ros...@gm...> - 2007-04-25 07:22:38
|
Just copy and paste the file from your Perfect Hideaways server without modifying the content. If it does not work try removing or commenting lines to detect where exactly is the problem. -- Asual - open software that pushes the limits http://www.asual.com/ On 4/25/07, Nathan Meyers <nm...@te...> wrote: > Hmm, good test. With just 'RewriteEngine on' in the file I don't get > an error, so it must be working! > > I think my syntax must have gone wrong, because I have only a copy > and paste version of the file that you used on my previous project. > Are you possibly able to send me the file so I can see if that works. > I'm sure that during the copy/paste/email process something went wrong. > > Thanks Rostislav for all your help so far. > > Nathan Meyers @ The Orange Dog > The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] > 21 790 6092 | F:+27[0]21 791 4460 > > View our portfolio: http://www.orangedog.co.za/ > Visit our Blog: http://www.orangedog.co.za/blog/ > ---- > NEW in 2006 > Hout Bay Online: http://www.houtbayonline.com > Powered by The Orange Dog > > > > On Apr 25, 2007, at 8:52 AM, Rostislav Hristov wrote: > > > The good thing is that there is a progress :) > > > > Remove that /usr/local/ line completely, If the problem still exist > > try testing only with "RewriteEngine on" single line to check if > > mod_rewrite is enabled. > > > > > > -- > > Asual - open software that pushes the limits > > http://www.asual.com/ > > > > > > On 4/24/07, Nathan Meyers <nm...@te...> wrote: > >> Hmm, after activating the .htaccess on the server I am still getting > >> this error... > >> > >> -------------- > >> Internal Server Error > >> > >> The server encountered an internal error or misconfiguration and was > >> unable to complete your request. > >> > >> Please contact the server administrator, web...@ho... > >> 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. > >> -------------- > >> > >> Something in the file must be wrong, and I think it has to be the > >> header. I know the path to the server is... > >>>> /usr/local/vweb/orangedog/www.houtbayonline.com/data/.htaccess > >> ..but if that is commented anyway I don't suppose it makes a > >> difference. > >> Is there anything I am missing here? > >> > >> Rostislav, I am using the same file here as you used on my Perfect > >> Hideaways project, but I am just not getting this. > >> > >> Any further help would be appreciated! > >> > >> Thanks, > >> Nathan Meyers @ The Orange Dog > >> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] > >> 21 790 6092 | F:+27[0]21 791 4460 > >> > >> View our portfolio: http://www.orangedog.co.za/ > >> Visit our Blog: http://www.orangedog.co.za/blog/ > >> ---- > >> NEW in 2006 > >> Hout Bay Online: http://www.houtbayonline.com > >> Powered by The Orange Dog > >> > >> > >> > >> On Apr 24, 2007, at 5:41 PM, Rostislav Hristov wrote: > >> > >>> Hi Nathan, > >>> > >>> the .htaccess file should be places in the root folder of the > >>> website, > >>> not in a subfolder. I have no idea what the [root@vinesweb01 html] > >>> should do, but the # symbol means a comment. Is this a public > >>> hosting > >>> service or a private server? If .htaccess is enabled then you can > >>> force an error if you write some meaningless text in it. If this > >>> does > >>> not work then probably it should be enabled using the AllowOverride > >>> directive of Apache HTTPD. > >>> > >>> Best, > >>> Rostislav > >>> > >>> > >>> On 4/24/07, Nathan Meyers <nm...@te...> wrote: > >>>> Hi again all > >>>> I am having a few issues with .htaccess not working, and I just > >>>> wanted to check that I have everything correct before asking server > >>>> admin to do anything... > >>>> > >>>> ----------------- > >>>> [root@vinesweb01 html]# cat /usr/local/vweb/orangedog/ > >>>> www.houtbayonline.com/data/.htaccess > >>>> <IfModule mod_rewrite.c> > >>>> > >>>> RewriteEngine on > >>>> RewriteBase / > >>>> > >>>> RewriteCond %{HTTP_USER_AGENT} Googlebot|Msnbot|Slurp|Jeeves > >>>> [NC] > >>>> RewriteCond %{REQUEST_FILENAME} !-f > >>>> RewriteCond %{REQUEST_FILENAME} !-d > >>>> RewriteCond %{QUERY_STRING} (.*) > >>>> RewriteRule ^(.+[^/])(/?)$ ?swfaddress=/$1/&%1 > >>>> [NE,L] > >>>> > >>>> RewriteCond %{HTTP_USER_AGENT} MSIE > >>>> [NC] > >>>> RewriteCond %{REQUEST_FILENAME} !-f > >>>> RewriteCond %{REQUEST_FILENAME} !-d > >>>> RewriteCond %{QUERY_STRING} (.+) > >>>> RewriteRule ^(.+[^/])(/?)$ ?/$1/?%1 > >>>> [R,NE,L] > >>>> > >>>> RewriteCond %{HTTP_USER_AGENT} MSIE > >>>> [NC] > >>>> RewriteCond %{REQUEST_FILENAME} !-f > >>>> RewriteCond %{REQUEST_FILENAME} !-d > >>>> RewriteCond %{QUERY_STRING} !(.+) > >>>> RewriteRule ^(.+[^/])(/?)$ ?/$1/ > >>>> [R,NE,L] > >>>> > >>>> RewriteCond %{REQUEST_FILENAME} !-f > >>>> RewriteCond %{REQUEST_FILENAME} !-d > >>>> RewriteRule ^(.+[^/])(/?)$ #/$1/ > >>>> [R,NE,L] > >>>> > >>>> </IfModule> > >>>> > >>>> ----------------- > >>>> > >>>> Does the [root@vinesweb01 html] actually matter? I don't know > >>>> what to > >>>> change that to, but this one is from a previous website, so it's > >>>> obviously completely wrong for this server. > >>>> If everything above is correct, what do I need to ask server > >>>> admin to > >>>> do to make the .htaccess work? > >>>> > >>>> Thanks everyone :-) > >>>> > >>>> Nathan Meyers @ The Orange Dog > >>>> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27 > >>>> [0] > >>>> 21 790 6092 | F:+27[0]21 791 4460 > >>>> > >>>> View our portfolio: http://www.orangedog.co.za/ > >>>> Visit our Blog: http://www.orangedog.co.za/blog/ > >>>> ---- > >>>> NEW in 2006 > >>>> Hout Bay Online: http://www.houtbayonline.com > >>>> Powered by The Orange Dog > >>>> > >>>> > >>>> > >>>> > >>>> ------------------------------------------------------------------- > >>>> -- > >>>> ---- > >>>> This SF.net email is sponsored by DB2 Express > >>>> Download DB2 Express C - the FREE version of DB2 express and take > >>>> control of your XML. No limits. Just data. Click to get it now. > >>>> http://sourceforge.net/powerbar/db2/ > >>>> _______________________________________________ > >>>> swfaddress-users mailing list > >>>> swf...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users > >>>> > >>> > >>> > >>> -- > >>> Asual - open software that pushes the limits > >>> http://www.asual.com/ > >>> > >>> -------------------------------------------------------------------- > >>> -- > >>> --- > >>> This SF.net email is sponsored by DB2 Express > >>> Download DB2 Express C - the FREE version of DB2 express and take > >>> control of your XML. No limits. Just data. Click to get it now. > >>> http://sourceforge.net/powerbar/db2/ > >>> _______________________________________________ > >>> swfaddress-users mailing list > >>> swf...@li... > >>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users > >>> > >> > >> > >> --------------------------------------------------------------------- > >> ---- > >> This SF.net email is sponsored by DB2 Express > >> Download DB2 Express C - the FREE version of DB2 express and take > >> control of your XML. No limits. Just data. Click to get it now. > >> http://sourceforge.net/powerbar/db2/ > >> _______________________________________________ > >> swfaddress-users mailing list > >> swf...@li... > >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users > >> > > > > ---------------------------------------------------------------------- > > --- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > swfaddress-users mailing list > > swf...@li... > > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Nathan M. <nm...@te...> - 2007-04-25 07:11:34
|
Hmm, good test. With just 'RewriteEngine on' in the file I don't get an error, so it must be working! I think my syntax must have gone wrong, because I have only a copy and paste version of the file that you used on my previous project. Are you possibly able to send me the file so I can see if that works. I'm sure that during the copy/paste/email process something went wrong. Thanks Rostislav for all your help so far. Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog On Apr 25, 2007, at 8:52 AM, Rostislav Hristov wrote: > The good thing is that there is a progress :) > > Remove that /usr/local/ line completely, If the problem still exist > try testing only with "RewriteEngine on" single line to check if > mod_rewrite is enabled. > > > -- > Asual - open software that pushes the limits > http://www.asual.com/ > > > On 4/24/07, Nathan Meyers <nm...@te...> wrote: >> Hmm, after activating the .htaccess on the server I am still getting >> this error... >> >> -------------- >> Internal Server Error >> >> The server encountered an internal error or misconfiguration and was >> unable to complete your request. >> >> Please contact the server administrator, web...@ho... >> 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. >> -------------- >> >> Something in the file must be wrong, and I think it has to be the >> header. I know the path to the server is... >>>> /usr/local/vweb/orangedog/www.houtbayonline.com/data/.htaccess >> ..but if that is commented anyway I don't suppose it makes a >> difference. >> Is there anything I am missing here? >> >> Rostislav, I am using the same file here as you used on my Perfect >> Hideaways project, but I am just not getting this. >> >> Any further help would be appreciated! >> >> Thanks, >> Nathan Meyers @ The Orange Dog >> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] >> 21 790 6092 | F:+27[0]21 791 4460 >> >> View our portfolio: http://www.orangedog.co.za/ >> Visit our Blog: http://www.orangedog.co.za/blog/ >> ---- >> NEW in 2006 >> Hout Bay Online: http://www.houtbayonline.com >> Powered by The Orange Dog >> >> >> >> On Apr 24, 2007, at 5:41 PM, Rostislav Hristov wrote: >> >>> Hi Nathan, >>> >>> the .htaccess file should be places in the root folder of the >>> website, >>> not in a subfolder. I have no idea what the [root@vinesweb01 html] >>> should do, but the # symbol means a comment. Is this a public >>> hosting >>> service or a private server? If .htaccess is enabled then you can >>> force an error if you write some meaningless text in it. If this >>> does >>> not work then probably it should be enabled using the AllowOverride >>> directive of Apache HTTPD. >>> >>> Best, >>> Rostislav >>> >>> >>> On 4/24/07, Nathan Meyers <nm...@te...> wrote: >>>> Hi again all >>>> I am having a few issues with .htaccess not working, and I just >>>> wanted to check that I have everything correct before asking server >>>> admin to do anything... >>>> >>>> ----------------- >>>> [root@vinesweb01 html]# cat /usr/local/vweb/orangedog/ >>>> www.houtbayonline.com/data/.htaccess >>>> <IfModule mod_rewrite.c> >>>> >>>> RewriteEngine on >>>> RewriteBase / >>>> >>>> RewriteCond %{HTTP_USER_AGENT} Googlebot|Msnbot|Slurp|Jeeves >>>> [NC] >>>> RewriteCond %{REQUEST_FILENAME} !-f >>>> RewriteCond %{REQUEST_FILENAME} !-d >>>> RewriteCond %{QUERY_STRING} (.*) >>>> RewriteRule ^(.+[^/])(/?)$ ?swfaddress=/$1/&%1 >>>> [NE,L] >>>> >>>> RewriteCond %{HTTP_USER_AGENT} MSIE >>>> [NC] >>>> RewriteCond %{REQUEST_FILENAME} !-f >>>> RewriteCond %{REQUEST_FILENAME} !-d >>>> RewriteCond %{QUERY_STRING} (.+) >>>> RewriteRule ^(.+[^/])(/?)$ ?/$1/?%1 >>>> [R,NE,L] >>>> >>>> RewriteCond %{HTTP_USER_AGENT} MSIE >>>> [NC] >>>> RewriteCond %{REQUEST_FILENAME} !-f >>>> RewriteCond %{REQUEST_FILENAME} !-d >>>> RewriteCond %{QUERY_STRING} !(.+) >>>> RewriteRule ^(.+[^/])(/?)$ ?/$1/ >>>> [R,NE,L] >>>> >>>> RewriteCond %{REQUEST_FILENAME} !-f >>>> RewriteCond %{REQUEST_FILENAME} !-d >>>> RewriteRule ^(.+[^/])(/?)$ #/$1/ >>>> [R,NE,L] >>>> >>>> </IfModule> >>>> >>>> ----------------- >>>> >>>> Does the [root@vinesweb01 html] actually matter? I don't know >>>> what to >>>> change that to, but this one is from a previous website, so it's >>>> obviously completely wrong for this server. >>>> If everything above is correct, what do I need to ask server >>>> admin to >>>> do to make the .htaccess work? >>>> >>>> Thanks everyone :-) >>>> >>>> Nathan Meyers @ The Orange Dog >>>> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27 >>>> [0] >>>> 21 790 6092 | F:+27[0]21 791 4460 >>>> >>>> View our portfolio: http://www.orangedog.co.za/ >>>> Visit our Blog: http://www.orangedog.co.za/blog/ >>>> ---- >>>> NEW in 2006 >>>> Hout Bay Online: http://www.houtbayonline.com >>>> Powered by The Orange Dog >>>> >>>> >>>> >>>> >>>> ------------------------------------------------------------------- >>>> -- >>>> ---- >>>> This SF.net email is sponsored by DB2 Express >>>> Download DB2 Express C - the FREE version of DB2 express and take >>>> control of your XML. No limits. Just data. Click to get it now. >>>> http://sourceforge.net/powerbar/db2/ >>>> _______________________________________________ >>>> swfaddress-users mailing list >>>> swf...@li... >>>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>>> >>> >>> >>> -- >>> Asual - open software that pushes the limits >>> http://www.asual.com/ >>> >>> -------------------------------------------------------------------- >>> -- >>> --- >>> This SF.net email is sponsored by DB2 Express >>> Download DB2 Express C - the FREE version of DB2 express and take >>> control of your XML. No limits. Just data. Click to get it now. >>> http://sourceforge.net/powerbar/db2/ >>> _______________________________________________ >>> swfaddress-users mailing list >>> swf...@li... >>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>> >> >> >> --------------------------------------------------------------------- >> ---- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Rostislav H. <ros...@gm...> - 2007-04-25 06:52:37
|
The good thing is that there is a progress :) Remove that /usr/local/ line completely, If the problem still exist try testing only with "RewriteEngine on" single line to check if mod_rewrite is enabled. -- Asual - open software that pushes the limits http://www.asual.com/ On 4/24/07, Nathan Meyers <nm...@te...> wrote: > Hmm, after activating the .htaccess on the server I am still getting > this error... > > -------------- > Internal Server Error > > The server encountered an internal error or misconfiguration and was > unable to complete your request. > > Please contact the server administrator, web...@ho... > 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. > -------------- > > Something in the file must be wrong, and I think it has to be the > header. I know the path to the server is... > >> /usr/local/vweb/orangedog/www.houtbayonline.com/data/.htaccess > ..but if that is commented anyway I don't suppose it makes a difference. > Is there anything I am missing here? > > Rostislav, I am using the same file here as you used on my Perfect > Hideaways project, but I am just not getting this. > > Any further help would be appreciated! > > Thanks, > Nathan Meyers @ The Orange Dog > The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] > 21 790 6092 | F:+27[0]21 791 4460 > > View our portfolio: http://www.orangedog.co.za/ > Visit our Blog: http://www.orangedog.co.za/blog/ > ---- > NEW in 2006 > Hout Bay Online: http://www.houtbayonline.com > Powered by The Orange Dog > > > > On Apr 24, 2007, at 5:41 PM, Rostislav Hristov wrote: > > > Hi Nathan, > > > > the .htaccess file should be places in the root folder of the website, > > not in a subfolder. I have no idea what the [root@vinesweb01 html] > > should do, but the # symbol means a comment. Is this a public hosting > > service or a private server? If .htaccess is enabled then you can > > force an error if you write some meaningless text in it. If this does > > not work then probably it should be enabled using the AllowOverride > > directive of Apache HTTPD. > > > > Best, > > Rostislav > > > > > > On 4/24/07, Nathan Meyers <nm...@te...> wrote: > >> Hi again all > >> I am having a few issues with .htaccess not working, and I just > >> wanted to check that I have everything correct before asking server > >> admin to do anything... > >> > >> ----------------- > >> [root@vinesweb01 html]# cat /usr/local/vweb/orangedog/ > >> www.houtbayonline.com/data/.htaccess > >> <IfModule mod_rewrite.c> > >> > >> RewriteEngine on > >> RewriteBase / > >> > >> RewriteCond %{HTTP_USER_AGENT} Googlebot|Msnbot|Slurp|Jeeves > >> [NC] > >> RewriteCond %{REQUEST_FILENAME} !-f > >> RewriteCond %{REQUEST_FILENAME} !-d > >> RewriteCond %{QUERY_STRING} (.*) > >> RewriteRule ^(.+[^/])(/?)$ ?swfaddress=/$1/&%1 > >> [NE,L] > >> > >> RewriteCond %{HTTP_USER_AGENT} MSIE > >> [NC] > >> RewriteCond %{REQUEST_FILENAME} !-f > >> RewriteCond %{REQUEST_FILENAME} !-d > >> RewriteCond %{QUERY_STRING} (.+) > >> RewriteRule ^(.+[^/])(/?)$ ?/$1/?%1 > >> [R,NE,L] > >> > >> RewriteCond %{HTTP_USER_AGENT} MSIE > >> [NC] > >> RewriteCond %{REQUEST_FILENAME} !-f > >> RewriteCond %{REQUEST_FILENAME} !-d > >> RewriteCond %{QUERY_STRING} !(.+) > >> RewriteRule ^(.+[^/])(/?)$ ?/$1/ > >> [R,NE,L] > >> > >> RewriteCond %{REQUEST_FILENAME} !-f > >> RewriteCond %{REQUEST_FILENAME} !-d > >> RewriteRule ^(.+[^/])(/?)$ #/$1/ > >> [R,NE,L] > >> > >> </IfModule> > >> > >> ----------------- > >> > >> Does the [root@vinesweb01 html] actually matter? I don't know what to > >> change that to, but this one is from a previous website, so it's > >> obviously completely wrong for this server. > >> If everything above is correct, what do I need to ask server admin to > >> do to make the .htaccess work? > >> > >> Thanks everyone :-) > >> > >> Nathan Meyers @ The Orange Dog > >> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] > >> 21 790 6092 | F:+27[0]21 791 4460 > >> > >> View our portfolio: http://www.orangedog.co.za/ > >> Visit our Blog: http://www.orangedog.co.za/blog/ > >> ---- > >> NEW in 2006 > >> Hout Bay Online: http://www.houtbayonline.com > >> Powered by The Orange Dog > >> > >> > >> > >> > >> --------------------------------------------------------------------- > >> ---- > >> This SF.net email is sponsored by DB2 Express > >> Download DB2 Express C - the FREE version of DB2 express and take > >> control of your XML. No limits. Just data. Click to get it now. > >> http://sourceforge.net/powerbar/db2/ > >> _______________________________________________ > >> swfaddress-users mailing list > >> swf...@li... > >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users > >> > > > > > > -- > > Asual - open software that pushes the limits > > http://www.asual.com/ > > > > ---------------------------------------------------------------------- > > --- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > swfaddress-users mailing list > > swf...@li... > > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Nathan M. <nm...@te...> - 2007-04-24 21:00:04
|
Hmm, after activating the .htaccess on the server I am still getting this error... -------------- Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, web...@ho... 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. -------------- Something in the file must be wrong, and I think it has to be the header. I know the path to the server is... >> /usr/local/vweb/orangedog/www.houtbayonline.com/data/.htaccess ..but if that is commented anyway I don't suppose it makes a difference. Is there anything I am missing here? Rostislav, I am using the same file here as you used on my Perfect Hideaways project, but I am just not getting this. Any further help would be appreciated! Thanks, Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog On Apr 24, 2007, at 5:41 PM, Rostislav Hristov wrote: > Hi Nathan, > > the .htaccess file should be places in the root folder of the website, > not in a subfolder. I have no idea what the [root@vinesweb01 html] > should do, but the # symbol means a comment. Is this a public hosting > service or a private server? If .htaccess is enabled then you can > force an error if you write some meaningless text in it. If this does > not work then probably it should be enabled using the AllowOverride > directive of Apache HTTPD. > > Best, > Rostislav > > > On 4/24/07, Nathan Meyers <nm...@te...> wrote: >> Hi again all >> I am having a few issues with .htaccess not working, and I just >> wanted to check that I have everything correct before asking server >> admin to do anything... >> >> ----------------- >> [root@vinesweb01 html]# cat /usr/local/vweb/orangedog/ >> www.houtbayonline.com/data/.htaccess >> <IfModule mod_rewrite.c> >> >> RewriteEngine on >> RewriteBase / >> >> RewriteCond %{HTTP_USER_AGENT} Googlebot|Msnbot|Slurp|Jeeves >> [NC] >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteCond %{QUERY_STRING} (.*) >> RewriteRule ^(.+[^/])(/?)$ ?swfaddress=/$1/&%1 >> [NE,L] >> >> RewriteCond %{HTTP_USER_AGENT} MSIE >> [NC] >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteCond %{QUERY_STRING} (.+) >> RewriteRule ^(.+[^/])(/?)$ ?/$1/?%1 >> [R,NE,L] >> >> RewriteCond %{HTTP_USER_AGENT} MSIE >> [NC] >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteCond %{QUERY_STRING} !(.+) >> RewriteRule ^(.+[^/])(/?)$ ?/$1/ >> [R,NE,L] >> >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteRule ^(.+[^/])(/?)$ #/$1/ >> [R,NE,L] >> >> </IfModule> >> >> ----------------- >> >> Does the [root@vinesweb01 html] actually matter? I don't know what to >> change that to, but this one is from a previous website, so it's >> obviously completely wrong for this server. >> If everything above is correct, what do I need to ask server admin to >> do to make the .htaccess work? >> >> Thanks everyone :-) >> >> Nathan Meyers @ The Orange Dog >> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] >> 21 790 6092 | F:+27[0]21 791 4460 >> >> View our portfolio: http://www.orangedog.co.za/ >> Visit our Blog: http://www.orangedog.co.za/blog/ >> ---- >> NEW in 2006 >> Hout Bay Online: http://www.houtbayonline.com >> Powered by The Orange Dog >> >> >> >> >> --------------------------------------------------------------------- >> ---- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> > > > -- > Asual - open software that pushes the limits > http://www.asual.com/ > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Nathan M. <nm...@te...> - 2007-04-24 16:09:04
|
Thanks Rostislav I've determined that it is indeed the server that hasn't been configured. It is my private server, and I've asked my administrator to look into making it work. I will let you know if I require any further help when the server is set up. Thanks again for your reply! Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog On Apr 24, 2007, at 5:41 PM, Rostislav Hristov wrote: > Hi Nathan, > > the .htaccess file should be places in the root folder of the website, > not in a subfolder. I have no idea what the [root@vinesweb01 html] > should do, but the # symbol means a comment. Is this a public hosting > service or a private server? If .htaccess is enabled then you can > force an error if you write some meaningless text in it. If this does > not work then probably it should be enabled using the AllowOverride > directive of Apache HTTPD. > > Best, > Rostislav > > > On 4/24/07, Nathan Meyers <nm...@te...> wrote: >> Hi again all >> I am having a few issues with .htaccess not working, and I just >> wanted to check that I have everything correct before asking server >> admin to do anything... >> >> ----------------- >> [root@vinesweb01 html]# cat /usr/local/vweb/orangedog/ >> www.houtbayonline.com/data/.htaccess >> <IfModule mod_rewrite.c> >> >> RewriteEngine on >> RewriteBase / >> >> RewriteCond %{HTTP_USER_AGENT} Googlebot|Msnbot|Slurp|Jeeves >> [NC] >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteCond %{QUERY_STRING} (.*) >> RewriteRule ^(.+[^/])(/?)$ ?swfaddress=/$1/&%1 >> [NE,L] >> >> RewriteCond %{HTTP_USER_AGENT} MSIE >> [NC] >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteCond %{QUERY_STRING} (.+) >> RewriteRule ^(.+[^/])(/?)$ ?/$1/?%1 >> [R,NE,L] >> >> RewriteCond %{HTTP_USER_AGENT} MSIE >> [NC] >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteCond %{QUERY_STRING} !(.+) >> RewriteRule ^(.+[^/])(/?)$ ?/$1/ >> [R,NE,L] >> >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteRule ^(.+[^/])(/?)$ #/$1/ >> [R,NE,L] >> >> </IfModule> >> >> ----------------- >> >> Does the [root@vinesweb01 html] actually matter? I don't know what to >> change that to, but this one is from a previous website, so it's >> obviously completely wrong for this server. >> If everything above is correct, what do I need to ask server admin to >> do to make the .htaccess work? >> >> Thanks everyone :-) >> >> Nathan Meyers @ The Orange Dog >> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] >> 21 790 6092 | F:+27[0]21 791 4460 >> >> View our portfolio: http://www.orangedog.co.za/ >> Visit our Blog: http://www.orangedog.co.za/blog/ >> ---- >> NEW in 2006 >> Hout Bay Online: http://www.houtbayonline.com >> Powered by The Orange Dog >> >> >> >> >> --------------------------------------------------------------------- >> ---- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> > > > -- > Asual - open software that pushes the limits > http://www.asual.com/ > > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Rostislav H. <ros...@gm...> - 2007-04-24 15:41:44
|
Hi Nathan, the .htaccess file should be places in the root folder of the website, not in a subfolder. I have no idea what the [root@vinesweb01 html] should do, but the # symbol means a comment. Is this a public hosting service or a private server? If .htaccess is enabled then you can force an error if you write some meaningless text in it. If this does not work then probably it should be enabled using the AllowOverride directive of Apache HTTPD. Best, Rostislav On 4/24/07, Nathan Meyers <nm...@te...> wrote: > Hi again all > I am having a few issues with .htaccess not working, and I just > wanted to check that I have everything correct before asking server > admin to do anything... > > ----------------- > [root@vinesweb01 html]# cat /usr/local/vweb/orangedog/ > www.houtbayonline.com/data/.htaccess > <IfModule mod_rewrite.c> > > RewriteEngine on > RewriteBase / > > RewriteCond %{HTTP_USER_AGENT} Googlebot|Msnbot|Slurp|Jeeves > [NC] > RewriteCond %{REQUEST_FILENAME} !-f > RewriteCond %{REQUEST_FILENAME} !-d > RewriteCond %{QUERY_STRING} (.*) > RewriteRule ^(.+[^/])(/?)$ ?swfaddress=/$1/&%1 > [NE,L] > > RewriteCond %{HTTP_USER_AGENT} MSIE > [NC] > RewriteCond %{REQUEST_FILENAME} !-f > RewriteCond %{REQUEST_FILENAME} !-d > RewriteCond %{QUERY_STRING} (.+) > RewriteRule ^(.+[^/])(/?)$ ?/$1/?%1 > [R,NE,L] > > RewriteCond %{HTTP_USER_AGENT} MSIE > [NC] > RewriteCond %{REQUEST_FILENAME} !-f > RewriteCond %{REQUEST_FILENAME} !-d > RewriteCond %{QUERY_STRING} !(.+) > RewriteRule ^(.+[^/])(/?)$ ?/$1/ > [R,NE,L] > > RewriteCond %{REQUEST_FILENAME} !-f > RewriteCond %{REQUEST_FILENAME} !-d > RewriteRule ^(.+[^/])(/?)$ #/$1/ > [R,NE,L] > > </IfModule> > > ----------------- > > Does the [root@vinesweb01 html] actually matter? I don't know what to > change that to, but this one is from a previous website, so it's > obviously completely wrong for this server. > If everything above is correct, what do I need to ask server admin to > do to make the .htaccess work? > > Thanks everyone :-) > > Nathan Meyers @ The Orange Dog > The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] > 21 790 6092 | F:+27[0]21 791 4460 > > View our portfolio: http://www.orangedog.co.za/ > Visit our Blog: http://www.orangedog.co.za/blog/ > ---- > NEW in 2006 > Hout Bay Online: http://www.houtbayonline.com > Powered by The Orange Dog > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > -- Asual - open software that pushes the limits http://www.asual.com/ |
From: Nathan M. <nm...@te...> - 2007-04-24 12:13:42
|
Hi again all I am having a few issues with .htaccess not working, and I just wanted to check that I have everything correct before asking server admin to do anything... ----------------- [root@vinesweb01 html]# cat /usr/local/vweb/orangedog/ www.houtbayonline.com/data/.htaccess <IfModule mod_rewrite.c> RewriteEngine on RewriteBase / RewriteCond %{HTTP_USER_AGENT} Googlebot|Msnbot|Slurp|Jeeves [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{QUERY_STRING} (.*) RewriteRule ^(.+[^/])(/?)$ ?swfaddress=/$1/&%1 [NE,L] RewriteCond %{HTTP_USER_AGENT} MSIE [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{QUERY_STRING} (.+) RewriteRule ^(.+[^/])(/?)$ ?/$1/?%1 [R,NE,L] RewriteCond %{HTTP_USER_AGENT} MSIE [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{QUERY_STRING} !(.+) RewriteRule ^(.+[^/])(/?)$ ?/$1/ [R,NE,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+[^/])(/?)$ #/$1/ [R,NE,L] </IfModule> ----------------- Does the [root@vinesweb01 html] actually matter? I don't know what to change that to, but this one is from a previous website, so it's obviously completely wrong for this server. If everything above is correct, what do I need to ask server admin to do to make the .htaccess work? Thanks everyone :-) Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog |
From: Nathan M. <nm...@te...> - 2007-04-10 07:05:30
|
Hi Rostislav I am going to need to use the .htaacess file because it is an Apache server. What is actually included in this file, is there a standard version, or do you have to customise it to the server? If you have a working one that I can just upload I'd appreciate it. Thanks so much, Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog On Apr 9, 2007, at 7:56 PM, Rostislav Hristov wrote: > It seems that the URL rewriting is not working. For Apache you need to > use the .htaccess file, urlrewrite.xml is only for Tomcat or other > Java servers. Is this site on the same server, do you have > AllowOverride enabled for it? > > > On 4/9/07, Nathan Meyers <nm...@te...> wrote: >> Hi >> I am having trouble with one aspect of SWFAddress. I have it >> working on >> www.houtbayonline.com, for the four main sections of the site. After >> submitting a sitemap.xml file to Google Sitemaps, I saw that >> Google couldn't >> actually find, for example, >> http://www.houtbayonline.com/life/ >> >> After trying it myself in a browser I see it actually isn't >> transforming to >> the URL needed by SWFAddress, which is >> http://www.houtbayonline.com/#/life/ >> >> I am using a version of SWFAddress that Rostislav so perfectly >> crafted for >> another site of mine, and although everything works perfectly, I >> can't seem >> to find the problem with this. >> Is there anything on the server that needs to be customised, >> because I see >> there's a file in the SEO folder called urlrewrite.xml? >> >> My sitemap.xml file has this code... >> >> <?xml version="1.0" encoding="UTF-8"?> >> <urlset >> xmlns="http://www.google.com/schemas/sitemap/0.84" >> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >> >> xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 >> >> http://www.google.com/schemas/sitemap/0.84/sitemap.xsd"> >> <url> >> <loc>http://www.houtbayonline.com/</loc> >> <priority>1</priority> >> </url> >> <url> >> <loc>http://www.houtbayonline.com/life/</loc> >> <priority>1</priority> >> </url> >> <url> >> <loc>http://www.houtbayonline.com/business/</loc> >> <priority>1</priority> >> </url> >> <url> >> <loc>http://www.houtbayonline.com/tourism/</loc> >> <priority>1</priority> >> </url> >> <url> >> <loc>http://www.houtbayonline.com/market/</loc> >> <priority>1</priority> >> </url> >> </urlset> >> >> >> Any information would be appreciated. >> >> Thanks, >> >> >> >> >> >> Nathan Meyers @ The Orange Dog >> >> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27 >> [0]21 790 >> 6092 | F:+27[0]21 791 4460 >> >> >> >> >> View our portfolio: http://www.orangedog.co.za/ >> >> Visit our Blog: http://www.orangedog.co.za/blog/ >> >> ---- >> >> NEW in 2006 >> >> Hout Bay Online: http://www.houtbayonline.com >> >> Powered by The Orange Dog >> >> >> >> >> >> --------------------------------------------------------------------- >> ---- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php? >> page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> >> > > > -- > Asual - open software that pushes the limits > http://www.asual.com/ > > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Nathan M. <nm...@te...> - 2007-04-09 21:33:04
|
Thanks for the reply Rostislav I'm gonna have to check this with my server administrator, now that I know what to ask him for. This site is on a different server to the site that you set up for me a while back. Let me get some technical details and I will let you know whether I can sort it out from there. Thanks Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog On Apr 9, 2007, at 7:56 PM, Rostislav Hristov wrote: > It seems that the URL rewriting is not working. For Apache you need to > use the .htaccess file, urlrewrite.xml is only for Tomcat or other > Java servers. Is this site on the same server, do you have > AllowOverride enabled for it? > > > On 4/9/07, Nathan Meyers <nm...@te...> wrote: >> Hi >> I am having trouble with one aspect of SWFAddress. I have it >> working on >> www.houtbayonline.com, for the four main sections of the site. After >> submitting a sitemap.xml file to Google Sitemaps, I saw that >> Google couldn't >> actually find, for example, >> http://www.houtbayonline.com/life/ >> >> After trying it myself in a browser I see it actually isn't >> transforming to >> the URL needed by SWFAddress, which is >> http://www.houtbayonline.com/#/life/ >> >> I am using a version of SWFAddress that Rostislav so perfectly >> crafted for >> another site of mine, and although everything works perfectly, I >> can't seem >> to find the problem with this. >> Is there anything on the server that needs to be customised, >> because I see >> there's a file in the SEO folder called urlrewrite.xml? >> >> My sitemap.xml file has this code... >> >> <?xml version="1.0" encoding="UTF-8"?> >> <urlset >> xmlns="http://www.google.com/schemas/sitemap/0.84" >> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >> >> xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 >> >> http://www.google.com/schemas/sitemap/0.84/sitemap.xsd"> >> <url> >> <loc>http://www.houtbayonline.com/</loc> >> <priority>1</priority> >> </url> >> <url> >> <loc>http://www.houtbayonline.com/life/</loc> >> <priority>1</priority> >> </url> >> <url> >> <loc>http://www.houtbayonline.com/business/</loc> >> <priority>1</priority> >> </url> >> <url> >> <loc>http://www.houtbayonline.com/tourism/</loc> >> <priority>1</priority> >> </url> >> <url> >> <loc>http://www.houtbayonline.com/market/</loc> >> <priority>1</priority> >> </url> >> </urlset> >> >> >> Any information would be appreciated. >> >> Thanks, >> >> >> >> >> >> Nathan Meyers @ The Orange Dog >> >> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27 >> [0]21 790 >> 6092 | F:+27[0]21 791 4460 >> >> >> >> >> View our portfolio: http://www.orangedog.co.za/ >> >> Visit our Blog: http://www.orangedog.co.za/blog/ >> >> ---- >> >> NEW in 2006 >> >> Hout Bay Online: http://www.houtbayonline.com >> >> Powered by The Orange Dog >> >> >> >> >> >> --------------------------------------------------------------------- >> ---- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php? >> page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> >> > > > -- > Asual - open software that pushes the limits > http://www.asual.com/ > > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Rostislav H. <ros...@gm...> - 2007-04-09 17:56:25
|
It seems that the URL rewriting is not working. For Apache you need to use the .htaccess file, urlrewrite.xml is only for Tomcat or other Java servers. Is this site on the same server, do you have AllowOverride enabled for it? On 4/9/07, Nathan Meyers <nm...@te...> wrote: > Hi > I am having trouble with one aspect of SWFAddress. I have it working on > www.houtbayonline.com, for the four main sections of the site. After > submitting a sitemap.xml file to Google Sitemaps, I saw that Google couldn't > actually find, for example, > http://www.houtbayonline.com/life/ > > After trying it myself in a browser I see it actually isn't transforming to > the URL needed by SWFAddress, which is > http://www.houtbayonline.com/#/life/ > > I am using a version of SWFAddress that Rostislav so perfectly crafted for > another site of mine, and although everything works perfectly, I can't seem > to find the problem with this. > Is there anything on the server that needs to be customised, because I see > there's a file in the SEO folder called urlrewrite.xml? > > My sitemap.xml file has this code... > > <?xml version="1.0" encoding="UTF-8"?> > <urlset > xmlns="http://www.google.com/schemas/sitemap/0.84" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > > xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 > > http://www.google.com/schemas/sitemap/0.84/sitemap.xsd"> > <url> > <loc>http://www.houtbayonline.com/</loc> > <priority>1</priority> > </url> > <url> > <loc>http://www.houtbayonline.com/life/</loc> > <priority>1</priority> > </url> > <url> > <loc>http://www.houtbayonline.com/business/</loc> > <priority>1</priority> > </url> > <url> > <loc>http://www.houtbayonline.com/tourism/</loc> > <priority>1</priority> > </url> > <url> > <loc>http://www.houtbayonline.com/market/</loc> > <priority>1</priority> > </url> > </urlset> > > > Any information would be appreciated. > > Thanks, > > > > > > Nathan Meyers @ The Orange Dog > > The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0]21 790 > 6092 | F:+27[0]21 791 4460 > > > > > View our portfolio: http://www.orangedog.co.za/ > > Visit our Blog: http://www.orangedog.co.za/blog/ > > ---- > > NEW in 2006 > > Hout Bay Online: http://www.houtbayonline.com > > Powered by The Orange Dog > > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > -- Asual - open software that pushes the limits http://www.asual.com/ |
From: Nathan M. <nm...@te...> - 2007-04-09 11:51:05
|
Hi I am having trouble with one aspect of SWFAddress. I have it working on www.houtbayonline.com, for the four main sections of the site. After submitting a sitemap.xml file to Google Sitemaps, I saw that Google couldn't actually find, for example, http:// www.houtbayonline.com/life/ After trying it myself in a browser I see it actually isn't transforming to the URL needed by SWFAddress, which is http:// www.houtbayonline.com/#/life/ I am using a version of SWFAddress that Rostislav so perfectly crafted for another site of mine, and although everything works perfectly, I can't seem to find the problem with this. Is there anything on the server that needs to be customised, because I see there's a file in the SEO folder called urlrewrite.xml? My sitemap.xml file has this code... <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.google.com/schemas/sitemap/0.84" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/ sitemap.xsd"> <url> <loc>http://www.houtbayonline.com/</loc> <priority>1</priority> </url> <url> <loc>http://www.houtbayonline.com/life/</loc> <priority>1</priority> </url> <url> <loc>http://www.houtbayonline.com/business/</loc> <priority>1</priority> </url> <url> <loc>http://www.houtbayonline.com/tourism/</loc> <priority>1</priority> </url> <url> <loc>http://www.houtbayonline.com/market/</loc> <priority>1</priority> </url> </urlset> Any information would be appreciated. Thanks, Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog |
From: Nathan M. <nm...@te...> - 2007-03-04 21:46:08
|
Guys thanks so much for the attempted help but I am just not able to get this. Is one of you able to please accept my file and quote me for implementing this? I have been trying this since RC1 of swfAddress and it's time to give up now. Please let me know where I can send it and how much it will cost, and how you can accept payment from South Africa. Looking forward to sorting this out REALLY soon. Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog On Mar 4, 2007, at 7:42 PM, Rostislav Hristov wrote: > Mark, nice explanation! > > Nathan, the last code generally describes your case. Just name your > frame labels with some prefix or suffix to avoid potential issues with > IE. For example if you have http://domain.com/#/test/ you may name > your label site/test/ and use the following code: > > SWFAddress.onChange = function():Void { > var label:String = SWFAddress.getValue(); // this will get the url > gotoAndPlay('site' + label); > } > > > On 3/4/07, Mark Cassar <far...@gm...> wrote: >> Hi, >> >> You can keep your same navigational logic. I'll give you a small >> example >> >> Button: >> >> myButton.onRelease = function():Void { >> //This will change the URL, and then the onChange function will >> handle the event >> SWFAddress.setValue('myframelabel'); >> } >> >> SWFAddress.onChange = function():Void { >> var label:String = SWFAddress.getValue(); // this will get the >> url >> gotoAndPlay(label); >> } >> >> That's all. Very simple and you can keep whatever you want. >> >> Mark Cassar >> www.casasoft.com.mt >> >> Nathan Meyers wrote: >>> Thanks for your reply Mark >>> This just tells me what the official documentation tells me though. >>> In the included files, let's say the Flash version of swfAddress, >>> the >>> onChange is written specifically for that file. Now, the way I >>> usually set up my files is by using a timeline with named frames and >>> using actions on my buttons to gotoAndStop on those frames. It seems >>> that I can't do that with swfAddress. >>> >>> What kind of navigation logic does it need, because the one written >>> in the sample files doesn't look reusable in my files, where I have >>> my first, or home frame on frame 5, and each other section 5 frames >>> later. >>> >>> Did you use the included code alone or did you have to write your >>> own >>> locic, etc? >>> >>> Could you give me an example of what navigation logic you are using >>> and how you code your buttons, if different from the samples? >>> >>> Thanks Mark, >>> >>> Nathan Meyers @ The Orange Dog >>> The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] >>> 21 790 6092 | F:+27[0]21 791 4460 >>> >>> View our portfolio: http://www.orangedog.co.za/ >>> Visit our Blog: http://www.orangedog.co.za/blog/ >>> ---- >>> NEW in 2006 >>> Hout Bay Online: http://www.houtbayonline.com >>> Powered by The Orange Dog >>> >>> >>> >>> On Mar 4, 2007, at 1:45 PM, Mark Cassar wrote: >>> >>> >>>> Hi Nathan, >>>> >>>> It's very simple to use. Check out their site >>>> http://www.asual.com/swfaddress/ >>>> >>>> All you have to do is: >>>> 1. Put the swfaddress.js in a folder >>>> 2. Put the swfaddress.html file in the same folder as the >>>> swfaddress.js >>>> 3. Include the swfaddress.js in your website >>>> 4. Put the class file SWFAddress.as in some file reachable by >>>> flash. Either using the classpath or else put the file inside the >>>> same >>>> folder as the flash file. >>>> 5. If it is not directly imported into flash, import the class >>>> into >>>> flash. >>>> 6. SWFAddress is a static class which contains static methods >>>> so you >>>> should be able to access SWFAddress from wherever you want in the >>>> timeline without creating any instances. >>>> 7. The method SWFAddress.onChange is invoked whenever the >>>> URL is >>>> changed. Just put your code their to handle the url change. >>>> 8. Whenever you want to navigate through the flash file using >>>> buttons, simply call SWFAddress.setValue and it will change the url >>>> address and then the SWFAddress.onChange is invoked. >>>> >>>> I hope this helps, >>>> >>>> Mark Cassar >>>> www.casasoft.com.mt >>>> >>>> Nathan Meyers wrote: >>>> >>>>> Hi all >>>>> Does anyone have any resource that can give me a more basic >>>>> overview >>>>> of the implementation of swfAddress? >>>>> >>>>> I see many sites using it now and I understand that it should be >>>>> something quite simple to do, but I just can't write my own >>>>> navigation logic, and wouldn't know how to call it either from a >>>>> button or movieclip. >>>>> >>>>> If there are any easy resources out there for designers please >>>>> help. >>>>> >>>>> Nathan Meyers >>>>> >>>>> ------------------------------------------------------------------ >>>>> --- >>>>> ---- >>>>> Take Surveys. Earn Cash. Influence the Future of IT >>>>> Join SourceForge.net's Techsay panel and you'll get the chance to >>>>> share your >>>>> opinions on IT & business topics through brief surveys-and earn >>>>> cash >>>>> http://www.techsay.com/default.php? >>>>> page=join.php&p=sourceforge&CID=DEVDEV >>>>> _______________________________________________ >>>>> swfaddress-users mailing list >>>>> swf...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>>>> >>>>> >>>>> >>>> ------------------------------------------------------------------- >>>> --- >>>> --- >>>> Take Surveys. Earn Cash. Influence the Future of IT >>>> Join SourceForge.net's Techsay panel and you'll get the chance to >>>> share your >>>> opinions on IT & business topics through brief surveys-and earn >>>> cash >>>> http://www.techsay.com/default.php? >>>> page=join.php&p=sourceforge&CID=DEVDEV >>>> _______________________________________________ >>>> swfaddress-users mailing list >>>> swf...@li... >>>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>>> >>>> >>> >>> >>> -------------------------------------------------------------------- >>> ----- >>> Take Surveys. Earn Cash. Influence the Future of IT >>> Join SourceForge.net's Techsay panel and you'll get the chance to >>> share your >>> opinions on IT & business topics through brief surveys-and earn cash >>> http://www.techsay.com/default.php? >>> page=join.php&p=sourceforge&CID=DEVDEV >>> _______________________________________________ >>> swfaddress-users mailing list >>> swf...@li... >>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>> >>> >> >> --------------------------------------------------------------------- >> ---- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php? >> page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> > > > -- > Asual - open software that pushes the limits > http://www.asual.com/ > > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Rostislav H. <ros...@gm...> - 2007-03-04 17:42:15
|
Mark, nice explanation! Nathan, the last code generally describes your case. Just name your frame labels with some prefix or suffix to avoid potential issues with IE. For example if you have http://domain.com/#/test/ you may name your label site/test/ and use the following code: SWFAddress.onChange = function():Void { var label:String = SWFAddress.getValue(); // this will get the url gotoAndPlay('site' + label); } On 3/4/07, Mark Cassar <far...@gm...> wrote: > Hi, > > You can keep your same navigational logic. I'll give you a small > example > > Button: > > myButton.onRelease = function():Void { > //This will change the URL, and then the onChange function will > handle the event > SWFAddress.setValue('myframelabel'); > } > > SWFAddress.onChange = function():Void { > var label:String = SWFAddress.getValue(); // this will get the url > gotoAndPlay(label); > } > > That's all. Very simple and you can keep whatever you want. > > Mark Cassar > www.casasoft.com.mt > > Nathan Meyers wrote: > > Thanks for your reply Mark > > This just tells me what the official documentation tells me though. > > In the included files, let's say the Flash version of swfAddress, the > > onChange is written specifically for that file. Now, the way I > > usually set up my files is by using a timeline with named frames and > > using actions on my buttons to gotoAndStop on those frames. It seems > > that I can't do that with swfAddress. > > > > What kind of navigation logic does it need, because the one written > > in the sample files doesn't look reusable in my files, where I have > > my first, or home frame on frame 5, and each other section 5 frames > > later. > > > > Did you use the included code alone or did you have to write your own > > locic, etc? > > > > Could you give me an example of what navigation logic you are using > > and how you code your buttons, if different from the samples? > > > > Thanks Mark, > > > > Nathan Meyers @ The Orange Dog > > The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] > > 21 790 6092 | F:+27[0]21 791 4460 > > > > View our portfolio: http://www.orangedog.co.za/ > > Visit our Blog: http://www.orangedog.co.za/blog/ > > ---- > > NEW in 2006 > > Hout Bay Online: http://www.houtbayonline.com > > Powered by The Orange Dog > > > > > > > > On Mar 4, 2007, at 1:45 PM, Mark Cassar wrote: > > > > > >> Hi Nathan, > >> > >> It's very simple to use. Check out their site > >> http://www.asual.com/swfaddress/ > >> > >> All you have to do is: > >> 1. Put the swfaddress.js in a folder > >> 2. Put the swfaddress.html file in the same folder as the > >> swfaddress.js > >> 3. Include the swfaddress.js in your website > >> 4. Put the class file SWFAddress.as in some file reachable by > >> flash. Either using the classpath or else put the file inside the > >> same > >> folder as the flash file. > >> 5. If it is not directly imported into flash, import the class > >> into > >> flash. > >> 6. SWFAddress is a static class which contains static methods > >> so you > >> should be able to access SWFAddress from wherever you want in the > >> timeline without creating any instances. > >> 7. The method SWFAddress.onChange is invoked whenever the URL is > >> changed. Just put your code their to handle the url change. > >> 8. Whenever you want to navigate through the flash file using > >> buttons, simply call SWFAddress.setValue and it will change the url > >> address and then the SWFAddress.onChange is invoked. > >> > >> I hope this helps, > >> > >> Mark Cassar > >> www.casasoft.com.mt > >> > >> Nathan Meyers wrote: > >> > >>> Hi all > >>> Does anyone have any resource that can give me a more basic overview > >>> of the implementation of swfAddress? > >>> > >>> I see many sites using it now and I understand that it should be > >>> something quite simple to do, but I just can't write my own > >>> navigation logic, and wouldn't know how to call it either from a > >>> button or movieclip. > >>> > >>> If there are any easy resources out there for designers please help. > >>> > >>> Nathan Meyers > >>> > >>> --------------------------------------------------------------------- > >>> ---- > >>> Take Surveys. Earn Cash. Influence the Future of IT > >>> Join SourceForge.net's Techsay panel and you'll get the chance to > >>> share your > >>> opinions on IT & business topics through brief surveys-and earn cash > >>> http://www.techsay.com/default.php? > >>> page=join.php&p=sourceforge&CID=DEVDEV > >>> _______________________________________________ > >>> swfaddress-users mailing list > >>> swf...@li... > >>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users > >>> > >>> > >>> > >> ---------------------------------------------------------------------- > >> --- > >> Take Surveys. Earn Cash. Influence the Future of IT > >> Join SourceForge.net's Techsay panel and you'll get the chance to > >> share your > >> opinions on IT & business topics through brief surveys-and earn cash > >> http://www.techsay.com/default.php? > >> page=join.php&p=sourceforge&CID=DEVDEV > >> _______________________________________________ > >> swfaddress-users mailing list > >> swf...@li... > >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users > >> > >> > > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > opinions on IT & business topics through brief surveys-and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > swfaddress-users mailing list > > swf...@li... > > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > -- Asual - open software that pushes the limits http://www.asual.com/ |
From: Mark C. <far...@gm...> - 2007-03-04 14:56:59
|
Hi, You can keep your same navigational logic. I'll give you a small example Button: myButton.onRelease = function():Void { //This will change the URL, and then the onChange function will handle the event SWFAddress.setValue('myframelabel'); } SWFAddress.onChange = function():Void { var label:String = SWFAddress.getValue(); // this will get the url gotoAndPlay(label); } That's all. Very simple and you can keep whatever you want. Mark Cassar www.casasoft.com.mt Nathan Meyers wrote: > Thanks for your reply Mark > This just tells me what the official documentation tells me though. > In the included files, let's say the Flash version of swfAddress, the > onChange is written specifically for that file. Now, the way I > usually set up my files is by using a timeline with named frames and > using actions on my buttons to gotoAndStop on those frames. It seems > that I can't do that with swfAddress. > > What kind of navigation logic does it need, because the one written > in the sample files doesn't look reusable in my files, where I have > my first, or home frame on frame 5, and each other section 5 frames > later. > > Did you use the included code alone or did you have to write your own > locic, etc? > > Could you give me an example of what navigation logic you are using > and how you code your buttons, if different from the samples? > > Thanks Mark, > > Nathan Meyers @ The Orange Dog > The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] > 21 790 6092 | F:+27[0]21 791 4460 > > View our portfolio: http://www.orangedog.co.za/ > Visit our Blog: http://www.orangedog.co.za/blog/ > ---- > NEW in 2006 > Hout Bay Online: http://www.houtbayonline.com > Powered by The Orange Dog > > > > On Mar 4, 2007, at 1:45 PM, Mark Cassar wrote: > > >> Hi Nathan, >> >> It's very simple to use. Check out their site >> http://www.asual.com/swfaddress/ >> >> All you have to do is: >> 1. Put the swfaddress.js in a folder >> 2. Put the swfaddress.html file in the same folder as the >> swfaddress.js >> 3. Include the swfaddress.js in your website >> 4. Put the class file SWFAddress.as in some file reachable by >> flash. Either using the classpath or else put the file inside the >> same >> folder as the flash file. >> 5. If it is not directly imported into flash, import the class >> into >> flash. >> 6. SWFAddress is a static class which contains static methods >> so you >> should be able to access SWFAddress from wherever you want in the >> timeline without creating any instances. >> 7. The method SWFAddress.onChange is invoked whenever the URL is >> changed. Just put your code their to handle the url change. >> 8. Whenever you want to navigate through the flash file using >> buttons, simply call SWFAddress.setValue and it will change the url >> address and then the SWFAddress.onChange is invoked. >> >> I hope this helps, >> >> Mark Cassar >> www.casasoft.com.mt >> >> Nathan Meyers wrote: >> >>> Hi all >>> Does anyone have any resource that can give me a more basic overview >>> of the implementation of swfAddress? >>> >>> I see many sites using it now and I understand that it should be >>> something quite simple to do, but I just can't write my own >>> navigation logic, and wouldn't know how to call it either from a >>> button or movieclip. >>> >>> If there are any easy resources out there for designers please help. >>> >>> Nathan Meyers >>> >>> --------------------------------------------------------------------- >>> ---- >>> Take Surveys. Earn Cash. Influence the Future of IT >>> Join SourceForge.net's Techsay panel and you'll get the chance to >>> share your >>> opinions on IT & business topics through brief surveys-and earn cash >>> http://www.techsay.com/default.php? >>> page=join.php&p=sourceforge&CID=DEVDEV >>> _______________________________________________ >>> swfaddress-users mailing list >>> swf...@li... >>> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >>> >>> >>> >> ---------------------------------------------------------------------- >> --- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php? >> page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> >> > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > |
From: Nathan M. <nm...@te...> - 2007-03-04 14:53:05
|
Thanks for your reply Mark This just tells me what the official documentation tells me though. In the included files, let's say the Flash version of swfAddress, the onChange is written specifically for that file. Now, the way I usually set up my files is by using a timeline with named frames and using actions on my buttons to gotoAndStop on those frames. It seems that I can't do that with swfAddress. What kind of navigation logic does it need, because the one written in the sample files doesn't look reusable in my files, where I have my first, or home frame on frame 5, and each other section 5 frames later. Did you use the included code alone or did you have to write your own locic, etc? Could you give me an example of what navigation logic you are using and how you code your buttons, if different from the samples? Thanks Mark, Nathan Meyers @ The Orange Dog The Orange Dog House | 32 Whittler's Way | Hout Bay, 7806 | T:+27[0] 21 790 6092 | F:+27[0]21 791 4460 View our portfolio: http://www.orangedog.co.za/ Visit our Blog: http://www.orangedog.co.za/blog/ ---- NEW in 2006 Hout Bay Online: http://www.houtbayonline.com Powered by The Orange Dog On Mar 4, 2007, at 1:45 PM, Mark Cassar wrote: > Hi Nathan, > > It's very simple to use. Check out their site > http://www.asual.com/swfaddress/ > > All you have to do is: > 1. Put the swfaddress.js in a folder > 2. Put the swfaddress.html file in the same folder as the > swfaddress.js > 3. Include the swfaddress.js in your website > 4. Put the class file SWFAddress.as in some file reachable by > flash. Either using the classpath or else put the file inside the > same > folder as the flash file. > 5. If it is not directly imported into flash, import the class > into > flash. > 6. SWFAddress is a static class which contains static methods > so you > should be able to access SWFAddress from wherever you want in the > timeline without creating any instances. > 7. The method SWFAddress.onChange is invoked whenever the URL is > changed. Just put your code their to handle the url change. > 8. Whenever you want to navigate through the flash file using > buttons, simply call SWFAddress.setValue and it will change the url > address and then the SWFAddress.onChange is invoked. > > I hope this helps, > > Mark Cassar > www.casasoft.com.mt > > Nathan Meyers wrote: >> Hi all >> Does anyone have any resource that can give me a more basic overview >> of the implementation of swfAddress? >> >> I see many sites using it now and I understand that it should be >> something quite simple to do, but I just can't write my own >> navigation logic, and wouldn't know how to call it either from a >> button or movieclip. >> >> If there are any easy resources out there for designers please help. >> >> Nathan Meyers >> >> --------------------------------------------------------------------- >> ---- >> Take Surveys. Earn Cash. Influence the Future of IT >> Join SourceForge.net's Techsay panel and you'll get the chance to >> share your >> opinions on IT & business topics through brief surveys-and earn cash >> http://www.techsay.com/default.php? >> page=join.php&p=sourceforge&CID=DEVDEV >> _______________________________________________ >> swfaddress-users mailing list >> swf...@li... >> https://lists.sourceforge.net/lists/listinfo/swfaddress-users >> >> > > ---------------------------------------------------------------------- > --- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php? > page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > |
From: Mark C. <far...@gm...> - 2007-03-04 11:45:11
|
Hi Nathan, It's very simple to use. Check out their site http://www.asual.com/swfaddress/ All you have to do is: 1. Put the swfaddress.js in a folder 2. Put the swfaddress.html file in the same folder as the swfaddress.js 3. Include the swfaddress.js in your website 4. Put the class file SWFAddress.as in some file reachable by flash. Either using the classpath or else put the file inside the same folder as the flash file. 5. If it is not directly imported into flash, import the class into flash. 6. SWFAddress is a static class which contains static methods so you should be able to access SWFAddress from wherever you want in the timeline without creating any instances. 7. The method SWFAddress.onChange is invoked whenever the URL is changed. Just put your code their to handle the url change. 8. Whenever you want to navigate through the flash file using buttons, simply call SWFAddress.setValue and it will change the url address and then the SWFAddress.onChange is invoked. I hope this helps, Mark Cassar www.casasoft.com.mt Nathan Meyers wrote: > Hi all > Does anyone have any resource that can give me a more basic overview > of the implementation of swfAddress? > > I see many sites using it now and I understand that it should be > something quite simple to do, but I just can't write my own > navigation logic, and wouldn't know how to call it either from a > button or movieclip. > > If there are any easy resources out there for designers please help. > > Nathan Meyers > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > |
From: Nathan M. <nm...@te...> - 2007-03-04 11:37:19
|
Hi all Does anyone have any resource that can give me a more basic overview of the implementation of swfAddress? I see many sites using it now and I understand that it should be something quite simple to do, but I just can't write my own navigation logic, and wouldn't know how to call it either from a button or movieclip. If there are any easy resources out there for designers please help. Nathan Meyers |
From: Rostislav H. <ros...@gm...> - 2006-12-14 14:44:57
|
jQuery 1.04 was just released, but it doesn't fix that problem. I've applied the fix manually and now your sample works in Firefox 2. All you need to do is to replace a few occurences of a.constructor==String with typeof(a) == 'string', where 'a' can be any variable and the operator can also be !=. On 12/13/06, Rostislav Hristov <ros...@gm...> wrote: > Hi Drew, > > your sample works fine in IE and Firefox 1.5. I saw the error in > Firefox 2 and probably the issue is with ExternalInterface and jQuery. > Follow this thread on the jQuery mailing list: > http://www.nabble.com/Fix%3A-ExternalInterface-breaks-jQuery-in-firefox-2-tf2677747.html#a7472857 > > For IE you need the swfaddress.html file next to the swfaddress.js. > > Best, > Rostislav > > > On 12/13/06, Drew Foehn <dr...@ho...> wrote: > > > > > > > > Hi, > > > > I've just discovered a bug when using Mozilla Firefox 2.0 and JQuery > > together. Build an element with SWFObject, draw it to the page using onload > > $() then try to modify the height attribute of any item using Jquery syntax > > $('#elementId').height('10px'); the following error is > > thrown - TypeError: elem has no properties. > > > > Surprisingly though it works perfectly on IE5.5+. > > > > I've uploaded an example of what I'm talking about. > > > > http://pixelburn.net/flash/swfaddressbug.zip > > > > Regards, > > > > > > > > > > Drew Foehn > > ActionScript Developer > > HotHouse Interactive > > --------------------------------- > > d: +61 2 9432 3655 > > p: +61 2 9432 3600 > > f: +61 2 9432 4302 > > e: dr...@ho... > > --------------------------------- > > HotHouse Interactive Pty Ltd > > Level 3, 154 Pacific Highway > > St Leonards NSW 2067 > > Australia > > --------------------------------- > > www.hothouse.com.au > > --------------------------------- > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > opinions on IT & business topics through brief surveys - and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > _______________________________________________ > > swfaddress-users mailing list > > swf...@li... > > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > > > > > > > > -- > Asual - open software that pushes the limits > http://www.asual.com/ > -- Asual - open software that pushes the limits http://www.asual.com/ |
From: Rostislav H. <ros...@gm...> - 2006-12-13 08:24:35
|
Hi Drew, your sample works fine in IE and Firefox 1.5. I saw the error in Firefox 2 and probably the issue is with ExternalInterface and jQuery. Follow this thread on the jQuery mailing list: http://www.nabble.com/Fix%3A-ExternalInterface-breaks-jQuery-in-firefox-2-tf2677747.html#a7472857 For IE you need the swfaddress.html file next to the swfaddress.js. Best, Rostislav On 12/13/06, Drew Foehn <dr...@ho...> wrote: > > > > Hi, > > I've just discovered a bug when using Mozilla Firefox 2.0 and JQuery > together. Build an element with SWFObject, draw it to the page using onload > $() then try to modify the height attribute of any item using Jquery syntax > $('#elementId').height('10px'); the following error is > thrown - TypeError: elem has no properties. > > Surprisingly though it works perfectly on IE5.5+. > > I've uploaded an example of what I'm talking about. > > http://pixelburn.net/flash/swfaddressbug.zip > > Regards, > > > > > Drew Foehn > ActionScript Developer > HotHouse Interactive > --------------------------------- > d: +61 2 9432 3655 > p: +61 2 9432 3600 > f: +61 2 9432 4302 > e: dr...@ho... > --------------------------------- > HotHouse Interactive Pty Ltd > Level 3, 154 Pacific Highway > St Leonards NSW 2067 > Australia > --------------------------------- > www.hothouse.com.au > --------------------------------- > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > > -- Asual - open software that pushes the limits http://www.asual.com/ |
From: Drew F. <dr...@ho...> - 2006-12-13 06:36:41
|
Hi,=20 =20 I've just discovered a bug when using Mozilla Firefox 2.0 and JQuery together. Build an element with SWFObject, draw it to the page using onload $() then try to modify the height attribute of any item using Jquery syntax $('#elementId').height('10px'); the following error is thrown - TypeError: elem has no properties. =20 Surprisingly though it works perfectly on IE5.5+. =20 I've uploaded an example of what I'm talking about.=20 =20 http://pixelburn.net/flash/swfaddressbug.zip =20 Regards, =20 =20 Drew Foehn ActionScript Developer HotHouse Interactive --------------------------------- d: +61 2 9432 3655 p: +61 2 9432 3600 f: +61 2 9432 4302 e: dr...@ho... <mailto:dr...@ho...>=20 --------------------------------- HotHouse Interactive Pty Ltd Level 3, 154 Pacific Highway St Leonards NSW 2067 Australia --------------------------------- www.hothouse.com.au <blocked::http://www.hothouse.com.au/> =20 --------------------------------- =20 |
From: Rostislav H. <ros...@gm...> - 2006-12-12 20:46:26
|
Hi Jon, the Analytics support is now in the SVN. I'm testing it since yesterday and it works. Most of the SWFAddress samples on asual.com are already using it. Here are the important notes: - In Analytics the site is specified only by it's domain name without additional subfolders. I remember that your case is different, but I believe that most websites live in the root and statistics are made per domain. There can be a configuration property for this in the future. - The Analytics code provided by Google is changed and the urchinTracker() call is removed. It's called by SWFAddress internally so that no extra records are generated when somebody lands on a deep link. - The Analytics code is placed in the HEAD tag or somewhere after the swfaddress.js include and before the SWFObject usage. Best, Rostislav On 12/7/06, Jon MacDonald <jon...@gm...> wrote: > Awesome. I'm glad to hear you are thinking about adding support for > Analytics. I believe the issue is indeed that two javascript calls end up > being made too closely to one another, and IE just doesn't like it. Firefox > and Safari don't seem to have a problem with it. > > For more information on using Google Analytics with Flash, you can check > out this URL: > > http://www.google.com/support/analytics/bin/answer.py?answer=27243 > > and > > http://www.google.com/support/analytics/bin/answer.py?answer=27244 > > Basically you would make a getURL call to the javascript function, passing > it a custom path to what you want it to track. For instance, when I'm > tracking the "What" section, I'll use: > > getURL("javascript:urchinTracker('/what/');"); > > and if I want to go another section deep, I'll use: > > getURL("javascript:urchinTracker('/what/subsection/');"); > > Google Analytics relies on whatever I pass it for the tracking. It does not > use the entire current URL string. For instance, you had asked about > http://www.xplane.com/dev. I had setup that URL to be tracked as : > getURL("javascript:urchinTracker('/');"); since it is the > root of the site. I could have made that anything, however. > > What I would love to see SWFAddress track (i.e. make the urchinTracker() > call for) is everything after the "#" in the URL. > > If you need any other information, or if there is anything else I can help > with, please let me know! > > Thanks, > jon > > On 12/6/06, Rostislav Hristov <ros...@gm...> wrote: > > Hi Jon, > > > > I'm planning to add transparent support for Analytics in the next > > release. I think that it will be available in about a week or two. The > > urchinTracker() will be called only from the JS part of SWFAddress so > > there won't be any additional Flash to JS communication. If this > > timeframe does not suit your needs I will try to help you with a quick > > hack. > > > > I still haven't tested how Google tracks those Flash/Ajax events and > > probably you can help me if there's already some data stored in your > > account. > > > > For an URL like yours (http://www.xplane.com/dev) what's tracked for > > urchinTracker('/what') - /what or /dev/what? I couldn't find it in the > > docs if these are relative or absolute addresses. It will be correct > > if in your case you see /dev/what in the stats and if not I will try > > to support it internally. > > > > > > Best, > > Rostislav > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > swfaddress-users mailing list > swf...@li... > https://lists.sourceforge.net/lists/listinfo/swfaddress-users > > > -- Asual - open software that pushes the limits http://www.asual.com/ |