[Contribution] iOSC - mobile version of OSC on your iPhone
#261
Posted 31 August 2009 - 09:18 AM
No1 will share a working version of it?
#262
Posted 08 September 2009 - 03:30 PM
please don't let this contrib die, it has such great potential. LOL
#263
Posted 13 September 2009 - 02:06 PM
Please send me links to your site and we will try to solve those issues one by one.
Sometimes I'm not around for few days, so please be patient
#264
Posted 13 September 2009 - 10:52 PM
Any ideas?
http://www.magnet4less.com
Edited by Jon53, 13 September 2009 - 10:53 PM.
#265
Posted 21 September 2009 - 12:03 AM
Jon53, on Sep 13 2009, 05:52 PM, said:
Any ideas?
http://www.magnet4less.com
Anyone Here??
Edited by Jon53, 21 September 2009 - 12:04 AM.
#267
Posted 25 September 2009 - 03:43 PM
#268
Posted 27 September 2009 - 01:28 AM
Automatic redirect for mobile browsers add this lines to the end of your
catalog/includes/ application_top.php
file
define(DIR_MOBILE_CLASSES , 'mobile/includes/classes/'); require(DIR_MOBILE_CLASSES . 'mobile_redirect.php'); $mobileRedirect = new mobileRedirect;
davref, on Sep 25 2009, 03:43 PM, said:
#269
Posted 28 September 2009 - 12:05 PM
bumbarash, on Sep 23 2009, 10:23 AM, said:
you should include product_qty to mobile_product_info.php as well
Okay...Items are now adding to cart...but...cannot checkout.
I click checkout button and nothing happens...I just stay on shopping cart page.
Any ideas?
#270
Posted 30 September 2009 - 12:16 PM
bumbarash, on Sep 26 2009, 09:28 PM, said:
Automatic redirect for mobile browsers add this lines to the end of your
catalog/includes/ application_top.php
file
define(DIR_MOBILE_CLASSES , 'mobile/includes/classes/'); require(DIR_MOBILE_CLASSES . 'mobile_redirect.php'); $mobileRedirect = new mobileRedirect;
That's my problem, even with the lines added to application_top.php, all links go to PC pages regardless of whether or not I'm on a mobile device. Any ideas?
#271
Posted 05 October 2009 - 06:05 PM
davref, on 30 September 2009 - 12:16 PM, said:
#272
Posted 06 October 2009 - 07:51 AM
bumbarash, on 05 October 2009 - 06:05 PM, said:
Now that you mention this... i tried to start customizing the "mobile templates" a bit... and with my iphone i notice that the stylesheet used is NOT the iphone one but the blackberry/pda one...
In other words, with iphone i get 3 columns and i MUST put it horizontal way rather than vertical, plus graphics/code is followed for everything except iphone customizing...
am i missing any detection part? has apple updated the useragent id?
#274
Posted 16 October 2009 - 01:19 AM
Hope the kinks are worked out of this soon...As of now people can only view the catalog and cannot place an order
#275
Posted 02 November 2009 - 09:18 PM
Everything seems in order but
1. I cannot remove items from my cart.
2. When I enter billing information /mobile_checkout_payment.php just clears all fields & reloads with the message "This is currently the only payment method available to use on this order." - the default message from english/checkout_payment.php
www.kickerfilms.com
www.kickerfilms.com/mobile
Any thoughts? Thanks!
#276
Posted 08 November 2009 - 11:22 PM
I have installed iOSC v2.0c and I'm getting the 404 error on mobile/mobile_index.php
Can anyone tell me how to fix this please?
I don't understand how it works because /mobile/index.php contains
<?php
header('Location: mobile_index.php');
?>
so it just redirects to a missing file???
Andy
#277
Posted 10 November 2009 - 01:30 AM
if you run your site from a subdirectory, you need to change it to '../mobile_index.php' to get to the correct place.
think that answers your question ... now mine:
At least that is what I have done, but then it still doesn't show the mobile pages. When I put the files in the top level directory on my site, it starts working as long as I have seo urls disabled ...
anyone done the extra work for seo urls ?
Carine Bruyndoncx
PS frustraded by the lack of feedback
<!--
Did you know 99% of all people benefiting from my posts, won't bother to repay the favor.
Wouldn't it be great if you are part of that exclusive 1% ?
post your findings in my responsive liive shop review thread ?
-->
#278
Posted 10 November 2009 - 02:25 AM
These are now the first couple of lines:
function href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true){
$this->start($this->timestamp);
$this->performance['NUMBER_URLS_GENERATED']++;
if ( !in_array($page, $this->attributes['SEO_PAGES']) || $this->attributes['SEO_ENABLED'] == 'false'
|| (substr($page, 0, 6) == 'mobile') ) {
return $this->stock_href_link($page, $parameters, $connection, $add_session_id);
}
Secondly, for what it's worth, i also made the following changes so that called urls from the mobile pages are keeping on the mobile version and not switching to the PC version.
in mobile/includes/functions/general.php
1) renamed the tep_mobile_link function to tep_mobile_link1
2) renamed the tep_mobile_link2 function to tep_mobile_link
3) modified tep_mobile_link to prepend mobile to the page, when it is not yet present
first couple of lines with the actual results pasted below
<?php
function tep_mobile_link1($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = false) {
return tep_href_link($page, $parameters, $connection, $add_session_id,false);
}
function tep_mobile_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = false) {
global $request_type, $session_started, $SID;
$module = substr($page,0,-4);
// $page = FILENAME_MOBILE;
// $parameters = 'module=' . $module . '&' . $parameters;
if (substr($page, 0, 6) !== 'mobile' ) {
$page = 'mobile_' . $page;
}
please let me know if I misunderstood how it is supposed to function, but this does seem to work for me. Hope this helps ...
Carine
Carine Bruyndoncx
PS frustraded by the lack of feedback
<!--
Did you know 99% of all people benefiting from my posts, won't bother to repay the favor.
Wouldn't it be great if you are part of that exclusive 1% ?
post your findings in my responsive liive shop review thread ?
-->
#279
Posted 10 November 2009 - 03:06 AM
Not sure if this can be solved by correcting this in mobile/application_top, or if the real application_top.php needs to be enhanced to make the distinction ... that will be for another day, now it is time to sleep
Carine Bruyndoncx
PS frustraded by the lack of feedback
<!--
Did you know 99% of all people benefiting from my posts, won't bother to repay the favor.
Wouldn't it be great if you are part of that exclusive 1% ?
post your findings in my responsive liive shop review thread ?
-->
#280
Posted 10 November 2009 - 03:07 AM
Not sure if this can be solved by correcting this in mobile/application_top, or if the real application_top.php needs to be enhanced to make the distinction ... that will be for another day, now it is time to sleep
Carine Bruyndoncx
PS frustraded by the lack of feedback
<!--
Did you know 99% of all people benefiting from my posts, won't bother to repay the favor.
Wouldn't it be great if you are part of that exclusive 1% ?
post your findings in my responsive liive shop review thread ?
-->









