Hi all, I am sure all of you are great programers but First i am no code programmer i am just trying to learn to run my sites, will the problem is i got a code from the web to protect my files ,1st i want to know how to work it out then i will try other things but can't let it go without a fight thanx all
php:
CODE
<?php
if ( ! defined( 'myname' ) ) { print "You cannot access this file directly."; exit(); }
customer data here ?>
now i can't access my files what is the method to access them
all i want is to protect the file not to be opened directly but how to implement it in a frame or something like
display the contents in a frame or echo the source code as the file is a customer data please i am stuck and can't launch this small site
Is this the only bit of code you got from the web? the reasn i ask is this, in a login system there are essentially three steps: 1] I enter my username/password 2] The website checks them to see if theyre correct 3] If they are correct i get to see the page, if not i go back to step one.
the bit of code youve got there is basically only step 3, so the problem is the user doesnt get a chance to enter their username and you dont have any code to see if its right so step 3 cant actually work on its own!
If you have other source code you got from the net then steps 1 and 2 might be in there which is good, otherwise i would suggest finding a better script, i did write one of my own but without any php experience you would find it quite difficult to modify it to fit around your site
is there a php function that lists the content of some folder.... example: /New folder new.txt
left.gif download.zip dc.exe ....so is there..? /rolleyes.gif' border='0'
style='vertical-align:middle' alt='rolleyes.gif' /> ...
Hey I want to create a very simple file browser, so that, it reads all the sub-folders which are
places in a directory, and the files inside the sub-folders (It reads only files inside sub-folders
and list them in simply. ) Also, it creates a directory (any name) inside each sub folder. My
Following code reads on the files inside the main directory, it does not read the files inside the
sub-folders.. I appreciate any help. CODE <? $path = "./"; $dir_handle =
@opendir($path) or die("Unable to open $path"); whil...
Hello, I'm looking for a download script for sound files (e.g. mp3, avi, wma, and other ones).
i have found a few download scripts but they would not work for sound files for some reason. also
this will not be used for allowing downloading of illegal or riped music, what i will be using this
script for is i'm making a site for my church and the pastor wants to be able to recored the
services and then have me upload them to the site so that the church members can download them for
what ever reason. If some one could tell me how to make one or could show me a plac...
As everyone know, there two ways (that I can think of) to change files' and directories'
permissions. One is to change it in your cPanel's Disk Manager and the other is with an FTP
client that supports chmod. Well, I'm doing something for my site that requires files to have
full permissions (Execute, Write, and Read on all three groups). At first, I thought that if I made
the directory 777, then every file created in that directory will be 777 as well. I'm wrong. An
alternative to doing this is to change each file permission myself, but that would be...
Hi, first, sorry about my english. i am a beginner with php and i have some question about writing
files using php in a shared hosting. is a risk?, use database to store data is a better way? i just
want make an interface (in php) that write the data in a .html extension file to show to everybody
the html page and just the php interface is to the content manager. thanks in advance ...
I made a simple flat file text editor, that can show you probably how simple it is to use forms with
php and write that data to file. This example has 2 files, submit.php, and postit.html. Submit.php
is used to write title, and some text, and add html tags, and paragraph tags where new paragraphs
are. Here's the file with comments. I think that HTML really doesn't need some more
explaining. CODE Title: <br /> <input type="text"
name="title" size="53"> <br /> Text: <br />
<textarea nam...
Hello everyone! I am in need of some code a for a signature generator I am making. I am using
BuffaloHELP's code for the php file, now I am trying to improve that code by making a form in a
html file that will have the user say what is on the sig! But now, I need help getting the form
data that is posted by the user to get into that sig! There is a file, sig.txt, where that tells
the php file what text will go on the sig. But how can I make the form data in the html file go into
the text file so it will go onto the sig? You might want to read BuffaloHELP&...
Some user posted a similar problem i had when i tried to figure out how to update content on my
website in less work as possible. This is just part of the "big" plan i have for my site but it can
be helpfull to you guys if you like FlatFile. I hope that mod's don't mind me posting the
same code here and on their forums, couse if they do i'll delete it from their forums
/biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> So
here's the situation. Let's say you have a folder called 'myfilesdirectory' on your
s...
Ok lets say i have a config.php file, i want to edit something without open it, i know every line
number and that, now how would i do this? I will show you a example: CODE <?php
$CONFIG['user'] = 'root';
$CONFIG['server'] = 'localhost';
$CONFIG['pass'] = '******';
$CONFIG['db'] = '******';
$CONFIG['install'] = '1';
$CONFIG['lang'] ...
I want to learn php and I am already on the first steps to doing it. I have set up my server using
easyPHP as well as XAMPP which is a package containing FileZilla, Apache and MySQL. Other than
easyPHP, XAMPP and MySQL, what other softwares are required to be set up for me to successfully
learn how to program with PHP?...
The following code displays the files of folder...but they are displaced by the order of adding... i
want to sord the files / folders alphabetically and sord by accending order and by decending
order.. can some one help me. $path = ""; $dir_handle = @opendir($path) or
die("Unable to open $path"); echo "Directory Listing of $path "; while($file =
readdir($dir_handle)) { if(is_dir($file)) { continue; } else
if($file != '.' && $file != '..') { echo " $fi...
I want to display the contents of a directory.. i have the following code.. It gives the output in
one column only... like file1 file2 file3 file4 . . . . . Since there are lot of files so this
column gets very long..i want to display the x number of files in each column.. like if there are 22
files.. then file 1 file 11 file 21 file 2 . file 22 file 3 .. . . . file 10
file 20 This was just an example..I know it can be done by using but i dont know how to do it
with loop. Please help me. QUOTE $dir = './'; $handle =...
Right now, if i go to the cpanel of my site, I can access webmail of any of the email addresses I
have. Unfortunatly, I would prefer it if the administrators did not know the password to the
cpanel. I want them to be able to access mail from 1 of the email accounts. I have tried letting
all the admins access the account through their own cliants, but it became a mess, not knowing wich
admins have responded to which emails, because most emails are hosted localy when received by
cliants such as outlook. Then I had the idea of making one page, with webmail on it. Where...
Well, i had the idea of logging the downloads from my web in a html file few weeks ago, and i solved
it with a lil php page included in my homepage. You could name the links with a name like
"download.php?file=filename.ext" and then, in the download.php put the next code: (well you put
the html and head and body tags if u want, i only write the php here) CODE <? if
(isset($_GET['file']))
$file=$_GET['file']; //so it gets the GET data from url
(file=filename.ext); $ip=$_SERVER[...
So lets say i have folders called friends and work in a folder called pics. how would i make a
function that lists the files in those folderscalled images kinda like this: CODE
$directory = "./" function listfiles($directory) { //here should go the
script to list the files in those directories. so that i can continue to work with them. like for
example if there were images it would list all the images and i could write a script to make a
thumb of them and then save it into a thumb folder(not asking for all of that). but how w...
I have many files in a directory..I want to create a page , like A B C D E F ..... when some one
click on A , it should display all the files starting from letter A , and when clicks on B , it
should show all the files in that directory starting from B , and so on... I have no idea how to
display the files of the directory iin that way. Kindly assist me.....
For example,i have a directory , which has 3 sub directories a,b and c...and i have some files in
all subdirectories.. is it possible that i can display the latest added files to any of sub
directory a,b, or c.?i think i will have to use sort by date function but how it should be done that
it compares the files of all the subdirectories directories ?...
I have a folder on my hosting space..(i.e. public_html), i want to add this folder on my php page..,
. how it should be done that, when i add some file in the folder using ftp or anything , the folder
on that page automatically includes that file.for example , if the folder has 5 files..and on page
it says "folder has 5 files" and shows the files...and when i have uploaded 2 more files ,it should
automatically say that folder has 7 files.. ...
I want to know , if we use some pre-made php script , there are often many files with other
extension..i have been watching many times some files names ".lib" . what kind of files these are
... there's written C/C++ inline file.. why these kinds of files are needed in php scripts.. and
are there some replacements for it ? (So that we can do things without it ?)... for example im
pasting the coding of a file.. ban.lib ..i want to ask, why it is .lib file..why it cant be .php....
CODE <? function file2str($p){if($p=="") retur...
We all know that when we make websites, sometimes, we just don't want a code to be there... for
now. What I'm saying is, for example: Your name is Bob. Yes it's Bob. Bob made a website
and added lots of content. He gets a lot of traffic. He signs up for Google Adsense! Yay! He
is happy. He makes thousands of dollars a month. He is famous. And that is the exact reason why
your enemy, Angela, is trying to make your google adsense account bad. Guess what? Angela is your
sister. Yes she is your sister. What does that mean? She uses the same IP address...
Okay, here is the story. I set up wordpress on my site. I know nothing about PHP and need help. I
need to know where the url and title info is stored. I checked in the header PHP file, and all I
saw was: CODE <title><?php bloginfo('name'); wp_title();
?></title> And <div id="header"> <h1><a
href="<?php bloginfo('url'); ?>"><?php
bloginfo('name'); ?></a></h1> </div> <!--
/header --> Whe...
Is there a function or a group of functions which I can use to delete all the files an folders in a
directory? I've tried rmdir() but it complains that it can't remove it because there are
files/folders in it. ...
The code below is suppose to restrict access to pages without proper username and password.
I've copied it word for word from a book I bought and I've tested it offline. I've
already entered appropriate values in the database and nothing is wrong when I query. The problem
is when I enter a wrong combination of username and password nothing happens when it should go back
to index.html. Also when I correctly entered the username and password secretpage.php doesn't
display anything. I'm guessing it has do with the setcookie function in login.php or ...
Hi, Does anyone know how i can do this, or scripts that will work on Trap17's servers and will
do the following: I have a .doc file form. Which i want to have filled in automactically, by HTML
Form and emailed to my address, with the data filled in. Any ideas? I have heard many differing
things, like XML, RTF, DOC, PDF... I have serched through many places and come up empty handed with
anything that works. /sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /> ...
Here is the code i am going to use, written originaly for only 2 files, image and location, I added
'thumbnail', can someone check through it please? CODE $submit =
$_POST['submit']; $name = $_POST['name'];
$description = $_POST['description']; $age =
$_POST['age']; $subcat = $_POST['subcat']; $with
= $_POST['with']; $added = $_POST['added'];
$type = $_POST['type...
Php Classes
- Access the same class instance over multiple pages (1)
Hey everyone. I am having some trouble accessing the same php class instance in more that one page.
This is for my login script and what i need to do is be able to call the classes logout function
from a separate page. What i have tried to do is create a new .php page and include the class file
and then make a new class and call logout. This does not work because it does not log out the
current user which is my problem. Can anyone help me fix this or know of another way to do it?
Below is my class file CODE <?php // member class // handlers member logo...
I've been planning to put up a blog on my site but I'm having trouble with how I should do
it. I don't really know how blogs are made. Is it a database or a flat file? I know how to
write to a file using PHP but I still don't know how to put the last entry on the top of the
file. That's a big issue in the shoutbox I made for my site. If you look at it, the shouts
keep appending at the end of the file and I want it to be on top. Can anyone help me please? It
would be nice if you'd give me detailed instructions on how to put it up, with files...
Can anyone help me with this error? Warning: fopen(guests\guest.txt): failed to open stream:
Permission denied in /home/leiaah/public_html/images/goguest.php on line 28 Warning: flock():
supplied argument is not a valid stream resource in /home/leiaah/public_html/images/goguest.php on
line 30 This is part of the code I wrote // open file for appending $fp =
fopen("guests\guest.txt", 'a'); flock($fp, LOCK_EX); This works well with my
offline server but I'm having the error after I published it and when I view it online. Help&...
Here, I'll show you how to upload files to the server by your browser. upload.php: CODE
<? $sizelimit = "280000"; // file size limit $patch =
"/home/yoursite/public_html/files"; // patch to where the uploaded files will be saved -
change it if($file != ""){ // if $file is set $file_ext =
explode(".",$file_name); // check for the extension if($file_size
> $sizelimit) // check if file size is bigger than the limit die("This file is
too big."&...
Looking for grabt, access, protected, files, grabt, access, protected, files
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE
forum, Create your own topics, Ask Questions, track topics, setup
subscriptions & notifications and Get a Free Website w/ Email and FTP.