Re: CuteWebUI_AjaxUploader_Initialize is not defined

  •  09-14-2010, 4:39 AM

    Re: CuteWebUI_AjaxUploader_Initialize is not defined

    Hi pandurang,
     
    The uploader get a wrong path in the section below of file "\phpuploader\include_phpuploader.php"
     
    $cd=dirname($this->GetWebPath(__FILE__));
     
    You can write the path directly. For example, in my case the uploader url is "http://localhost/phpuploader/select-multiple-files-upload.php"
     
    So, I change th section above to the below code. the red code is the root url of my site
      
    $cd="http://localhost/phpuploader/phpuploader";
     
    ------------------------------------------------------------------------------------------------
     
    You can open the soure code page(right click the page and select the source  code menu) of http://test_site.local-manufacturing.com/create_project.php
     
    Find section below and adjust the correct path
     
    <script type='text/javascript' src='/phpuploader/ajaxuploaderresource.php?type=script'>
     
    When the path =http://test_site.local-manufacturing.com/phpuploaderajaxuploaderresource.php?type=script
     
    It will work again.
     
    Regards,
     
    ken
View Complete Thread