phpUploader v2.1 - Opensource php based auto uploader

Status
Not open for further replies.
getting same error with FS ... RS , Hf working great... I have checked files in the files folder but it has only 0 bytes files.... for RS and HF working great
[slide]http://screensnapr.com/u/it6mq2.png[/slide]
 
[slide]http://i36.tinypic.com/fmpeea.png[/slide]

I've tried changing the path to everything possible but it still doesn't seem to work. Anyone know what I need to do?

Edit: Oh yeah, all the files are chmodded.
 
Ronald path is not right..... try this /home/ronald/[domain]/public_html/phpuploader/

or
/home/ronald/[domain]/phpuploader/

change [domain] with your domain on which u have uploaded it .....
e.g
if u have abc.com/phpuploader/
than
/home/ronald/abc.com/public_html/phpuploader/
 
Ronald path is not right..... try this /home/ronald/[domain]/public_html/phpuploader/

or
/home/ronald/[domain]/phpuploader/

change [domain] with your domain on which u have uploaded it .....
e.g
if u have abc.com/phpuploader/
than
/home/ronald/abc.com/public_html/phpuploader/

I don't have a domain, i'm on a shared RL plan. So I tried typing in the IP but didn't work :/
 
[slide]http://i36.tinypic.com/fmpeea.png[/slide]

I've tried changing the path to everything possible but it still doesn't seem to work. Anyone know what I need to do?

Edit: Oh yeah, all the files are chmodded.

look again in the picture you are missing a "/" before home/ so, check the config again
 
What host are you trying to download the file from, Ronald? Have you checked to make sure it's actually downloading the file?

That error can be caused cze of a misconfigured path or a file that did not download correctly.

@user02
No you cannot.
 
It doesn't start to download, that error instantly comes up. I'm trying to download from MU (the newer version). Can I send you details for my server and you set it up for me?
 
That's the reason the error is coming up. It's not downloading the file which means it is unable to grab the filename (it does that from the direct link). Which then means, there is no filename to create in the files directory. And, thus, the error.

Try downloading a file from FS/HF/RS. MU may be bugged. I have coded MU support officially and tested it, so I can confirm it's working. But I have not released the script yet cze I was thinking of getting Somik to implement his mod first then do a combined release of my script + his mod.
 
Ron, do this:

Open includes/functions.php. Find this code:
PHP:
function getmulink($link, $mucookie)
{
    $page = curl($link, '', $mucookie);
    preg_match('#Location: (.*)#', $page, $match);
    $link = trim($match[1]);
    return $link;
}

In that code, change this part:
PHP:
preg_match('#Location: (.*)#', $page, $match);

to this:
PHP:
preg_match('#location: (.*)#', $page, $match);
 
@Lifetalk, LOL! Looks like you already found out all the modifications i did to your original script!

Also, if you want me to implement my mod before release, PM me the download link, and i'll include my codes inbetween yours and PM you back the modified script :)
 
Status
Not open for further replies.
Back
Top