Hi Everybody...
first: my english is really not the best - sorry for any misunderstandings... okay: i'am new user of Pro-Script, i have yesterday purchase...
The Functionally is top! Thanks BUT: I find it unfortunate that a commercial Script a validen code does not contain! That should be absolutely amended.
Now i have many questions for Troubleshooting...
1. I will use tiny2 template with circle-progressbar AND with multiupload, how???
2. I have delete post.cgi and post.php. Now show me the browser after submit this errormessage on the browser: Method Not Allowed
The requested method POST is not allowed for the URL /uploads/index.html.
I will simply after submit back/redirect to the upload form without statusdisplay or this errormessages. What must i do???
3. Im not understanding the compliacate template-technology. How can i simple switsch and change the "inline3"- Displayoption with the Templates Hitech, Pro1 or modify templates. And i will activate ONE Template without css and codessnipptes of not used Iframes Templates...
My Target is valide Code xhtml and tableless Code! is that feasible?
I send the login / per email an support... Please help me first for Problem Number 2....
Greetings from Germany ... i hope you could me a little bit understand
XUpload - Many Problems...
-
- Posts: 4
- Joined: Sep 12, 2007 3:47 pm
Server Error, when disabled post.php / post.cgi
Hi, to my Problem No. 2.
This is the solution:
upload.cgi original entry:
This is the Modify for Killing the Servererror-Message:
You can now use or not the redirect file in the config. As PHP or CGI
Okay. Now it concerns only the template Tiny2 /Tiny.
As one makes with this Templates Multiuploads?
Greetings...
This is the solution:
upload.cgi original entry:
Code: Select all
### Sending data with POST request if need
my $url_post = $c->{url_post} || $ENV{HTTP_REFERER};
if($url_post)
{
if($url_post=~/\.htm(l|)$/i)
{
Code: Select all
### Sending data with POST request if need
my $url_post = $c->{url_post} || $ENV{HTTP_REFERER};
if($url_post)
{
if($url_post !~ /\.php$/i && $url_post !~ /\.cgi$/i)
{
Okay. Now it concerns only the template Tiny2 /Tiny.
As one makes with this Templates Multiuploads?
Greetings...
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
-
- Posts: 4
- Joined: Sep 12, 2007 3:47 pm
Hi, and good morning from germany...
the best solution what i wish:
1. Multiple Uploads with select each file individually and display the progresscircle for every file.
2. successively uploads and progressdisplay for the selected files - NOT asynchron upload, because there are often server problems there with...
I have new question for styling... how can i style the fileselectform and the textfielfd for description? (width or heigt and with more lines etcetera...) the forms for selected file and particularly for the description is too small for visually control and enterfrom more text more textinfos ...
best regards...
What is the big different for this possibilitys? hmm, is not so importantly, at the best one should both be possible it concerns the principle.you want circle progress for every file or for all selected files? Multiple files in one form or Multiple forms with 1 file inside?
the best solution what i wish:
1. Multiple Uploads with select each file individually and display the progresscircle for every file.
2. successively uploads and progressdisplay for the selected files - NOT asynchron upload, because there are often server problems there with...
I have new question for styling... how can i style the fileselectform and the textfielfd for description? (width or heigt and with more lines etcetera...) the forms for selected file and particularly for the description is too small for visually control and enterfrom more text more textinfos ...
best regards...
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Actually Tiny layout was designed for Single file upload. It is possible to start file uploads one-by-one, but this requires extra programming for this specific task.
You cannot change the height of description field right now cause it's not textarea but single text field. Probably will change it to textarea in next version.
You can change styles of description field with these styles in upload_form.html
You cannot change the height of description field right now cause it's not textarea but single text field. Probably will change it to textarea in next version.
You can change styles of description field with these styles in upload_form.html
Code: Select all
.fdescr {width: 300px;}
.xdescr {color: #aaa;}
-
- Posts: 4
- Joined: Sep 12, 2007 3:47 pm