x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
imageconvert_1.pl - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\LITTLELEV\ImageFolioLite\if_lib\imageconvert_1.pl
Girar
Efecto
Propiedad
Historial
############################################################################### # BizDesign ImageFolio Lite Edition 4.2 (Four-dot-Two) ############################################################################### # # ## ### VERSION : 4.2 # #### ## ## RELEASED ON : 02/15/2007 # ## ## ## LAST MODIFIED : 02/15/2007 # ########## ## # ## ### ## # ## ### ######## # ############################################################################### # Released by BizDesign, Inc. # written by Dirk Koppers and Greg Raaum of BizDesign # # Purchasing : http://imagefolio.com/purchase/ # Support : http://imagefolio.com/support/ # Phone : (214) 642-9787 # Email : sales@bizdesign.com ############################################################################### # COPYRIGHT AND LICENSE INFORMATION : # # Copyright (c) 1999-2007 BizDesign, Inc. All rights reserved. # # Selling or distributing the code for this program without prior written # consent is expressly forbidden. # # One licensed copy of the program may reside on a single server, in use by a # single domain. For each installed instance of the program, a separate # license is required. # # Licensed users may alter or modify this software, at their own risk, of # course. They may also hire others to modify their own copy of the code, as # long as the code is not transferred to or retained by the individual who is # hired (unless he/she is also a license holder). Although license-holders # may modify the code for their use, modified code may NOT be resold or # distributed. # # THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BIZDESIGN, # INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # # BizDesign, Inc. is not liable for any conduct associated with image gallery # activity, nor for any binary media posted using this program, including but # not imited to images, photographs, movies, and clipart. # # The user must assume the entire risk of using the program. Although this # program has been thoroughly tested on BizDesign's servers, BizDesign does not # warrant that it works on all servers and will not be held liable for anything, # including but not limited to, misusage, error, or loss of data. ANY # LIABILITY OF THE SELLER WILL BE LIMITED EXCLUSIVELY TO PRODUCT REPLACEMENT # OR REFUND OF PURCHASE PRICE. Use at your own risk! ############################################################################### # Do not modify below this line unless you know what you are doing. ############################################################################### sub info_ic_in { &which_ic; my ($ic_installed, $ic_working, $ic_why) = split(/~/, &do_load_ic); if ($ic_why) { $ic_why_this = "
Error: Couldn't execute imageConvert ($ic_why)
"; } &die_ic("Operating System:
$info_OS
OS Version:
$info_OSv
Kernel:
$info_PROC_RELEASE
Machine:
$info_MACHINE
Processor Type:
$info_PROCESSOR
ImageConvert installed:
$ic_installed
ImageConvert working:
$ic_working
$ic_why_this"); } sub manual_install_ic_in { if ($FORM{'test'}) { &man_test_ic; } &check_dir_ic; &which_ic; my $manual_install = qq|
ImageConvert installation: Manual install
Please provide the username and password for the download area that you received when you purchased ImageFolio.|; my $manual_install_button = &manual_install_button; &die_ic($manual_install, $manual_install_button); } sub manual_install_button { my $ic_output = qq|
Username:
Password:
|; return $ic_output; } sub close_ic_button { my $ic_output = qq|
|; return $ic_output; } sub check_dir_ic { if (!-d "$data_directory/ic") { mkdir("$data_directory/ic", "0777") or &Error("Unable to create your data/ic directory. Reason: $!"); chmod(0777,"$data_directory/ic") or &Error("Could not set permissions on the data/ic directory. Reason: $!"); } } sub install_ic_button { my $ic_output = qq|
|; return $ic_output; } sub which_ic { $info_OS = $^O; if ($info_OS ne "MSWin32") { # if ($info_OSname = `uname -s`) { # $info_OS = $info_OSname; # } ($info_OSv) = split(/\:/, `uname -v`); $info_PROC_RELEASE = `uname -r`; $info_MACHINE = `uname -m`; $info_PROCESSOR = `uname -p`; } $zipsupport = "yes"; eval "use Archive::Zip qw(:CONSTANTS :ERROR_CODES);1;" or $zipsupport = "no"; } sub install_manual_ic_button { my $ic_output = qq|
|; return $ic_output; } sub set_reg_ic { my $this_reg = shift; open (IC_REG,">$data_directory/ic/ver.pl"); print IC_REG '$ic_ver = \'' . $this_reg . '\';' . "\n"; print IC_REG "1;\n"; close(IC_REG); chmod(0777,"$data_directory/ic/ver.pl"); } sub uncompress_ic { my ($uc_file, $uc_path, $uc_save) = @_; if ($uc_file =~ /.zip$/i) { require Archive::Zip; my $ic_zip = Archive::Zip->new(); $ic_zip->read("$uc_file"); my @members = $ic_zip->memberNames(); foreach $member (@members) { $ic_zip->extractMember($member, "$uc_path/$member"); } if (!$uc_save) { unlink("$uc_file"); } } elsif ($uc_file =~ /.tar.gz/i) { if (-e "/usr/local/bin/tar") {$info_TAR = "/usr/local/bin/tar";} elsif (-e "/usr/bin/tar") {$info_TAR = "/usr/bin/tar";} elsif (-e "/usr/local/tar") {$info_TAR = "/usr/local/tar";} elsif (-e "/bin/tar") {$info_TAR = "/bin/tar";} if (!$info_TAR) { $info_TAR = `which tar`;} if ($info_TAR) { system "$info_TAR -xzf $uc_file -C $uc_path"; if (!$uc_save) { unlink("$uc_file"); } } } opendir(IC_DIR,"$uc_path"); @files = readdir(IC_DIR); closedir(IC_DIR); foreach $file (@files) { chmod(0777,"$uc_path/$file"); } } sub man_test_ic { if (-e "$data_directory/ic/ImageConvert.$FORM{'test'}") { &uncompress_ic("$data_directory/ic/ImageConvert.$FORM{'test'}", "$data_directory/ic", "1"); &set_reg_ic($FORM{'this_reg'}); ($ic_installed, $ic_working, $ic_why) = split(/~/, &do_load_ic); if (($ic_installed eq "No") or ($ic_working eq "No")) { if ($ic_why) { $ic_why_this = "
Error: Couldn't execute imageConvert ($ic_why)
"; } $man_inst_finish_text = "ImageConvert is not working. Please go back and make sure you have followed the instructions or contact
support\@bizdesign.com
."; } else { $close_ic_button = &close_ic_button; $man_inst_finish_text = "The installation of ImageConvert is finished. Now try it out and see if it works by uploading an image. Make sure you have a look at the various ImageConvert settings in you admin_config.pl like size, sharpness, contrast etc. of your uploaded image files."; } } else { $ic_installed = "No"; $ic_working = "No"; $man_inst_finish_text = "We could not find ImageConvert.$FORM{'test'} in your \"data/ic\" directory. Please go back and make sure you have followed the instructions or contact
support\@bizdesign.com
."; } &die_ic("
ImageConvert installation: Manual install
ImageConvert installed:
$ic_installed
ImageConvert working:
$ic_working
$man_inst_finish_text$ic_why_this", $close_ic_button); } sub die_ic{ my ($die_ouput, $die_button, $die_onload, $die_js) = @_; if (!$die_button) { $die_button = qq|
|; } print "Content-type: text/html\n\n"; print qq|
ImageConvert info console
$die_js
I m a g e C o n v e r t i n f o c o n s o l e
$die_ouput
$die_button
|; exit; } 1;
imageconvert_1.pl
Dirección de la página
Dirección del archivo
Anterior
12/23
Siguiente
Descargar
( 13 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10