Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dfeenstra

Archived
  • Posts

    92
  • Joined

  • Last visited

Profile Information

  • Real Name
    Daniel Feenstra

dfeenstra's Achievements

  1. What i mean is that i look for a way to keep the affiliate ref visible during the complete session of an custommer. Now the affiliate ref dissapears after the first click. I was thinking there was a way to make this happen but can not remember how. Hope someone nows this.
  2. Hello, I'm already using this contribution for a long time, but i now have a problem: when a custommer is comming to my shop bij an affiliate url the affiliates ref das not keep standing at the url, this disapears. This was always good for me, but now i needs the affiliate url keeps always visible in at the url. What i can remember is that there is a way to let it work as i wish, but i forgot how and where i can chance that. Can someone tel me how tot fix this? Kind regards Dani?l
  3. Hello, I have a problem with this contribution: When i look into the admin at whos online i get an error: Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /home/httpd/vhosts/sexkoopjes.nl/httpdocs/wnsadmin/includes/functions/database.php on line 45 0 - select time_entry, time_last_click from whos_online where session_id='6c0c7be63f10852bfcdf077d0187059f' [TEP STOP] and somtimes: Warning: mysql_pconnect(): Too many connections in /home/httpd/vhosts/sexkoopjes.nl/httpdocs/wnsadmin/includes/functions/database.php on line 17 Unable to connect to database server! I saw that more peaple have this problem and someone posted a few posible solutions, but non of those works for me. Someone can tel me what wrong?
  4. Hello, I have a small problem with this contribution: when i put in an html code to send an html newsletter like <HTML> <HEAD> <TITLE>newsletter title</TITLE> </HEAD> <BODY vLink=#006400 aLink=#006400 link=#006400 color=#0066cc> newsletter test and tables </BODY> </HTML> The script removes al of the header and fotter tags like: <HTML> <HEAD> <TITLE>newsletter title</TITLE> </HEAD> <BODY vLink=#006400 aLink=#006400 link=#006400 color=#0066cc> and </BODY> </HTML> so i can not put in an background collor for the newsletter. Can someone tell me why this part of the html is removed and how i can solve this problem so i can use an background color. Dani?l
  5. Hello, I have an question: in the database in the tabel affiliate_affiliate i found the fields affiliate_lft and affiliate_rgt and affiliate_root. For as far i can see the affiliate_root is the field where i can see what the sponsor is of the affiliate, but wherefor are the other 2 fields? And is it posible to see in the admin of the shop an family tree so i can see witch affiliate is an sponsor of an other affiliate. The same thing for the affiliates, is it posible that they can see how many partners they have under them? Regards Dani?l
  6. hi, i have found out how to solve this when you use another language. INSERT INTO affiliate_payment_status (affiliate_payment_status_id, affiliate_language_id, affiliate_payment_status_name) VALUES("0", "2", "schwebend"); INSERT INTO affiliate_payment_status (affiliate_payment_status_id, affiliate_language_id, affiliate_payment_status_name) VALUES("1", "2", "zahlend"); the 2 is for the language, i'm also using dutch, and that was the 4 language, so i replaced the to in above code with 4 and put that in the database and it is working now. So just look what your language number si and place that on the place of the 2 . Dani?l
  7. Hello, I have another quistion and that is the following: I'm using the affiliate tier and i have 3 levels in that. I want the following: i want to have 3 kinds of tiers tier 1 is 3 levels and as following -> level 1 = 20% / level 2 =5% and level 3 = 1% tier 2 is 3 levels and as following -> level 1 =5% / level 2 = 15% and level 3 = 5% tier 3 is 5 levels and as following -> level 1 =5% / level 2 = ..... and so on this is just an example. Standard an new affiliate has to be assignt to tier 1 but i want the posibility to assign an affiliate to another tier, this is becouse i also can get some affiliates that not use the program to sell the products but know a lot of posible affiliates that want to use my affiliate program. Is this somehowe posible? I also want to pay for someone who can make this with custom programming (there is already been custom programming to the affiliate program). Hope someone can help me with this. Regards Dani?l
  8. oke, i have find out what to do after looking into the database, i have also made an database entry for the dutch language and now it is working Thanx Dani?l
  9. Hi, Thanx for the reply, but i'm not sure... i'm using the german language, but i have just copy the english files to the german language, i still have to do that database upgrade? And i'm also using the dutch language, do i have to do another database upgrade than? Dani?l
  10. Hello, Thanx for this great contribution. I only have one problem: the start billing function is not working :-( The orders are 30 days old and the must be 5 days old, the status of the orders is 3 and they must be 1 (set for testing, and also tested it on status 3) the affiliate has earnd 500.00 euro and that must be 50 euro so all of this is good. When i now press the start billing button on the payment page i get the following message: Your Affiliates have been sucessfully billed But there are stil 0 payments....... :blink: What can be wron? Hope someone can help me. Kind regards Dani?l
  11. hi, I have this working with the bts contribution. i think there is an special bts version, but i'm not sure, just take a look into the contribution section. Dani?l
  12. Hi Zlack, search for: if (tep_has_category_subcategories($counter)) { $boxContent .= tep_image(DIR_WS_IMAGES . 'pointer_blue.gif', ''); } in catalog/includes/boxes/categories.php and replace that with: if ($tree[$counter]['level'] < 1){ $boxContent .= tep_image(DIR_WS_IMAGES . $tree[$counter]['name']. '.gif', ''); } and make sure that the categorie images are named exactly as the categorie name. This is al you have to do. Dani?l
  13. Hello Nils, You are right, that is a little problem. is there not a way i can tel the script somthing like: if (tep_is_toplevel_category) { So when the category is an toplevel categorie place that image, and else place the other image. is sted off: if (tep_has_category_subcategories($counter)) { I'm going to have a look into that, when you no some nice way for this.... please tel me. Dani?l
  14. Hello Nils, I have found another way to display the categorie image in front of the categorie name. In this way it is needed that the categorie image has the exact same name as the categorie. This is the code i use now: if (tep_has_category_subcategories($counter)) { $boxContent .= tep_image(DIR_WS_IMAGES . $tree[$counter]['name']. '.gif', ''); } else { $boxContent .= tep_image(DIR_WS_IMAGES . 'pointer_blue_light.gif', ''); } and when you want to use another image than the categorie image you can make the code as following: if (tep_has_category_subcategories($counter)) { $boxContent .= tep_image(DIR_WS_IMAGES . $tree[$counter]['name']. 'second.gif', ''); } else { $boxContent .= tep_image(DIR_WS_IMAGES . 'pointer_blue_light.gif', ''); } when you have an categorie "pensel" you can upload an image named penselsecond.gif and thats the image he places in front of the categorie name now. Hope you understand what i mean and have done and that this is usefull for someone. Dani?l
  15. Hello Nils, Can you tel me what i have to chanche to the code to get the categorie image in front of the categorie name? I want to have it like: so in front of the head categorie an image and in front of all the sub categories an arrow. Hope you can help me with tis, i have no clue howe to do this (php newbey). Dani?l
×
×
  • Create New...