10 More Discussions You Might Find Interesting
1. Web Development
I used the following code, which I found on the internet to upload files.
<!-- The data encoding type, enctype, MUST be specified as below -->
<form enctype="multipart/form-data" action="upload2.php" method="POST">
<!-- MAX_FILE_SIZE must precede the file input field -->
<input... (2 Replies)
Discussion started by: jgt
2 Replies
2. UNIX for Dummies Questions & Answers
Hello,
I have infected .php files on my server with some code (example at the bottom,code marked red must be deleted, all .php files were infected with this same code). I was wondering how can i delete the first <?php ?> with that all code inside ?:confused:
I already tried with : find . -name... (20 Replies)
Discussion started by: Corlex31
20 Replies
3. Shell Programming and Scripting
I need a script that extracts function names from php files together with their location (path and file in which they are defined).
The php files are located in several directories under a base directory.
Ideally the output should be something like:
"Path/FileName/FunctionName" for a... (2 Replies)
Discussion started by: bamse
2 Replies
4. Shell Programming and Scripting
how can i limit the output to only php, html, htm files?
i found this as one way
find . -regex ".*\(php\|html\|htm\)$" -type f -print0 | xargs -0 grep 'keyword'and it works but is a bit slow
is there any faster way?
i tried something like this but it doesnt work:
find ./ -iname "*.php"... (2 Replies)
Discussion started by: vanessafan99
2 Replies
5. Shell Programming and Scripting
Ok so I wrote a php script that outputs the below to users on a webpage.
# Download: /home/content/d/i/v/divine1234/eBookDownloads/ScalpRemedy_jablaa12734.zip
the php code that outputs the above is:
echo ("<li>Download: $download_link</li>\n");
The thing is, I dont want... (1 Reply)
Discussion started by: SkySmart
1 Replies
6. UNIX for Dummies Questions & Answers
I am trying to search my linux box for any PHP files located within ANY directory matching a certain name. So far nothing I've tried (nor any idea I've searched for) has worked as expected. I have tried a combination of find and grep...fail.
Please help? (4 Replies)
Discussion started by: macwise7
4 Replies
7. Web Development
Hello,
I have setup Cherokee web server and php 5.2 in Opensolaris zone. Problem is that all .php files are downloaded from web server and not served when I use IP address instead of DNS name in web brovser.
Example: test.mydomain.com <-- php works
192.168.0.10/index.php <--... (3 Replies)
Discussion started by: kreno
3 Replies
8. Shell Programming and Scripting
Hi. I've been racking my brain on a project I've been working on for work, and hope someone here might be of assistance. Basically I'm trying to create dynamically generated .forward files for users/aliases on my email server. The intent is for these files to be generated automatically any time... (3 Replies)
Discussion started by: adotte
3 Replies
9. Shell Programming and Scripting
Hi all,
I googled for this kind of function but didn't find anything. I have an FTP connection with a server, went to the dir. In this dir there are several TXT files. I would like to have function that downloads all this files, based on their .txt extension.
In bash, for example, simply:... (10 Replies)
Discussion started by: laurens
10 Replies
10. Shell Programming and Scripting
Hi,
I want to create an image dynamically.
I used this function.
$img_handle = ImageCreate ($length, 10) or die ("Cannot Create image");
It was not creating the image. When i checked in error_log file the error was:
PHP Fatal error: Call to undefined function ImageCreate().
... (0 Replies)
Discussion started by: vanitham
0 Replies