Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Exec And Shell_exec Not Executing Batch File Properly


I am running Apache and PHP on windows XP. Latest versions of them all. I am trying to execute a simple .bat batch file that simply copies 4 files from one location to the batch files location.

The php exec command runs like this:
V:Corehtdocswp ransfer.bat Y:folder

here the batch file is executed and the command following is thrown into the batch file to specify where the files that need to be copied are.

The Y: directory is in windows considered to be a network drive, although it is really just a folder on the same machine, i did this because there are spaces in the folder names on its way to where I need the information copied from i.e. "Program Files"

When I run this in the command prompt by entering this in manually it runs perfectly. However when running exec in the PHP script nothing happens; when I run shell_exec it gives me the output and it shows that every line in the batch file is executed however it does not actually copy anything.

Looking into my apache error log I see that this is related:

"The system cannot find the drive specified."

Now what I am wondering is, how is it that I can run this script manually but apache tells me I cannot. My permissions are set to allow all and deny nothing since it is a machine well tucked into a safe place.

Apache resides on the machine in C:

eactorcore and it also setup a virtual drive as v:core. Trying both does not work.




View Complete Forum Thread with Replies

Related Forum Messages:
Exec Or Shell_exec
I am trying to us shell_exec and keep getting an error. I do have safe_mode = off also.
Code:

if ($publish == "yes")
{
$command = "e:scriptspublish.bat";
$result=shell_exec($command); }

The publish.bat file does work and I have proper permissions set in windows, I set everyone full access. Oh, Windows server, IIS6.0, PHP. Error is as follows:

Warning: shell_exec() [function.shell-exec]: Unable to execute 'e:scriptspublish.bat' in

View Replies !
Exec()-shell_exec
my server: apache2/php5 and win2k3. I'm able to use shell_exec or exec for dos command that doesn't require auth. I would like to exec certain dos command under "domainuser" "password" .So I'll be able to access remote computer etc...

example:
echo shell_exec(find /i "SomeDataImLookingFor" "RemoteWorkstationc$ ext.txt)

if i use this command in a dosshell under my user session it will return data.Of course if i execute this with PHP on the server with the phpserver account it won't function.

I have been looking for a while on google and forums but i can't find it ,i just need someone to point me to the right page/post/.

View Replies !
Exec And Shell_exec
I'm new to running exec commands on php. I've had ffmpeg installed on my server, at /usr/local/bin/ffmpeg (a cmd line video decoder). It's a linux server, running php5.
From looking around the internet, I came up with this code to run it: Code:

View Replies !
Executing Nested Loops Properly
I am uploading a text file, parsing it via file(), exploding each line via explode() and then running an insert to database.

The problem is this: When I explode the rows in the file I need to make sure there are 8 elements in each array/row. If there aren't I need to exit the loop before inserting any records. I am not sure how to properly nest my loops, the code is below. (currently the code below exits the loop if 8 elements aren't found, but inserts records until that happens...) PHP Code:

View Replies !
Problem: Exec() And Shell_exec()
I've got the following problem: exec() and shell_exec(), etc. don't give anything back, just the error code 127 For example, the following script:

<?php
exec("cat ./test", $lines, $result);

// or exec("./cat ./test", $lines, $result);
echo "result = $result<br>";
echo "Lines<br>
";
foreach ($lines as $k => $v) {
echo "k=$k v=$v<br>
";
}
?>

View Replies !
Exec(), System(), Shell_exec(), Etc + Nmap
i'm trying to create a script that executes nmap from my server, then displays the output.

i've tried:

$output = passthru('nmap -v -A'.' $ip');
$output = shell_exec('nmap -v -A'.' $ip');
system('nmap -v -A'.' $ip');

the problem i'm having is that using the above methods i only get the first line of output, ie.

