Web Design Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsWeb DesignWeb Design Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old December 31st, 2004, 11:26 AM
Bluedevil200505 Bluedevil200505 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Cincy
Posts: 42 Bluedevil200505 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 17 sec
Reputation Power: 0
Send a message via AIM to Bluedevil200505 Send a message via MSN to Bluedevil200505 Send a message via Yahoo to Bluedevil200505
I need some help for my site..

Ok Does anyone know where i can get this program and run it on my server... I want my website to have a username and password Database so people can login and have access to different things than a normal user.. I want it to look like this sites setup kinda.. VampYre Clan Site I just need Help. anyone have any idea for what i'm trying to do.. This is my site Nbk Rentals This is where I want to add the Login and crap to.. Server is hosted through ipowerweb.

Reply With Quote
  #2  
Old December 31st, 2004, 03:08 PM
perl4fun perl4fun is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2004
Posts: 69 perl4fun User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 31 m 42 sec
Reputation Power: 4
Do you know how to write code in any server side languages? The page you want it to look like is written in PHP perhaps that is the way you should go. There are plently of free scripts you can download and then recode to make it work for you best, but I'd suggest having some knowledge of the coding language if you do so.

perl4fun

Reply With Quote
  #3  
Old December 31st, 2004, 07:18 PM
Bluedevil200505 Bluedevil200505 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Cincy
Posts: 42 Bluedevil200505 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 17 sec
Reputation Power: 0
Send a message via AIM to Bluedevil200505 Send a message via MSN to Bluedevil200505 Send a message via Yahoo to Bluedevil200505
Yea I know how to write html put php.. I haven't played around with much.. Do you know where I can get those scripts or what to search for..

Reply With Quote
  #4  
Old January 1st, 2005, 10:44 PM
glamdolly glamdolly is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 22 glamdolly New User: is a brand new recruit and a unknown entity at this point. 
Time spent in forums: < 1 sec
Reputation Power: 0
you can use a CMS & design a template/theme for it using PHP, HTML & some graphics... CMS like: e107, php nuke, postnuke, mambo.... that way you can add/remove features & have polls & whatnot all right there.

Best Wishes,
~ Candy

Reply With Quote
  #5  
Old January 2nd, 2005, 11:24 PM
Bluedevil200505 Bluedevil200505 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Cincy
Posts: 42 Bluedevil200505 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 17 sec
Reputation Power: 0
Send a message via AIM to Bluedevil200505 Send a message via MSN to Bluedevil200505 Send a message via Yahoo to Bluedevil200505
See I have a php site but can't create pages and edit them for some reason. each time I change the index page it changes everything else

Reply With Quote
  #6  
Old January 3rd, 2005, 01:29 PM
rmhpirate rmhpirate is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Location: Greenville, NC
Posts: 258 rmhpirate User rank is Corporal (100 - 500 Reputation Level)rmhpirate User rank is Corporal (100 - 500 Reputation Level)rmhpirate User rank is Corporal (100 - 500 Reputation Level)rmhpirate User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 7 h 8 m 49 sec
Reputation Power: 7
What you can do is use PHP for the server side stuff to allow users to login to your site. You'll have to use cookies or session variables (I perfer cookies, just eaier to use). On the page you want user to log into, place your PHP code at the very top. Then down in the page, place a form. One thing you need to know, is that once you have created the form, you will need to convert it to PHP. To do this simple add

$php_self = $_SERVER['PHP_SELF']

print " <everything for the form>

In betwen the print " change all the " to '. This will create a PHP form to allow users to log into your site.

Now the code at the top should handle the form submission. I use functions outside the root folder to log the user in, and allow the PHP code at the top to handle the redirection to whatever page you want them to see when they log in.

Hope this helps.

Reply With Quote
  #7  
Old January 16th, 2005, 10:49 PM
Bluedevil200505 Bluedevil200505 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Cincy
Posts: 42 Bluedevil200505 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 17 sec
Reputation Power: 0
Send a message via AIM to Bluedevil200505 Send a message via MSN to Bluedevil200505 Send a message via Yahoo to Bluedevil200505
yea thats not making sense

Reply With Quote
  #8  
Old January 18th, 2005, 05:58 PM
perl4fun perl4fun is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2004
Posts: 69 perl4fun User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 31 m 42 sec
Reputation Power: 4
Why can't you edit it?

You said it changes everything, how so?

I use php-nuke on one of my sites and have found it to be very easy to work with. While I code in perl and do not know PHP well, I have found them similar enough where I can play with PHP to get done what I need to when modifying the script.

The best way to learn is to do little bits of code and see how that works. If you are using php-nuke, try writing a block to get an idea how it works. If it is changing everything, then I think you are doing a bit to much at once and not really understanding what you are doing.

perl4fun

Reply With Quote
  #9  
Old January 24th, 2005, 07:13 PM
Bluedevil200505 Bluedevil200505 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Cincy
Posts: 42 Bluedevil200505 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 17 sec
Reputation Power: 0
Send a message via AIM to Bluedevil200505 Send a message via MSN to Bluedevil200505 Send a message via Yahoo to Bluedevil200505
Yea I guess I'm doing that.. But then again I guess I have no clue what i'm doing

Reply With Quote
  #10  
Old January 25th, 2005, 12:55 AM
MueR's Avatar
MueR MueR is offline
Weirdo ™
Dev Shed Novice (500 - 999 posts)
 
Join Date: Jul 2004
Location: /dev/null
Posts: 662 MueR User rank is Sergeant (500 - 2000 Reputation Level)MueR User rank is Sergeant (500 - 2000 Reputation Level)MueR User rank is Sergeant (500 - 2000 Reputation Level)MueR User rank is Sergeant (500 - 2000 Reputation Level)MueR User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 2 Days 21 h 2 m 19 sec
Reputation Power: 12
Try downloading and installing PHPClanWebsite.
__________________
Boss: "We found a bug in your code!"
Programmer: "That's no bug, that's just an undocumented feature!"

is a nice way to show appreciation if my suggestion was helpful.

Scriptrequests are not appreciated anywhere. Show input. Do some research. Explain the problem. Post relevant code only.

Reply With Quote
  #11  
Old January 25th, 2005, 05:34 AM
Bluedevil200505 Bluedevil200505 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Cincy
Posts: 42 Bluedevil200505 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 17 sec
Reputation Power: 0
Send a message via AIM to Bluedevil200505 Send a message via MSN to Bluedevil200505 Send a message via Yahoo to Bluedevil200505
Where

Where from

Reply With Quote
  #12  
Old January 25th, 2005, 06:24 AM
MueR's Avatar
MueR MueR is offline
Weirdo ™
Dev Shed Novice (500 - 999 posts)
 
Join Date: Jul 2004
Location: /dev/null
Posts: 662 MueR User rank is Sergeant (500 - 2000 Reputation Level)MueR User rank is Sergeant (500 - 2000 Reputation Level)MueR User rank is Sergeant (500 - 2000 Reputation Level)MueR User rank is Sergeant (500 - 2000 Reputation Level)MueR User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 2 Days 21 h 2 m 19 sec
Reputation Power: 12
google

Reply With Quote
  #13  
Old January 26th, 2005, 08:35 PM
Bluedevil200505 Bluedevil200505 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Cincy
Posts: 42 Bluedevil200505 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 12 m 17 sec
Reputation Power: 0
Send a message via AIM to Bluedevil200505 Send a message via MSN to Bluedevil200505 Send a message via Yahoo to Bluedevil200505
Ok thanks I will give that a try

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignWeb Design Help > I need some help for my site..


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support |