ASP - Members Area Via Paypal?
I would like to create a member's area on my ASP/Access web site but members must pay an annual subscription fee via Paypal to access this member's area.
Unfortunately, the Hosting provider does not support a Unix system, so i cant store all my members area information in a password protected folder.
Please could anyone advise me the best way to do this?
I already have a merchant account set up with Paypal.
I need to give every member an individual UserID and Password, and restict access to the members files, so visitors cant access them directly via the Browser Bar and by-pass the Paypal fee.
I would also like an automated service, so if a member does not renew their subscription, they will not be able to access the member's area once a year has passed.
View Replies
ADVERTISEMENT
I want to dynamicaly filter the members in my pivottable.
Here you see how it's done the static way:
pview.RowAxis.InsertFieldSet pview.FieldSets("manager)
Set fld = pview.FieldSets("manager").Fields(0)
fld.FilterFunction = c.plFilterFunctionInclude
fld.FilterMembers = Array("ZWAENEPOEL Geert","VAN COILLIE Caroline")
but I receive the selected members from another page, they are all in
the field 'selectedmembers', so I tried this:
fld.FilterMembers = Array(selectedmembers.value)
View Replies
View Related
I have a asp page that I need to check to see if the current logged on user is a member of a specific active directory group. How can I do this?
I have tried so many different LDAP code examples and none seem to work. Do I need to include a administrator username and password in the code? Does any have any samples of code I can try?
View Replies
View Related
Am a complete newbie at ASP, I currently have a site which has a MySQL backend database, users can apply to join and then once joined they can edit there information. I can login using a username/password senario.
From there I can see all users currently active, and whom I am waiting to join. I can also search the users Birthdays that are coming up and delete users. Pretty straight forward. I want to be able to see the last 5 users who logged on? Anyone know how to do this or if it's fairly complicated?
View Replies
View Related
I have a members page on my site and want to give the members a way to edit there own pages (either just text or images as well) so they can log into there own members page and then edit text boxes to complete the required info.
May be if you see a page you will understand what I want to do.
Members Page
I want to let the members edit the orange text and the small bit of white text on the right.
View Replies
View Related
I need to make a function that takes Request.QueryString elements and strips all single quotes from the input.
function StripQuotes(array)
dim StripQuotes
for each old in array
new = replace quotes (old)
Add new to StripQuotes
next
return StripQuotes
end function
View Replies
View Related
I tried searching for it but didn't find anything. Once my members log in, I want to display their names in a reserved section on the page. I was wondering what is the best way to display "who" is online.
I was going to add their names to an "online" table in my database when they logged in. But how would I remove them if they didn't log out. How do I remove their names if the session variables timeout or they close the browser without clicking the log out link. I am also open to other techniques.
View Replies
View Related
I am trying to send out email blasts to over 6000 users of a website (Not Spam) However when I try it with the following script, it crashes at times and sends it through at times. I need a more reliable way of sending out emails to a large number and this is the mail feature of the website. There will be users trying to send out mails at the same time. Code:
View Replies
View Related
Anyone know anything about integrating "Websites Payment Pro (US)" from PayPal into your site? I'm all html right now on a windows based server. I'm lost and nobody at PayPal is worth their weight!
View Replies
View Related
I'm a making a system where whenever someone buys something of mine through paypal, paypal sends a message to my script, which then gets recorded into a database. Say two people are buying something at the same time, will those two transactions interfere with eachother? Do I have to do anything special to make sure they dont interfere?
View Replies
View Related
I tried posting to the PayPalDev forum, but came back two days later and decided not to wake up any of the people who were sleeping quietly, including the mods! I've seen more posts on a site dedicated to having sex with your keyboard, and trust me the forum on that site took me ages to setup.
Anyway, just a quick question. Does anyone use PayPal, specifically the IPN or PDT or whatever it's called. I get the general idea of what it's trying to do, i.e. you post to them, they post to you an encrypted code, you post it back and that gives you AUTHORISED, DECLINED etc.
View Replies
View Related
I don't know full details about paypal.I'm going to include paypal account in my page.I dont know how paypal works.
View Replies
View Related
I'm trying to retrieve a value at the end of the paypal process. This value is passed to paypal but I'm not sure how to get it at the end?
View Replies
View Related
how i can integrate paypal with asp, what i want is to be able to design a form where the webmaster, can go and list upcoming events for the company, and each event will have a different price.
View Replies
View Related
Can some one point me to a resource (if there is one) that describes if a
value is sent back to my site from PAyPal once the payment has been
process.
The reason is that I want to perform some actions once I know the payment
has been received and processed.
I have looked the PDN (Paypal developers Network) but cannot see anything -
I may have missed of course !!
View Replies
View Related
I keep getting a callback error with my Cactushop software everytime a customer places an order. Everytime an order goes through I get an email from my shopping cart software like the following and so no details in the back end get updated ie stock, payment confirmation etc :[B]An error has occurred whilst performing a callback. The details below outline
the error. Please check your gateway config settings.
Description: Type mismatch
Error Source: Microsoft VBScript runtime error
Page: /PAYPAL_callback.asp
Stage: 5
CactuShop Version: 5.1
Server Variables:
- ALL_HTTP : HTTP_CONTENT_LENGTH:869
HTTP_CONTENT_TYPE:application/x-www-form-urlencoded
[...removed by moderator...]
View Replies
View Related
I am developing a web, that when the user fill all fields in the form, the system redirect it to a paypal payment system.
The code is:
response.redirect ("https://www.paypal.com/subscriptions/business=privateclub%40stocksrally.com&item_name=StocksRally+montly+membership &item_number=1265698-25&no_note=1¤cy_code=USD&a3=89.00&p3=1&t3=M&src=""1&sra=1")
This code runs if you copy and paste in your browser, but when i redirect it with de ASP object response.redirect is bad converted to the browser, and not go to the destination.
View Replies
View Related
I already have the asp files coded,but when a user goes to submit payment I cant get my database to update. Im sure its an easy fix, but I cant seem to figure it out.I have attached the file that first submits to paypal, and then the IPN file.
View Replies
View Related
how to implement the paypal gateway in my site using IPN method. is there is any coder who has done that previously. If there is code to check what to do it will be great helpful. I can't able to understand some of the stuffs which is in paypal site itself. So any one can please give me the code.
View Replies
View Related
I wrote a shopping cart script and now I want to integrate it with paypal. How I can integrate it with paypal ? Basically I want to add the order into the dbase after the checkout process completed successfully.
View Replies
View Related
i cant generate paypal buttons with software available as mine need to be dynamic. however i have read paypal manuals 3 times now, and all it tells me is i have to have openSSL.
now i dont, least my host doesent anyway, i have an SSL certificate, but it is not open. does anyone have any experience of trying to encrypt there dynamic buttons for paypal and working with ASP ?
View Replies
View Related
We're trying to set up payment through PayPal for personalized items. PayPal only allows two options, and as we want to collect more than that, it won't work to use PayPal alone.
If we want to have the user select/type multiple options (about 10) for an item (eg, Person For, Person From, email, address, display option, etc, etc) and then pay for this using PayPal, how do we go about doing this?
View Replies
View Related
Can anyone provide me with the ASP Code for processing PayPal transactions? I also want to know the fields that are required for PayPal.
View Replies
View Related
Say, for example you pass variables (strings) to another page via server.transfer. Could you populate a “pay now” paypal button input type, say a price with a variable? Maybe like <input type=”hidden” name=”amount” value=<%=paymentNumber%>?
View Replies
View Related
I'm working with the Paypal shopping cart and there is an option to use Instant Payment notification (IPN) to automate your inventory when you get a sale.
Anyway...I need to take their POST info and re-POST it to their server for coinfirmation. I've found some COM objects to handle this sort of thing, but they usually want money. I haven't found any good tutorials explaining how to do an HTTP POST in an ASP page.
View Replies
View Related
i am trying to test my IPN on sandbox, but it is impossible as you need to login first.
so i have this Code:
View Replies
View Related
I have an asp page which allows the user to scroll through images one at a time created using DW server behaviours, record set and repeat region etc.
What I would like to do is have a PayPal button on the page that can pick up from the recordset necessary fields for ordering such as item cost and description. The part of the code referring to the recordset is below: Code:
View Replies
View Related
I have a page and dependant on what is passed via the url ie page.asp?area=xyz
If the QueryString("area")=xzy then part of the page is hidden. How would I go about this?
View Replies
View Related
I have a database on a website, and a table in this db contains two fields,PCode, and Verified. I have to add new records to this in batches, and these batches are generated on a local PC.
Is it possible to paste the contents of a text file into a text area form field, and then run an asp/vbscript routine to update the database.
The text file contents to be pasted would be in the format:
1234, Y
1235, N
1236, Y
I am ok with updating the database,what I would like to know is how to split the text into individual items - is there some kind of read line function.
View Replies
View Related
I am trying to hide an area if the value in a record is true, can anyone tell me why what I have below won't work?
<% if (String(rsAccount.Fields.Item("Suspend").Value) = false) { %>
<form name="SuspendArea" method="POST" action="<%=MM_editAction%>">
<input name="Suspend" type="hidden" id="Suspend" value="True">
<input type="submit" name="Submit2" value="Suspend">
<input type="hidden" name="MM_update" value="SuspendArea">
<input type="hidden" name="MM_recordId" value="<%= rsAccount.Fields.Item("ActivationCode").Value %>">
</form>
<% } // end %> </td>
View Replies
View Related
I am trying to do is make a member area. I am setup for asp and others but what I want is it to show how many points they have in there account when they enter and then when they use some of there points it will deduct there points from there account any help on this would be great Ie: websites code or any tips.
View Replies
View Related
Can anyone help me format text in a text area using ASP? I am bringing in data from a database and need to format headers for the data. Is there anyway to format this in a text area using ASP?
View Replies
View Related
when I´m typing a text data in to the form and I press Enter to go
to a new line and after when the data is submited in the DB I go to PHPMyAdmin and the field looks like this:
line1: text
line2: text2
etc.
But in ASP it looks like this:
line1: text1 text2
What the hell is this now
View Replies
View Related