Starting Nmap 4.20 ( http://insecure.org ) at 2007-08-31 21:46 CST

and nothing else. i've managed to find a way around it by sending the nmap output to a textfile, the using file_get_contents() to pull the data back in:

exec('nmap -v -A '.$ip.' > /usr/local/www/apache22/data/nmap/'.$ip.'.html');    
$file = "/usr/local/www/apache22/data/nmap/$ip.html";
$result = file_get_contents($file);
echo "(pre)$result(/pre)";

that works perfectly, but i'd rather not be writing anything to the drive. i guess the problem might be that nmap takes about 5-10 seconds to do its scan, and for some reason php doesn't want to wait that long, i really have no idea. can it be made to work without needing to write to files?

and for the curious minds, i'm not doing anything dodgy, i just wanted an online tool i could access from any computer to test networks i support .

View Replies !
Exec, Shell_exec, System, And Passthru Not Working At All
Can't get these commands to work! The following page simply doesn't
finish loading ( Waiting... Opening... :-( )

<?php echo system("dir"); ?>

The same for <?php echo exec("dir"); ?> or <?php echo
shell_exec("dir"); ?>, etc...

I'm running Apache 2.0.55 & PHP 5.0.5 with Zend Optimizer v2.5.10 on
windows XP SP2.

View Replies !
Exec Or Shell_exec For Dumping MySql Info?
I'm trying to figure out how to export info from a Mysql database, using PHP to manage the export, as phpMyAdmin manages to do. I'm guessing I need to run a shell script that looks like this: mysqldump -u username -ppassword database_name FILE.sql

and I need to call this shell script using one of the functions on this page: Code:

View Replies !
Exec - Executing External Programs
I have problem with executing external programs...
The code:
system("/home/pkunzip /arch.zip /3");
Does not work properly (nothing doeing)...

The code:
system("dir /w");
Working very-very good

View Replies !
Problems With Executing Binaries With Exec()
I have problems with executing external programms in php with exec() and system(). When i am trying to execute some shell commands eg system('ls'), exec('whoami') there is no problem , with my binaries (the simplest hello world program in c++) - no problem.

But programms, which i've installed(./configure make make install) before, don't work.' For example i've installed cvs. Code:

View Replies !
Exec Command Executing The Program In The Background
i am running xampp on my computer from apachefriends.org, it's a apache server

this is the php script

<html>
<head>
<?php

exec ('notepad');
?>
</head>
</html>

but when i execute the php script on my computer , notepad doesnt not run

i used a process viewer and discovered that notepad is running in the background and i cannot see it

does anyone know how NOT to make it run in the background? i wan to see the notepad window on the apache server (my computer)

View Replies !
Executing Multiple Shell Commands Via One Exec()-call
I wrote a PHP shell script under Linux which puts all existing
[E]PS-Files within a directory into a list and should then start a
single Ghostview window for each file. Sounds simple, but it's not:

The following code provides for about half of the functionality I
wanted:

==============code starts
$bla = array();
foreach ($filelist as $file)
{
$bla[] = fopen("./trash/".$file.".tmp", "w");
exec ("gv ".$file." &", $bla);
}
===============code ends

Here, all files are opened one after another. The next file opens only
after closing the current one. Actually I don't know whether the
redirection of the output towards .tmp-files complies with the
intended purpose of the redirection. The PHP manual states that when
starting programs in background, the output would have to be
redirected to a stream or file, otherwise PHP would continue to run
until the respective program is terminated (which I really wouldn't
care about at all, if it did so...).

Then I thought about writing the line I would type manually for
opening all ps-files ('gv bla1.ps & ; gv bla2.ps&; ...') into a string
and then executing that string:

===============code starts
$command="";
$bla = fopen("./trash/tmp", "w");
foreach ($filelist as $i => $file)
{
if ($i < count($filelist) - 1)
{
$command = $command."gv $file & ; ";
}
else
{
$command = $command."gv $file &";
}
}
exec ($command, $bla);
===============code ends

sadly I get an error message from the shell:
================ error message starts
sh: -c: line 1: syntax error near unexpected token `;'
sh: -c: line 1: `gv uges_Boden.ps & ; gv ux_Boden.ps & ; gv
uy_Boden.ps &'
================ error message ends

View Replies !
System(), Exec(), Shell_exec(), But "Permission Denied"
I want to execute the php script via web server to run linux command. I try to use system(), exec(), shell_exec(), but the system show me "Permission Denied". i have set the file permission by using chmod 777 file.php .

View Replies !
Dos Batch File Execution
Has anyone done this? A windows webserver has a share on the same
computer that contains some dos batch files. I'm trying to write a
php page that will execute them. After much thrashing around and
searching I'm still not getting any results.

I've tried ...

View Replies !
How Do I Pass Parameters To Batch File From Javascript?
I dont know how to pass values to batch file from javascript,it would be great if someone help me on this Code:

View Replies !
Uploading A File - Can't Upload Properly
I have a page with submit form for resumes, it also gives the applicants the opportunity to submit their resumes with their application which will save to a specially created directory. However, i am trying to upload the file and it is giving me an error message saying it can't upload properly. This is the code i am using:

if ($userfile){
echo "nn<!-- $userfile -->n";
if (copy($userfile,"/services/webpages/j/e/jessie.bluegenesis.com/private/$userfile_name"))

{ echo ("<B>Resume received: Thank you!</B>"); }
else {
echo ("<B>Error saving resume.</B>" .
"However, your application will still
be processed.");}}

View Replies !
Check File Extension Properly
here's my code. Can't get it to check file extension properly or file
size...had it working before but not sure why it's buggy now.

} elseif ($photo) {
$ext = strtolower(substr($photo, -3));
if ($ext == "peg") { $ext = "jpg"; }
if ($ext != "gif" || $ext != "jpg" || $ext != "jpeg" || $ext !="bmp" )
{
$focus = "photo";
$msg = "Please provide a valid gif, jpeg, or bmp photo";
} else {
$photo_size = getimagesize($photo);
if ($photo_size > 25000) {
$msg = "Photo must be smaller than 25k.";
}}} elseif { etc, etc. } else { dbqueries...

View Replies !
How To Get File Name From Which Current Executing File Is Invoked???
how can i get the file name from which the current executing file is
called.
i m making a scrript which will be called from many other scripts.
this script performs some calculation and then returns the result to
the script who asked for. so i want to know the script name of caller
script in the current executing script

View Replies !
Executing An SSI Within A Php File.
I have the following line in an old shtml file:

<img src="http://www.domain.com/cgi-bin/logtrack/log.pl?ref=<!--#echo var="HTTP_REFERER"-->" width=1 height=1 border=0>

What this does is execute log.pl with the refererer to increment a logtracking program and find out what their referer is. How would I go about porting this to php?

View Replies !
Executing A .bat File With PHP
I have a .bat file that copies certain files across a network and I needed a way to run this file using PHP.  I was looking at exec() but I was not sure exactly how to use it.  I was also using pstools but could not get them to work with PHP.  Can someone give me an example of how to do this or send me somewhere where I can read up on this?

View Replies !
Executing .sql File
how may I execute .sql file using php?

View Replies !
Executing A Php File
I'm trying to execute a php script on my linux server whenever I view a different page. So far this is what put on that page: PHP Code:

<?php exec('php  /var/www/html/execute.php'); ?>

I am trying to be logical with how linux executes php and the path to the file I wish to execute. But this was a best guess. So far it isn't doing anything, but I'm also getting no errors in the logs.

View Replies !
Get Executing File
Is it possible for php to tell the path to the file (php path, not html) that is currently executing? What I mean is, if I include() a file and in that included() file I call $_SERVER["PATH_TRANSLATED"] I get the path to the file that the include() is called in, not the path of the included() file that calls $_SERVER["PATH_TRANSLATED"].

View Replies !
How Can I Do Cron Job For Executing My PHP File
How can i do cron job for executing my PHP script once in every day. i want to remind the people about their birthday in reminder.php. that would be one week before thier birthday and one day before their birthday. can i perform this action with cron job?

View Replies !
Executing A Dump.sql File With Php
Is there an easy way to execute a mysql dump located in the same directory as the php file on unix?

View Replies !
Batch File Deleting And Folder Deleting
I have a folder in my web site where I used php to create and copy in files. but now I can't delete them easily. The only way I know how that is possible is through php. I get an error the following ftp error:

550 th: Permission denied
I had the chmod() set to 0777 on every file and folder. But I still seem to loss control over the files when I try and do things with them through other means.

I think it is because the user I use to access the files via ftp a diffrent user. So I tryed to add a function with chown() for the new files I was posting and uploading. It didn't work on those new files. so it looks like the only thing I can do is use the unlink() function which deletes the files fine.

The only problem is now I have something like 100 sub directories all with files in them. I need to figure out a way to batch delete them. I can't find a script that goes through and finds all file contents including all sub directories and unlink those things.

I found some that will use a for loop to list out the contents of a folder but it is just files. No sub directories. Any body got any ideas on which functions I should use or know where a script is that I can base mine off of.

I am not sure how to approach this since what I tryed with chown and chmod has failed thus far. I currently have no code and am starting from scratch on this batch flushing of my directory.

View Replies !
Executing A File When A Button Is Clicked
I was wondering if someone could help me. I want to execute a .reg file when the user clicks a certain button. does anybody know how to do this. i already have the file created but i don't know the code to execute it if button clicked.

View Replies !
Including External Php File And Executing A Command
I have two different servers, and i need to call a php of server B from server A, so i did this:

SERVER A:

index.php has:
include('http://server-b/file.php');

The content of file.php is:
phpinfo();

... but phpinfo() throws info about server B instead of its parent file SERVER A.

View Replies !
Exec() And Open A Bat File
I'm trying to make a script that would run on localhost and open a bat file at certain point. I've already read a lot about exec(), system(), shell_exec(). But none of them works. Usualy browser tries to open something for 5 minutes but then stops.

View Replies !
Warning: Ftp_exec() [function.ftp-exec]: SITE EXEC Is An Unknown Extension
This is kind of a part II to a question a posted earlier about exec and shell_exec not working.

I'm trying to use ftp_exec to execute some simple command:

$conn_id = ftp_connect("$server") or die ("Cannot initiate connection to host");
ftp_login($conn_id, "$username", "$userpass") or die("Cannot login");
$command = 'cd..'
if (ftp_exec($conn_id, $command)) {
   echo "$command executed successfully";
} else {
   echo "could not execute $command";
}
ftp_close($conn_id);


I'm getting the following error:

Warning: ftp_exec() [function.ftp-exec]: SITE EXEC is an unknown extension in /home/urieilam/public_html/work/video/test1.1.php on line 21
could not execute cd..

Have tried other commands as well, get the same. Could this be a security issue or something to do with p Safe Mode? I don't know much about commands, shell, etc..

View Replies !
Unable To Fork Exec()'d File In IIS 5.1
I am repeatedly trying to execute a file on my server using exec() or passthru() and I keep getting an Unable to Fork error. Has anybody else had a problem with this in IIS?? The path to the perl script is correct and the script works fine in the C: prompt.

View Replies !
Php Exec To C Program That Writes File
I'm trying to use the exec() call in php to run a program that I've
written and compiled from C. This program attempts to create a new
file and write data into it.

If I simply run the program from the shell, it writes the file no
problem. If i run the program through an exec call in a php script,
however, the program executes but it seems to not have the correct
permissions to be able to write the file.


View Replies !
Create Db Firebird With Php, Exec Does Not Want To Execute A File .bat
I am trying to create db firebird with php, script php generates and executes a file .bat . the file .bat creates db using isql in c:firebirdin, but .bat does not create db when is called by php script, but the file .bat if it works when it is executed from MSDOS, creates db correctly,

the question is ¿why the file .bat creates the data base when it is executed by MSDOS but it does not work when is executed by exec in php script? as php script can execute .bat to create db? PHP Code:

View Replies !
Exec, Passthru Disabled So How To Call C++ .exe File?
I am at my wit's end trying to get information out of Streamline.net's
support dept about my problem. They reply quickly enough, but seem to try
and give out the least possible amount of info each time. The transcript so
far is reproduced for your amusement below.

To summarise:

I've put up a Sudoku-solving program called Sudoku.exe. I want to call it in
a php script to solve a puzzle and output the solution. It works fine with
Apache/php on my own machine, but it seems Streamline.net disable exec,
passthru etc. They eventually say, cryptically: ' CGI executables are
supported, however this is very different from executing a program from
within a PHP script'. So how would I call my Sudoko.exe file?

The 'dialog':

My last question seems to have been 'fixed' before being answered, so I'll
have another go.
I'm trying to call an .exe file on the server but get an 'unable to fork'
error message. I have Apache/php installed locally and it works fine. Do you
have to turn on 'cmd.exe' permissions or something? Try it yourself at:

Warning: passthru(): Unable to fork [Sudoku.exe (argument...)] in (.php
file...)
It's the same with exec() as well.

We do not support passthru or exec functions.

So how would I call my Sudoku.exe program from a php script?

I do not want 'scripting help', I just want to use some of the functions
that you offer as a host and which I have paid for.
As I have said what I am trying to do works perfectly on my machine, so it
must be a question of something you have to enable your end. What do you
mean you don't support passthru or exec? They are both standard php
commands.
.

You asked "how would I call my Sudoku.exe program from a php script?"
clearly this is asking us how you can use scripting?

Certain functions are disabled in PHP for security reasons.

Which functions are 'disabled in PHP for security reasons' ?

You can find this out with the inbuilt php function phpinfo()

Could you tell me where on the page that phpinfo() produces these functions
are listed? For example, passthru() does not appear to be on the page.
.

search for "disable_functions" on that page.

disable_functions lists 'no value'. So again, could you tell me where I can
find the list of standard php functions which you have disabled?
Please can you provide a link to your phpinfo file so we can investigate
this further.
We had previously checked this on a linux server, which showed the functions
that have been disabled. We've passed this on to an engineer to investigate
further.

For your information the following are disabled:

shell_exec,exec,system,passthru,popen

Your knowledge base says:
Q. Are CGI (Common Gateway Interface) executables supported?

A. Yes these are supported on either the Windows and Linux servers

But you are telling me that the only php functions which can call my
executable are disabled. Will you clarify once and for all if I can call my
exe file or not. I AM NOT ASKING FOR SCRIPTING HELP, I have books about
that. I just want to know if I can do ON YOUR SERVER what you say I can do,
and if not why not.

View Replies !
PHP Exec() And Zipping Upload File In Windows
I have the following code. What I need is to zip the file
(c:webuploadsomeFile) to d:websomeFile.zip.

$cmd = 'c:zipzip.exe '. $movedFile. ' '. $finalFile;
exec( $cmd, $cmd_output );

File is being uploaded by the apache server, but it's not being zipped.
My guess "", escaping, is causing problem in windows path. Do I also
have to escape the $movedFile content? Forexample $movedFile=
"c:webuploadsomeFile".

View Replies !
PHP Exec Calls A C Program That Creates A File
I'm using exec to call a compiled C program that creates/writes to a
file...However this doesn't seem to be working....
I tried setting all the permissions to 777 but still nothing...?

View Replies !
Executing Exe File In Php File
How could I execute a .exe file in a php file. Earlier I have used system function, but it is not responding at all. Similarly with exec function. I am using apache web server.

View Replies !
Running An .exe File Using Exec() Or System(), Unable To Fork Error
I have a problem with running an .exe file using exec() or system() I have downloaded a file called ffmpeg.exe for converting movie clips. I can use the program thourg the command line in windows (cmd), but I'm not able to have PHP run the file. First PHP gave be an "unable to fork" error. But then I gave users access to the cmd.exe file and solved that problem. So now is no problem running for example exec("dir");

View Replies !
Batch Job Scheduler
I use wamp.org (windows, apache, mysql, php) to develop website in
PHP5 locally, then I copy on a live webserver linux. I need to created
batch job that I can schedule. I saw few things on the net but nothing
really worth while. Any idea where I should look? Ideally the code
would work both in windows environment and linux environment.

View Replies !
Batch Printing
I have an online order management system. I am using PHP with a mySQL database. What i want to do is to write a script to pull my customer's order info from the database and add it to a print queue.

I want to be able to this for all orders(i.e for current day). I want to be able to print out all order info for that day in batch instead of printing it one at a time. Does PHP have any output to printer facilities/functions that can do this? How would I go about doing this?

View Replies !
PhpCB Batch Process ?
If I have a series of php files under C:INETPUBPROJECT with quite a few
SUBDIRECTORIES also (i.e. a standard PHPNuke install), is there a way to
have phpCB "batch" process all of the files ? This is the command line that
I would be using:

phpCB -space-after-start-bracket -space-before-end-bracket -space-after-if -
space-after-switch -space-after-while -space-before-start-angle-bracket -spa
ce-after-end-angle-bracket -one-true-brace-function-declaration -glue-ampers
core -indent-with-tab -force-large-php-code-tag -extra-padding-for-case-stat
ement -force-true-false-null-contant-lowercase --comment-rendering-style
PHPDoc --padding-char-count 1

View Replies !
Batch Proxy Testing
Looking to use a script to test my list of proxies in batch wise process. Rather than recreatiing the wheel I was wondering if this has ever been covered here ....

View Replies !
Triggering Batch Files
I have been playing around with PHP and learning a lot, and learned how it makes web designing easier when you are dealing with multi-pages. I was wondering is there a way I could trigger a batch file with a PHP file? I have uploaded a batch file to my webhost, and I want to turn it on, but can I do this by using a PHP file? I have heard it can be done, but how?

View Replies !
Uploading Photos In A Batch
I am trying to figure out a way to upload a large number of images all at once from within a local directory.

For example Facebook uses a Java applet which allows you to browse your local computer, choose images to upload, and all at once it will locally resize/optimize the file prior to uploading, then uploads all the pictuers selected all at once.

Now, I am not trying to compete with a solution that powerful, but I am looking to at least be able to upload more than one picture at once, rather than having to make 25 browse buttons.

View Replies !
Screen Scraping Batch
Is it possible to do a batch job on screen scraping, i am trying to use preg_match_all, I want to scrape the information about about a member, i have all the member names in a list and would like to do a loop, by getting one member name at a time. and would like to give a 15 seconds sleep(), Please is it possible to do.

View Replies !
Send Batch Emails
All shared servers limit the # of emails sent per x amount of minutes, as they should to keep load down. My question is, I've seen perl scripts (ie. dada mail) that do whats called batch emailing which esentially allows you to send a large amount of emails by splitting the mailing list into batches to lets say 5 per minute.

Can php do something like this? I have no idea how perl does this in the first place. In php, whenever you execute a shell command, doesn't it make you wait until it completes. So is it even possible to execute a shell command through php and leave it running as a background process or however those perl scripts are doing it.

View Replies !
Batch Image Upload
I am working on a project that requires mass image upload.

The project (as i can't provide to many details) has items which requires some input from another person. The items may have multiple images attached with the content the user enters for that item Code:

View Replies !
Batch Add Records To Database
I would like to create an option on my admin page to add batch records to Mysql database.

I guess I need a textarea, a field limiter and a line break :)

After the form has been submitted, the script should parse the data into arrays and add each array value to the database, most probably with a loop.

Can someone help me here? Example:

books

title | year | author

And what if I want to upload and insert CSV format (without phpmyadmin)?

View Replies !
Batch Code Execution?
I have a submit form that submits both text and images with the final image filename depending on the inserted text.

I insert all the content (text and image filenames) into a database for retrieval later.

My problem is this: If I process each item individually (eg: text first, then image), then the errors produced are independant of each other. I'm not sure whether that makes sense, so let me elaborate. Code:

View Replies !
Run A Php Script On Localhost Via Scheduler Or Batch?
I am now wondering if there is a way to set the windows scheduler to run this script daily? I tried to point the scheduler app directly to the php script however, this simply openes the file as if I were going to edit it. How do I get the script to actually execute and run the php file? Would I need to create a batch file then use scheduler to run the batch file. And if so, how do I set it up, the batch file? I have this so far in my batch file but it does nothing - it opens a command window for 2 seconds then closes. Also would I need to put a pointer to php in the first line of the php script similar to setting up a cron job on unix with the #!/usr/bin/php

Here is the batch file:

C:Program FilesPHPphp.exe -q C:Program FilesApache Software FoundationApache2.2htdocs ststart.php

View Replies !
Batch Uplaod For News Site ....
the objective of this project is to provide an ARTICLE upload
mechanism for PostNuke that will enable us to upload up to 20-40
articles at a time, assign the articles into appropriate topics and
also allow us to specify whether the article should be automatically
approved or not.

We use PostNuke 0.750.

The upload process would happen an a simple upload of a text file
containing the articles and control fields, which are separated from
each other with a particular sequence of characters.

Give us your feedback and a brief description of the possible
solution.

View Replies !
An Editor To Batch Save Files As UTF-8
I'm having probs with a site where some of the older pages are encoded in ISO-... and a lot of the others are encoded in UTF-8 and this is showing with data from the db (UTF-8) that contains accented charcaters

Has anyone heard of an editor that i can use to do a batch process on all site files to save them with a UTF-8 encoding ?

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved