Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Marco82

Archived
  • Posts

    35
  • Joined

  • Last visited

Profile Information

  • Real Name
    Marco

Marco82's Achievements

  1. Hi there.. someone got it working with subfolder? and with languages? from when i use to change languages the menu stopped working.. just top categories shown and on click no subcategories shown.. nothing, it just changes the image..
  2. Hello, you have helped me solving half of the problem.. my situation is that i have an english browser, italian default language.. for me italian is ok but.. if a french person comes in my ecommerce, suppose with english browser.. he'll see website in english even if I have french language installed! he may select french for hte page in which he is but on every click, the language will be changed back to default one.. i need to keep the language selected.. do you know how to solve this problem?
  3. If someone have problems with language page given in output without reading php code, just find any <? tag and replace with <?php, this will fix the problem. On many other parts of this contrib, the programmer forgot "php" after <? so try with this if you find language problems followed by output problems, is the simplest thing to do..
  4. Hi all, I have an issue on contrib. For me this contrib doesn't work with cookies set to off (a lot of people has cookies set to off, so the osCAdminID has to be passed thru the URL, and with hidden fields on forms) i haven't any knowledge on JS so i cannot fix it, can someone tell me how to add the osCAdmnID on every link made with JS and on JS forms? Another issue, I think 90% for the same osCAdminID is that i can see all links when edit orders, clicking on them appears boxes for edit fields but, when I ckick for saving them, an empty box appears and no changes are saved.. Please can someone help me on that? I've installed the Admin Access Levels 2.0 so every link on my admin is passed thru a validator, every page loaded have to have the osCAdminID passed, this is the main issue with this contrib.. i've had to make already a lot of work for make all working, remains only the order editor but with JS i'm not familiar. Thanks a lot!
  5. solved.. IF SOMEONE HAVE PROBLEMS WITH "GET" FORMS, JUST ADD THIS RIGHT AFTER THE FORM INITIALIZATION (the tep_draw_form function): tep_draw_hidden_field('osCAdminID', $_GET['osCAdminID']) Have a nice programming day :)
  6. does someone experienced my problem? i've installed contrib and all seems working fine, but now on any admin page any filter (like search or select a category on categories.php) brings me to login page.. anyone had this problem? how you solved it?
  7. I've got it to work... need to replace (for PHP5) all $PHP_SELF with $_SERVER['PHP_SELF'] and all $HTTP_SERVER_VARS (DEPRECATED) WITH $_SERVER (pay attention, some server vars have canged names!!!!), $HTTP_GET_VARS with $_GET and $HTTP_POST_VARS with $_POST then replace: if (basename($PHP_SELF) != FILENAME_LOGIN && basename($PHP_SELF) != FILENAME_PASSWORD_FORGOTTEN && basename($PHP_SELF) != FILENAME_FORBIDDEN) { tep_admin_check_login(); } with: $trovato = 0; $string = array("login_admin.php", "login.php", "password_forgotten.php", "forbidden.php"); $container = $_SERVER['PHP_SELF']; foreach ($string as $key) { if(strstr($container,$key)) $trovato = $trovato+1; } if ($trovato == 0) { tep_admin_check_login(); }
  8. Hi all! I'm trying to get this huge contrib working on 2.2rc2.. on PHP5 and MySQL5, i've installed all, but when i try to get into admin section my browser just stops telling that the page redirects incorrectly, firefox detected that the server redirects the request in a way that could never be completed.... ive seen that on function tep_admin_check_login() there is a redirect, and on application_top.php, there is the inclusion of that function, seems wrong the code on application_top.php: if (basename($PHP_SELF) != FILENAME_LOGIN && basename($PHP_SELF) != FILENAME_PASSWORD_FORGOTTEN && basename($PHP_SELF) != FILENAME_FORBIDDEN) { in fact, i'm on the page declared under "FILENAME_LOGIN" but seems that it doesn't see the name of the page... as is, the code seems to be right but.. can someone help me on this problem?
  9. Good contrib! Just if it could work... every change I make in new order page it takes me to login page and doesn't save changes.. it's frustrating.. could it be fixed? I've seen the form target and it takes the session id correctly, just on click it loses it somewhere and starts another session..
  10. Hello and congrats for this contrib! works great and is very useful! BUT (Don't know if for other people is like for me) The file list on popup, from which i upload images and create folders, is showing files in a random sequence so i cannot find my image if folder contains many images. How i can reorder alphabetical the file list?? Thanks for help!
  11. =============================================== i have posted in wrong place, please delete! =============================================== Hello and congrats for this contrib! works great and is very useful! BUT (Don't know if for other people is like for me), the file list on popup, from which i upload images and create folders, is showing files in a random sequence so i cannot find my image if folder contains many images. How i can reorder alphabetical the file list?? Thanks for help!
  12. please someone that have this page running properly, past the code!! thanks
  13. can anyone that has the page that runs properly past his page code?? or no one has this contrib running? thanks if no one has this contrib running.. why oscommerce staff lets the contribution online? please delete contribs that doesn't run!
  14. so.. no one knows why the contribution doen's run??
×
×
  • Create New...