|
Search
You searched for the word(s): php
Showing page 27 of 158 (1,571 total posts)
< 1 second(s)
-
No, on that asp page:
http://cutesoft.net/example/general.aspx
all the buttons shows after 2-3 sec (and then 80-90 objects are being downloaded in the background)
But on this php page:
http://phphtmledit.com/EnableAll.php
the buttons shows after 10-15 sec, AFTER the 80-90 objects has been downloaded.
And there are the same ...
-
Graham,
This is a general PHP question.
You can ask you ISP help you change the setting and tell him you want to upload files to a folder.
Your ISP will know the correct security setting.
Once it's done, please write a simple php upload page and test this folder.
Read + Write + Execute = ...
-
Here's the code: <?php require_once ''./phpuploader/include_phpuploader.php'' ?>
<?php session_start(); ?>
<?php
if (!is_dir)
mkdir (''D:/Hosting/3380894/html/tmp'', 0777);
else
chmod(''D:/Hosting/3380894/html/tmp'', 0777);
?>
<html>
<body>
<form id=''form1'' method=''POST''>
Upload ...
-
PrinceOfAbyss:One very simple and quick question. When I upload some files, and I haven't set from the beginning the $uploader->SaveDirectory property, nor have I used after the upload the $mvcfile->MoveTo method to move them to a desired location, WHERE do the files go? ...
-
Hi dolphinbulat,
Please try the way below
1. Open file “\cuteeditor_files\include_CuteEditor.php”
2. Find section below
$this->FilesPath=dirname($this->GetWebPath(__FILE__));
3. Change it ...
-
Hi FrankM,
Please try the way below
1. Open file \cuteeditor_files\include_CuteEditor.php
2. Find section below
$s=$s."<span val='".$v."' html='".$h."' txt='".$t."'></span>";
3. Change it ...
-
Hi wangbin8000, 1. If you want to get the select html content of the user, please refer to http://www.cutesoft.net/developer+guide/scr/Get-HTML-from-Selection.htm, it shows you how to get the selected html content. 2. If you want to post the content when in the edit view of Editor, for now can not achieve it. 3. If ...
-
Hi Miwi, You just need to put the code into your page which you need to use the uploader control. For example, in my page I have a <div> target, I want to use the uploader control in this <div> target. then should be <div> <?php $uploader=new PhpUploader(); ...
-
Hi ongun23, Please follow the steps below to set the TempDirectory 1. Open ''cuteeditor_files\Dialogs\phpuploader\include_phpuploader.php'', 2. Search function ''InternalGetTempDirectory'' and add temporary directory setting here: function ...
-
Hi james2012, 1. You can handle the upload file extension by property ''AllowedFileExtensions''. $uploader->AllowedFileExtensions=''docx,pdf,jpg''; 2. You need to write your own method to achieve the send mail function. The php uploader just a upload control, has not that function in-build. You can refer to ...
... 27 ...
|
|
|