Jump to content

phpvox

Members
  • Posts

    50
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

phpvox's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. no you dont understand, please read my first question, my affiliate script is not recording sales as it should do.
  2. im not getting an answer from them, thats why im here.............this script updates affiliate sales, for some reason its not recording those sales, if you sign up as affiliate, you will not be credited for your sales. so i need to fix it, what am i doing wrong ? thanks
  3. can someone be detailed to explain how to do it ? I feel like a noob asking, is due to my language is not the best >: I add the below code in the "Payment_success.html ??? < i m g src="http://www.DomainNameHere.com/webaffiliate/sale.php?prod=X1*N1,X2*N1,X3*N1,X4*N1,X5*N1" alt="" height="1" width="1" border="0" /> BUT IT DIDNT WORK !!!!!!
  4. can someone explain this to me ? .....1 + 2 ....im having hard time understanding it, thanks If you have multiple products, sale.php expects them in the format sale.php?prod=X1*N1,X2*N2,X3*N3 (and so forth), where the Xs are the product IDs and the Ns are their quantities. The script can process arbitrarily many products in this fashion. You can route the customer through this script in a couple of ways: 1. By using this script as the return page for your payment gateway. After processing the sale, it will return the user to the URL that you have associated with the product. 2. By including it discreetly on the return page as a one-pixel image: <img src="http://YOUR-BASE-WEBAFFILIATE-URL/SALE-PHP-URL" alt="" height="1" width="1" border="0" /> In this case, no image will be seen, and only the processing occurs "in the background."
  5. im trying to set it up to record affiliates sales, but its not doing it.....im just wondering if im doing something wrong
  6. is it supose to be like this ??? sale.php?prod=X1*N1,X2*N2,X3*N3,X4*N4,X5*X5 ?????? or sale.php?prod=X1*N1,X2*N1,X3*N1,X4*N1,X5*N1 i just set all "N" to 1
  7. i did what it says, there is no other place to look into.....i did put the code as it says in the paymet_sucess.html...thats the return page after the purchas
  8. well its encoded and about 200 files ....so its too big to post it
  9. I have this php affiliate script, im trying to configure it to credit the affiliates when a sale is made, I did everything right, but its not crediting them. I have 5 pruducts, 1,2,3,4,5 ID's and the return page is payment_sucsess.html.......any idea what im doing wrong ? please help me , I realy need help with this and this is the only forum that im loyal to........thanks here is the instructions In order to have the webAffiliateâ„¢ system properly credit a commission and sale, you will need to route a customer who has successfully completed a sale through http://YOUR-BASE-WEBAFFILIATE-URL/sale.php?prod=X, where YOUR-BASE-WEBAFFILIATE-URL is the URL to the directory that houses the main webAffiliateâ„¢ script, and X is the ID of the product sold (you can obtain the product ID for each product by viewing the Products screen in the administrative backend). If you have multiple products, sale.php expects them in the format sale.php?prod=X1*N1,X2*N2,X3*N3 (and so forth), where the Xs are the product IDs and the Ns are their quantities. The script can process arbitrarily many products in this fashion. You can route the customer through this script in a couple of ways: 1. By using this script as the return page for your payment gateway. After processing the sale, it will return the user to the URL that you have associated with the product. 2. By including it discreetly on the return page as a one-pixel image: < i m g src="http://YOUR-BASE-WEBAFFILIATE-URL/SALE-PHP-URL" alt="" height="1" width="1" border="0" /> In this case, no image will be seen, and only the processing occurs "in the background." In either case, remember that you have to have the appropriate ID(s) sent to sale.php for each sale. Otherwise, your sales and commissions will not work! end of instruction i did put spaces where < i m g .....cause i couldnt past it here
  10. it says that they got stamps in their profile, but it still dosent give them access to comummicate with other members
  11. i know this script sucks, thats why im having a problem.....im going to hire a company to redo the whole script, but i wish i can fix this problem first
  12. This code is from my social networking script send_message.pml", this is the file that "sends your email" to user.........it checks to see if you are a paid member or not, if yes, then it sends your email to user, if not, then it will take you to the billings page to pay. Here is the problem users when they buy contact stamps fails to let them send emails, it dosent function..... it still takes them to the billing page even tho they have stamps......it shouldnt do that, it should send your email to the other users. heres the code. any help would be nice......thanks <?php if($action == send) { $fBlocked = f(q("SELECT id FROM dt_blocked WHERE member_id = '$rid' and blocked_id = '$fMember[id]'")); if ($fBlocked[id] != "") { $errors_num++; $errors_string .= "$errors_num. You have been blocked by this user!<br>\n"; } if ($rid =="") { $errors_num++; $errors_string .= "$errors_num. Please enter a recepient.<br>\n"; } if ($subject =="") { $errors_num++; $errors_string .= "$errors_num. Please enter a subject.<br>\n"; } if ($message =="") { $errors_num++; $errors_string .= "$errors_num. Please enter a message.<br>\n"; } if ($errors_num) { $r_records = q("SELECT * FROM dt_address_book WHERE member_id='$fMember[id]'"); include "templates/send_message.ihtml"; } else { q("INSERT INTO dt_messages (sid, rid, subject, message, timesent) VALUES (".$fMember[id].", $rid, '$subject', '$message', ".(strtotime(date("d M Y H:i:s"))).")"); // Begin New Code $action = "add"; $owner_member_id = $fMember[id]; $member_id = $rid; $hotlist_type = "messaged"; include "engine/pages/hot_lists.pml"; // End New Code include "templates/message_sent.ihtml"; $query = "select * from dt_members where id = '$rid'"; $user_info = f(q($query)); $login = $user_info["login"]; $generated_link = $root_host."index.php?page=sign_in"; mailSend($user_info["email"], "new_mail"); } } else if($action == "new") { $f_balance = f(q("SELECT balance FROM dt_stamps_balance WHERE member_id='$fMember[id]'")); $action = ""; $free_profile = 0; $can_contact = 0; $valid = 0; if($fMember[id] == "") return; if(($fMember[ unlimited ] && $fMember[ unlimited_end ] > strtotime(date("d M Y H:i:s"))) || $free_initiate) $free_profile = 1; else if($f_balance[ balance ] >= 1) $can_contact = 1; if(!$free_profile && !$can_contact) { include "templates/cannot_contact.ihtml"; return; } if($free_profile) { $valid = 1; include "engine/pages/send_message.pml"; return; } if($can_contact) { q("UPDATE dt_stamps_balance SET balance=balance-1 WHERE member_id='$fMember[id]'"); $valid = 1; include "engine/pages/send_message.pml"; return; } } else { if((($reply == "") && (!$valid)) || (!$free_reply && $fMember[unlimited] != 1)) { include "templates/cannot_contact.ihtml"; return; } if ($reply != "") { $r_records = q("SELECT * FROM dt_messages WHERE id=$reply"); } elseif ($mid != "") { $f_record = f(q("SELECT * FROM dt_address_book WHERE (member_id='$fMember[id]' AND contact_profile_id = '$mid')")); } elseif ($pid != "") { $f_record = f(q("SELECT * FROM dt_address_book WHERE (member_id='$fMember[id]' AND contact_profile_id = '$pid')")); } else { $r_records = q("SELECT * FROM dt_address_book WHERE member_id='$fMember[id]'"); } include "templates/send_message.ihtml"; } ?>
  13. that plugin is encoded too, it will only dispaly the server info.l..such as php ver....plugin version ect it says to to contact "system adminisrator" .......so is it server side issue ???? i have access to the server, what should i change ?
  14. I have a php and mysql based script, when I click on the system information link, i get the bellow error....the script is zend coded so i cant do much with it......IT WORKS FINE ON A SHARED HOSTING....but not on my virtual host server.....any ideas ? thanks Execution failed You do not have access on execution of plug-in named "sysinfo". For more information about this error, please contact our system administrator.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.