Development Articles
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOtherDevelopment Articles

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:
  #16  
Old May 21st, 2001, 02:11 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
major kudos

I have learned slightly more than just php/mysql while "Cracking the Vault"
You also conveyed that I should take much
better notes when I code, within my code. I have this nasty habit of just writing a program, just enough notes to help me debug it to a production mode. Then later I dang near have to re-write the thing to make changes.
David.

Reply With Quote
  #17  
Old May 21st, 2001, 04:37 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Here!

Click the "Design Time" link in Part 1 and it should be near the top.

Reply With Quote
  #18  
Old May 21st, 2001, 11:28 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Why Not Blob

Drop me a line at melonfire@mail.com once you're done - I'd like to check it out too.

-author

Reply With Quote
  #19  
Old May 21st, 2001, 11:29 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: major kudos

Glad you liked it. I learnt to add comments and notes the hard way - it's hard to do a case study such as this one without comments :)

Reply With Quote
  #20  
Old May 21st, 2001, 11:32 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Encryption

Someone in this forum suggested using a BLOB to hold the data rather than a file.

I guess you could use built-in mySQL functions to perform some basic encryption in this case...I think!

Alternatively, you could probably write some kind of wrapper for something like PGP - so that the file is piped through that program before being saved.

Just some ideas :)

Reply With Quote
  #21  
Old May 21st, 2001, 12:28 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: major kudos

Yes.. once upon a time, I used to draft my project out on pencil and pad. Over the last few years I've been heading straight to an editor and begin scripting. I'm building a customer database that tracks information for our ISP, and PHP/MySQL look the way to go. This database should be responsible for tracking invoices and payments.
This is quite an undertaking and need to be done right the 1st time. If you have any further reading, I'm spending a few weeks brushing up before I start.

Reply With Quote
  #22  
Old May 21st, 2001, 01:55 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Minor fixes

Hi there,

I want to start by telling you that I love your code. It was very good and I plan to built something far more complex on top of it. This note is just to point out a couple of little errors.
1. I had to fix 5 files where I was getting a warning msg about a variable not being declared
2. the login.php page was giving me an error even though I was authenticated, so I had to, instead of using headers to redirect to another page, print out the link to follow.
Other than this I have found your code most useful and I will be glad to send you the modified code that I have in my server.



Sincerely,


Pedro Naranjo

Reply With Quote
  #23  
Old May 22nd, 2001, 03:35 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Hands on :)

Well it will be strange for you but the company I am currently working for is a software development and production company aaaannd my manager just said how nice things would be if we had a documentation handling system a few days ago :). Thanx to devshed weekly letters. I am going into production now and I will translate the code to my native language and will add a few pages for password administration vs vs. I love open source :) and thanx to the author.

Reply With Quote
  #24  
Old May 23rd, 2001, 12:18 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: I made something like this

I would like to take a look at it! I am creating a local intranet and this is a great idea to store company doc's. If you don't mind I would like to browse through youre code. Just email it to me or point me to a URL!!

Thanks,
Ian

Reply With Quote
  #25  
Old May 23rd, 2001, 03:14 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Hands on :)

If you put up a new version, please send us a link so that we can reference it in the article as well - thanks!

Reply With Quote
  #26  
Old May 23rd, 2001, 03:15 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Minor fixes

Can you email me details at the address above, so that the fixes can be incorporated into the download archive as well? Thanks!

Reply With Quote
  #27  
Old May 23rd, 2001, 10:22 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: I made something like this

Don't have your email : )?

Reply With Quote
  #28  
Old May 23rd, 2001, 02:29 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: I made something like this

Oops, I assumed you could get it from my post. Well here it is

igalloway@mediaone.net

Thanks in advance
Ian
P.S. Do you mind if I ask you a few questions through email after I have looked through the script?

Reply With Quote
  #29  
Old May 23rd, 2001, 02:49 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Add User Page

<p><pre><font color=#008000><xmp>
<?

// adduser.php - add a new user to system

// check for valid session
session_start();
if (!session_is_registered(

Reply With Quote
  #30  
Old May 24th, 2001, 12:48 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
mime type

some problem with .doc .cdr file to upload

How can set config.php to put this document?

ciao

fabio

Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherDevelopment Articles > Cracking The Vault (part 2)


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



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

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





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway
Stay green...Green IT