Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mongoled

Pioneers
  • Posts

    60
  • Joined

  • Last visited

Everything posted by mongoled

  1. Has the coder of this contribution stopped supporting this addon?
  2. Will give this a go, thanks! - EDIT - Great, thats all that was required on this Windows 2008 install. Thanks!
  3. Hi! thanks for your response Robert. The contents of ( Usu_Main::i()->getVar( 'filename' ) ) is index.php I used the following code echo ( Usu_Main::i()->getVar( 'filename' ) ) ; and result of if ( array_key_exists( 'fwrtest', $_GET ) ) { die( $PHP_SELF . ' contained: ( ' . $PHP_SELF . ' )' ); } added in application_top.php above /** * ULTIMATE Seo Urls 5 PRO by FWR Media */ Usu_Main::i()->setVar( 'languages_id', $languages_id ) ->setVar( 'request_type', $request_type ) ->setVar( 'session_started', $session_started ) ->setVar( 'sid', $SID ) ->setVar( 'language', $language ) ->setVar( 'filename', $PHP_SELF ) ->initiate( ( isset( $lng ) && ( $lng instanceof language ) ) ? $lng : array(), $languages_id, $language ); appended with ?fwrtest is Index.php contained: ( Index.php )
  4. Hi! 17 months later and I still havnt managed to find a solution to this problem. Any chance you could give it another try Robert. Thanks - EDIT - Its just on a different domain
  5. Have a funny issue here, has anyone else seen this. When hovering over the right arrow, the scroller works fine i.e. it speeds up, slows down accordingly and runs to the end of the list. However when hovering over the left arror, it works as the right arrow does for a split second then stops. When I say stop the following happens. The arrow disappears from view and the scroller stops moving, then if i move the mouse away from the arrow, it appears again. Hovering over the left arrow again simply does the same thing. Can anyone shed some light on what could be causing this. Have tested this in ie8 and Firefox 3.6
  6. Apply the same fix to new_products.php :)
  7. Hi Kymation, thanks for the fix :) Just something I had an issue with, right at the start of the development of this great contribution, that I have just found a solution. Quick explanation of problem. www.domain.com is NOT the same as www.domain.com/index.php The modular front page modules do not show up if a page is loaded without index.php on the end of the URL At least for my server that is using IIS7. Anyhow to resolve this I found the line in all the front page modules if ($PHP_SELF == 'index.php' && $cPath == '') and changed them to if ($PHP_SELF == 'index.php' or '/' && $cPath == '') and the modules are now loading. Hope this helps someone. Cheers!
  8. Hi after installing the featured products addon i get the following error Warning: constant() [function.constant]: Couldn't find constant MODULE_FRONT_PAGE_FEATURED_FRONT_TITLE_ in C:\Inetpub\vhosts\seniorfrogs.com.cy\httpdocs\shop\includes\modules\front_page\featured.php on line 54 Can you please advise
  9. Hi, just wanted to add my opinion. The work that fulluvscents has put into this module is admirable and those who are coders or who have tried to code will understand the complexities of the work involved in undertaking such a task. However, as a website developer he mainly uses HTML and CSS, browser compatability is a huge issue. Any sort of software that automatically does not work on a browser that has significant usage, can only be described as beta software, and that is what I think should be made more clear with regards to this particular contribution. Its not just the fact that the contribution does not work at all in IE8 and below, we also need to take into account the accessability issues that arise from the contribution failing to render properly on such a browser platform that still has such a large user base. I really hope that people can understand this point.
  10. Same error message.... Fatal error: Call to a member function retrieveDependencies() on a non-object in C:\Inetpub\vhosts\maccessori.com\httpdocs\store\includes\modules\ultimate_seo_urls5\uri_modules\osc_experimental.php on line 51
  11. Here you go /store/Index.php contained: ( /store/Index.php )
  12. OK, will reverse the changes, apply the new fix and get back to you thanks again!
  13. OK, I can confirm that the error has gone away after applying the fix you implied to all the files in the directory ultimate_seo_urls5/uri_modules and ultimate_seo_urls5/main --> validator.php Thanks for the fix!
  14. OK, im changing the code in all the files in tht directory to see if the error goes away :-) -- EDIT -- Error moved to diff directory Fatal error: Call to a member function retrieveDependencies() on a non-object in C:\Inetpub\vhosts\maccessori.com\httpdocs\store\includes\modules\ultimate_seo_urls5\main\validator.php on line 87 will continue changing files.....
  15. Hi! Thanks, that was quick Have a different error now Fatal error: Call to a member function retrieveDependencies() on a non-object in C:\Inetpub\vhosts\maccessori.com\httpdocs\store\includes\modules\ultimate_seo_urls5\uri_modules\path_rewrite.php on line 84
  16. Hello, thanks for the great contribution. OSCommerce 2.3.1 Windows Server 2003 What could be the cause for the following error? Fatal error: Call to a member function retrieveDependencies() on a non-object in C:\Inetpub\vhosts\maccessori.com\httpdocs\store\includes\modules\ultimate_seo_urls5\uri_modules\osc_experimental.php on line 51 If we use the full url then we dont get this error i.e. http://www.maccessori.com/store/index.php This happens even if 'Choose the uri format' --> Standard is selected (currently have it on rewrite). We also have this contibution installed, 'Modular Front Page' http://addons.oscommerce.com/info/7626/v,23 The problem occurs even when we dont have this contribution installed.... Hope to hear some pointers....
  17. Just wanted to let you know (and anybody else who may be reading) ive managed to get my 'modular internal page' working. http://www.glasswindowscyprus.com/catalog/index.php?cPath=1 I must say, that index.php has been cannibalized to get this to work, and that I am NO php programmer, just picking up on things as I go along with the help from the people in this community and google! I will not be making a contribution out of this, as my work is probably very shoddy, but if someone would like to see what I have done (or make what I have done more correct) then PM me. It basically works as Jim's excellent contribution, but for the internal pages that have a cPath > 0 and have more than one product in a category. All Jim's modules are available, with some editing by someone with real php knowledge, it could be made more page specific. Anyhow, thanks to all that have contributed.....
  18. Thats great information, thanks :) Will try that in the New Year, have a bachelors party tonight and New Year Eve after that, lol, will be a little while before my head will be OK! Happy New Year to all for when it comes
  19. Thanks for that info, ive made a little more headway, but am stuck again. I moved some code from the index.php page that takes its $cPath references from application_top.php (line 16) into the module I am making for cotrolling the categories page. Now, from what I have understood, for this code to work it needs this directive require('includes/application_top.php'); Where I am stuck, how do I get my module to reference this include? When I use this path ../../includes/application_top.php from the file in the modules/mymodule folder I get a message telling me Warning: require(../../includes/application_top.php) [function.require]: failed to open stream: No such file or directory From what I have understood, the category child element works by making checks to the $cPath variable, which is taken from application_top.php But I dont know how to get the module to reach this. Any pointers would be appreciated.....
  20. I am very sorry for taking this thread off topic, it would be better to start a new one in Add-Ons Development titled '[Addon} Modular Front Page - Additional Development' ?
  21. I think this one above my skill base! I have been reverse engineering the files to see if I can get anywhere. Have managed to strip index.php to the bare basics as so to show only your front_page addon and the internal_page addon that I have created from your great work. Now... from what I have understood, the code that was in index.php, that controls the child categories. This has to be re-written and placed inside function execute()? This is where I am way out of my depth! I have spent around 7 hours to get to the position I am at now. The main problem I am finding is how to debug the code I am modifying. If I can find a means of testing small parts of code then maybe I could get somewhere, however, seeing that even the slightest error in an operator, character etc throws an exception I am lost, as I may have been writing 'correct' code, but wouldnt know because of a simple mistake.....
  22. Hi, OK, I have managed to get your addon to work on the categories pages i.e. index page with cpath > 0, in so that I can choose where your modular features appear independently. Its now time to take a look at the v2.2 contributions that modify the categories under cpath > 0 etc, as I want to make that modular also. You havnt by any chance made an attempt at this? Cheers Andrew
×
×
  • Create New...