|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Generate data entry and reporting .NET Web apps in minutes, straight from your database. Read our FREE whitepaper “Build Web 2.0 Applications Without Hand-Coding” Download now! |
|
#1
|
||||
|
||||
|
User CP RSS
Here's a suggestion: generate an RSS feed for the topics listed in the User CP. That way users can get their subscribed topics from a reader or similar software (such as Google's personalized homepage).
__________________
Digg my software! TagManage Means Easy Intranet Blogging New Startup Announces Enterprise Bookmarking and Blogging Tool |
|
#2
|
||||
|
||||
|
That's a lot of cycles right there to update the RSS for each user ... good idea though
__________________
--Ax without exception, there is no rule ... The great thing about Object Oriented code is that it can make small, simple problems look like large, complex ones ![]() 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0 Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems. -- Jamie Zawinski Detavil - the devil is in the detail, allegedly, and I use the term advisedly, allegedly ... oh, no, wait I did ... |
|
#3
|
||||
|
||||
|
Not really, you'd dynamically generate it on request, perhaps at a push you could just use a different skin with the RSS template in it and generate the smaller bits.
__________________
~James [Not currently seeking freelance work] Like philosophy or interested in spirituality? Philosophorum. Game Dev Experts Forums Foresight Linux - Because your desktop should be cool! Linux FAQ FedoraFAQ UbuntuGuide |
|
#4
|
||||
|
||||
|
That's what I thought. Querying the DB and generating an xml file shouldn't take more cycles than querying the DB and generating the PHP for the usercp. Do it on-demand, and it's really no different than browsing to the CP and seeing it there (in fact, you can probably just replace that altogether with RSS... put the RSS feed right into the CP as well).
|
|
#5
|
||||
|
||||
|
Quote:
Except you have to log in to see your usercp. How would you get round that with an aggregator?
__________________
Support requests via PM will be ignored! |
|
#6
|
||||
|
||||
|
Quote:
Not sure. However, LiveJournal has RSS for each user that are dynamically generated and their authentication carries over to them as well. When you are logged in (browsing their site or not, just as long as you have their login cookie), any feeds that you read have the proper security levels implemented. If a LiveJournal friend has a friends-only post and you're not logged in, the RSS feed that you request won't have that post. If you go to http://sbressi.livejournal.com/data/rss and look at my RSS feed, you won't see some friends-only entries. If you had the LJ cookie, you would. I'd imagine it would be similar in some way to that. Whatever PHP file creates the feed would check for the cookie that exists from the forum software. |
|
#7
|
||||
|
||||
|
If it was something you really needed you could query your CP say every 15 mins to see if there's anything new (actually make that 14 mins, because of the logout time interval), and create your own XML feed from that, using curl, wget or LWP ...
|
|
#8
|
||||
|
||||
|
IP logging, perhaps?
<edit="more detail"> As in when they request the script, check if their IP matches the one last used to log in properly. </edit> Last edited by LinuxPenguin : February 13th, 2006 at 03:59 PM. |
|
#9
|
||||
|
||||
|
Quote:
Is there any problem with not having to log in for the RSS feed? Say have some variable like 'user=cybersaga' in the url. All people could see are the threads you've suscribed to. Big deal. Then when you actually go to the page, it will work as normal and make you log in.
__________________
Web Design Tips - Posting and You If I've been helpful, and/or you're really nice, consider buying something from my Amazon.com wishlist.
|
|
#10
|
||||
|
||||
|
Quote:
That's true, it's no worse than me going to your profile and looking at what threads you've posted in... |
|
#11
|
|||
|