oy D go in chat room on my site
1,726 2006-04-09 21:59
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
1,727 2006-04-06 23:03
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
downliner.. dude... that what im trying to do... kill the array in the file... who want to edit php files to add products.. a simple click here and there...
i think by monday it will be completed.. with ap_mod and working..
NEED PAYPAL API GURU.... THAT THE NEXT MISSION..... PAYPALLLLLLLLLLLLLLLLLLLLLL..
<!-- in the final stages before release is out! still no paypal API.. one little bug.. product name not listed. --!>
1,728 2006-04-06 21:33
Topic: log guest ip (2 replies, posted in Programming)
is there away to log ip and show then on the page? i mean punonline? guest-ip-123.123.123
so that i can see who returning back with the same ip?
1,729 2006-04-06 20:15
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
ok i got an ap_product manager designed and it list in the store front.. so there are a few little issue left. on how to remove items and such!
so far it coming along good..
im looking for people who can help with the design.
now working out the bugs of adding products with photos...hehe..
need a paypal guru!
HIT ME UP!
1,730 2006-04-04 01:50
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
well the basic idea is to get the order form working first.
and sometype of ap_mod to add products then send it to paypal for chceck out and processing!
1,731 2006-04-04 00:44
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
can i tbe simply modified ? i really dont understand..hahaha....
1,732 2006-04-03 23:41
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
i would like to know how can i send the output of the order form to paypal to be processed
1,733 2006-04-03 17:55
Re: Website/PunBB Integration (12 replies, posted in PunBB 1.2 troubleshooting)
ConnerHD
so i can make a whole site and include membership and forum from the page that i created?
example beginning works
http://nalan.org/test
1,734 2006-04-02 03:22
Re: PUNBB integration Mod Thing, (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
kewl, i started doing that also. i have been moding punbb_frontpage for two weeks and im working on some shopping carts and ad-manger mods for punbb
and today i have learnt how to create normal pages that dont pull the forum information but only the cache and login info. just got to learn how to create ap_mods and im set.
so , if you like my site i got all the files and i can help out some..
(my goal is to have a non-looking cms system, i mean everything looks like php-nuke ....lol...)
1,735 2006-04-01 21:39
Re: How to integrate into a table? (15 replies, posted in PunBB 1.2 troubleshooting)
look at moding the header tpl and the footer
kind of like intergrating wordpress with punbb
this is the script you need to intergrate other stuff into punbb
<?php
define('PUN_ROOT', './');
define('PUN_QUIET_VISIT', 1);
require PUN_ROOT.'include/common.php';
//Set the page title here
$page_title = pun_htmlspecialchars($pun_config['o_board_title']) . ' / Chat';
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';
require PUN_ROOT.'include/parser.php';
?>
YOUR PHP OR HTML GOES HERE
<?php
require PUN_ROOT.'footer.php';
save as yourfile.php
then u can go in to admin-options create a link.
http://nalan.org/test.php
i was playing with making my own gallery there.
or use frontpage_punbb
1,736 2006-04-01 21:12
Re: Counter Strike Theme (1 replies, posted in PunBB 1.2 discussion)
email me some site with CS forums and i can try to build one for you!
1,737 2006-04-01 21:01
Re: Website/PunBB Integration (12 replies, posted in PunBB 1.2 troubleshooting)
connorhd,
so i can design any type of layout and have them connected to the forum for membership and i can set it where member only page by adding
<?php
define('PUN_ROOT', './');
define('PUN_QUIET_VISIT', 1);
require PUN_ROOT.'include/common.php';
if ($pun_user['g_read_board'] == '0')
message($lang_common['No view']);
//Hide contest from Guest
if ($pun_user['is_guest'])
message($lang_common['No permission']);
at the top of the page.
so i can leave out the.
//Set the page title here
$page_title = pun_htmlspecialchars($pun_config['o_board_title']) . ' / Title';
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';
require PUN_ROOT.'include/parser.php';
and it doesnt pull the header or anyother thing from the site?
1,738 2006-04-01 20:43
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
in the email
i got was like this
Order submitted by test@test.org
1 of Brooke Photo for $ 12.50
1 of Widget DX for $ 18.00
1 of Super Widget LX for $ 24.99
Sub Total: $55.49
Shipping: $5.00
Sales Tax: $4.44
-----------------------------------------
Grand Total: $64.93Desired Delivery Date: April 02, 2006
so i added a
$msg .= "Grand Total: $" . $_POST['grand_tot'];
$msg .= "\n"; to give me a space
$msg .= "Desired Delivery Date: " . $_POST['del_date'] . "\n\n";
$msg .= "Comments:\n" . $_POST['comments'];
this is output!
Order submitted by test@test.org
12 of Brooke Photo for $ 150.00
Sub Total: $150.00
Shipping: $5.00
Sales Tax: $12.00
-----------------------------------------
Grand Total: $167.00
Desired Delivery Date: April 02, 2006
Comments:
12345
1,739 2006-04-01 19:50
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
im going to repost all the files even with the style sheet if that is ok?
i think that it really need a plugin admin mod to set the array of products.
im not good and writing that stuff..lol.
1,740 2006-04-01 18:47
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
how can i added images to the product?
1,741 2006-04-01 17:09
Re: PHP Order Form - Simple PHP Help Needed (28 replies, posted in Programming)
sweet work!
i have mod it a bit to work with my theme i took out the link to the css and left it to the style of the site. just added a few line from the old css to the new one.
it was easy to intergrate into my site with this code
to pull the header and footer
http://nalan.org/store.php
<?php
define('PUN_ROOT', './');
define('PUN_QUIET_VISIT', 1);
require PUN_ROOT.'include/common.php';
//if ($pun_user['g_read_board'] == '0') <!--remove the // for members only -->
// message($lang_common['No view']); <!--remove the // for members only -->
//Hide contest from Guest
//if ($pun_user['is_guest']) <!--remove the // for members only -->
// message($lang_common['No permission']); <!--remove the // for members only -->
//Set the page title here
$page_title = pun_htmlspecialchars($pun_config['o_board_title']) . ' / Chat';
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';
require PUN_ROOT.'include/parser.php';
?>
put your body here and it will work
<?php
require PUN_ROOT.'footer.php';
1,742 2006-03-30 05:04
Re: manually verify new registrations? (8 replies, posted in PunBB 1.2 troubleshooting)
ban the ip and user name in the user groups
1,743 2006-03-30 04:55
Re: I wanna create a "Login Logging" page... (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
kewl if ya need some basic help hit me up on http://nalan.org i got chat room.. i intergrated flastchat from www.tufat..com
im admin,quaker on there...
1,744 2006-03-30 03:53
Re: I wanna create a "Login Logging" page... (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
wow, so u want a stats on all members? i thought that i seen a mod so u can trck all members and it tells you what all they did in the forum?
http://www.punres.org/viewtopic.php?id=522
something like that?
a userstats mod?
1,745 2006-03-28 19:50
Re: I wanna create a "Login Logging" page... (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
true there.. but i only know how to create extra pages..haha
1,746 2006-03-27 19:05
Re: I wanna create a "Login Logging" page... (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
try this!
this is a login file that i created!
http://nalan.org/login1.php
<?php
define('PUN_ROOT', './');
define('PUN_QUIET_VISIT', 1);
require PUN_ROOT.'include/common.php';
//Set the page title here
$page_title = pun_htmlspecialchars($pun_config['o_board_title']) . ' / Chat';
define('PUN_ALLOW_INDEX', 1);
require PUN_ROOT.'header.php';
require PUN_ROOT.'include/parser.php';
?>
<div class="logintop">
<form id="login" name="login" name="qpost" method="post" action="login.php?action=in" onsubmit="return process_form(this)">
<p>
<input type="hidden" name="form_sent" value="1" />
<input type="hidden" name="redirect_url" value="<?php echo $redirect_url ?>" />
<?php echo $lang_common['Username'] ?>:
<input type="text" name="req_username" size="16" maxlength="25" />
<?php echo $lang_common['Password'] ?>:
<input type="password" name="req_password" size="16" maxlength="16" wrap="virtual" onkeypress="if(event.keyCode==13) document.login.submit()" />
<a href="#" onclick="document.login.submit(); return true"><?php echo $lang_common['Login'] ?></a> | <a href="register.php"><?php echo $lang_common['Register'] ?></a>
</p>
</form>
</div>
<?php
require PUN_ROOT.'footer.php';
1,747 2006-03-26 20:23
Re: Multi - PunBB v2 (38 replies, posted in PunBB 1.2 modifications, plugins and integrations)
how can i do an page like frontpage_punbb with mutli-forum?
1,748 2006-03-22 01:03
Re: Kuruptness, (CMS Style) Running punbb! (15 replies, posted in PunBB 1.2 show off)
haha
see im not that smart..lol.
1,749 2006-03-22 00:43
Re: Kuruptness, (CMS Style) Running punbb! (15 replies, posted in PunBB 1.2 show off)
kewl keep up the hard work!
im playing with frontpage-punbb
http://nalan.org
1,750 2006-03-21 21:01
Re: Any mod you want (27 replies, posted in PunBB 1.2 modifications, plugins and integrations)
im looking for a mod that allows me to sale photo from the gallery or a paid group(paid group) that get all access to uploads or download via there membership? WILLING TO PAY! ASAP!
http://nalan.org