Jump to content

spkenn5

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

spkenn5's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. hey guys, recently i tried installing php 5 using the installer, but then as soon as i check to install the extensions, this comes out, the windows installer error thing. i wonder whats wrong? also before this happens everytime i load a php page, my apache hangs, the error message pops out ( win xp error messages where you have the option to send or dont send the error ) i wonder whats wrong with this thanks guys
  2. spkenn5

    test

    hi guys, i have recently asked about the membership thing. after a few readings now i think i get it, so inside the html templates i made, then i put the php code to whereever it should be put in. for ex: <html> <head></head> <body> <? phpinfo() ?> </body> </html> is that how it goes? if it is then i think im getting it and here's the information, i was just testing around scripts, how do i change the layout for that skin? so i can just cut out the content and put it in my website. for example, i just want the content not the layout, so i can just put the login screen elsewhere [img src=\"http://img227.imageshack.us/img227/4364/funny9ea.jpg\" border=\"0\" alt=\"IPB Image\" /] thanks guys
  3. hi guys, here i am again.. installed this script ( member-login ) then, when i tried to sign up, it doesnt send me an email of activation, why is that? could it be i have to setup my own email server? if so how do i do that? Thanks
  4. [!--quoteo(post=353316:date=Mar 9 2006, 01:06 PM:name=Flinch)--][div class=\'quotetop\']QUOTE(Flinch @ Mar 9 2006, 01:06 PM) [snapback]353316[/snapback][/div][div class=\'quotemain\'][!--quotec--] I would suggest reading some of the many tutorials located on this site already. There are a few that I can recall that tackle the exact topic you are after. After you read the membership tutorials we have here, you'll soon get the hang of how memberships work and will begin to implement yor own ideas to make your site work the best. One tip I could give you is, if you want to make people have to log in to download things, the easiest way (for me, IMO) is to have a download script that will first check if the person is logged in (by either checking session vars, or however you get your membership system running), and then having it process the download request. [code] //goodies.php echo "<a href='download.php?id=1'>Download item one!</a>"; [/code] [code] //download.php if(!$_SESSION['user']) {    echo "You must login first to download this item!";    exit(); } else {    //code to start the download; probably using header() } [/code] Now that's pretty rough, and I simplified a lot of things, but that basically is how to get people to login before downloading material. Like I said though, as you become more effecient with PHP and membership systems, you can start implementing your own ideas and writing more advanced code. Good luck! :) [/quote] Thanks a lot, i will start reading the tutorials =) if i have further questions, can i ask you again here?
  5. hi guys. first off, i have put my interest since long long ago but finally last 4 days i finally able to get my apache working, and have php,mysql installed... i want to make a site that looks similar to this [a href=\"http://ee.domaindlx.com/SpSClan/kenn5-world/index.asp\" target=\"_blank\"]http://ee.domaindlx.com/SpSClan/kenn5-world/index.asp[/a], i want to get the member thing to work so people can sign up and be a member to download or w/e or to get a full access at the site. is there a tips for me? for now im just trying scripts after scripts. thanks
×
×
  • 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.