Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. 🚫 No AI-generated (LLM) posts allowed. Share your own thoughts and experience — accounts may be terminated for violations.

Offers Bunx.com 'AJAX homepages'

Status
Not open for further replies.

luigimasi

New Member
Legacy Platinum Member
Joined
Jan 22, 2005
Messages
114
Reaction score
0
Bunx.com Just wishing to sell the code, I want to use the domain for something new later. So basically a user can sign up, add RSS they use or relate to them and then friends & family can visit their page to view the latest things (eg latest flickr images, blog posts..) all in one place.

No income source yet but you can easily add AdSense or YPN to the page.

You'll get exclusive rights to the code. Script uses PHP and the script.aculo.us AJAX library.

Hoping to get close to $250 I've got some bills to pay :(

Thanks for viewing!
 

diraytrongcay

New Member
Legacy Platinum Member
Joined
Jun 8, 2005
Messages
113
Reaction score
0
Hello,

I did a test sign up, but never really gotten the password via email.

Regards,
 

bk`

New Member
Legacy Platinum Member
Joined
Mar 28, 2005
Messages
75
Reaction score
0
How tied to the layout is the script? Is it flexible enough to redesign and maintain functionality without major reworking of the backend?
 

luigimasi

New Member
Legacy Platinum Member
Joined
Jan 22, 2005
Messages
114
Reaction score
0
bk` said:
How tied to the layout is the script? Is it flexible enough to redesign and maintain functionality without major reworking of the backend?

It would be rather simple. Each page template is in it's .php file. So for example in the "Change Password" screen.

PHP:
<form action="?" method="post">
		<table align="center" width="550px" cellspacing="2" cellpadding="2" style="background: white; border: 1px solid #3366CC">
			<tr>
				<td colspan="2" class="header">
					<b>
						Change Password</b>
				</td>
			</tr>
			<tr>
				<td colspan="2" class="cookietime">
					This will change your main password to access Bunx
				</td>
			</tr>
			<tr>
				<td align="left" width="200px" class="side">
					Current Password:
				</td>
				<td class="row">
					<input type="password" name="old_pass" size="25" />
				</td>
			</tr>
			<tr>
				<td align="left" width="200px" class="side">
					New Password:
				</td>
				<td class="row">
					<input type="password" name="new_pass" size="25" />
					<br>
						<small>
							6-16 letters and numbers long</small>
			</td>
		</tr>
		<tr>
			<td align="left" width="200px" class="side">
				Confirm New Password:
			</td>
			<td class="row">
				<input type="password" name="new_confirm" size="25" />
			</td>
		</tr>
		<tr>
			<td colspan="2" class="submit">
				<input type="submit" name="change_pass" value="Process" />
			</td>
		</tr>
	</table>

Also most of the layout is in tables, but they're styled by CSS.
 
Status
Not open for further replies.
Top Bottom