File Manager Add-on Support Product Page
Answered
File uploading error
Asked 23 Sep 2011 03:37:31
1
has this question
23 Sep 2011 03:37:31 Brian Wheeler posted:
Hi thereNot sure why someone deleted my last post as it's still not resolved.
I still cannot upload files using the File Manager add-on (with php upload). I get: 403 Forbidden. You don't have permission to access /ScriptLibrary/dmxEditor/dialogs/upload.php on this server.
I managed to speak to support person Teodor and he suggested I move the site to the root directory and reapply the scripts which I did, but to no avail.
Can someone help please on where to go next?
Replies
Replied 23 Sep 2011 12:56:57
23 Sep 2011 12:56:57 manuel pinto replied:
I have the same problem. No error notification, but still can't upload files. Hope a solution soon.
Replied 13 Oct 2011 01:42:32
13 Oct 2011 01:42:32 Brian Wheeler replied:
Still not working!
Anybody have any help or suggestions?
Or does anyone from DMX Zone read these?
Anybody have any help or suggestions?
Or does anyone from DMX Zone read these?
Replied 13 Oct 2011 09:43:00
13 Oct 2011 09:43:00 Teodor Kuduschiev replied:
Please check if you have a security mod installed on your server. Please also check your server error log with your hosting provider/server administrator. This is not a bug in the extension.
Replied 25 Oct 2011 08:26:38
25 Oct 2011 08:26:38 Brian Wheeler replied:
Thanks Teodor
I have asked the hosting company about the security mod and they changed something and I now get a slightly different error:
Fatal error: require_once() [function.require]: Failed opening required '/ScriptLibrary/incPureUpload.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/coconuts/public_html/ScriptLibrary/dmxEditor/dialogs/upload.php on line 9
Does this help with tracking down the problem?
I have asked the hosting company about the security mod and they changed something and I now get a slightly different error:
Fatal error: require_once() [function.require]: Failed opening required '/ScriptLibrary/incPureUpload.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/coconuts/public_html/ScriptLibrary/dmxEditor/dialogs/upload.php on line 9
Does this help with tracking down the problem?
Edited by - Brian Wheeler on 25 Oct 2011 08:27:56
Replied 25 Oct 2011 16:07:15
25 Oct 2011 16:07:15 Teodor Kuduschiev replied:
Dear Brian,
This is all caused by some restrictions on your server. The product is tested and fully working. Please contact the hosting provider and ask them to check the logs and locate which of the server configuration settings is causing you this problem.
This is all caused by some restrictions on your server. The product is tested and fully working. Please contact the hosting provider and ask them to check the logs and locate which of the server configuration settings is causing you this problem.
Replied 31 Oct 2011 04:17:43
31 Oct 2011 04:17:43 Brian Wheeler replied:
Thanks Theodar but the hosting company says that the hosting is standard and the problem is with the script - so I guess I get the usual 'blame from both parties' but no-one taking responsibility and finding a solution - especially when someone else has the problem as well.
I will find an alternative solution so how do I go about getting a refund please as the scripts do not work for me?
I will find an alternative solution so how do I go about getting a refund please as the scripts do not work for me?
Replied 03 Nov 2011 11:56:37
03 Nov 2011 11:56:37 Miroslav Zografski replied:
Hello Brian,
The errors are saying that the file:
SiteRoot/ScriptLibrary/incPureUpload.php
cannot be opened with the require_once PHP function. Check for the existing of that file. And ask you hosting company for any restrictions on parent paths.
The errors are saying that the file:
SiteRoot/ScriptLibrary/incPureUpload.php
cannot be opened with the require_once PHP function. Check for the existing of that file. And ask you hosting company for any restrictions on parent paths.
Replied 05 Mar 2012 23:55:28
05 Mar 2012 23:55:28 phil vouers replied:
I had a similar problem with php upload when I was behind a protected directory. Drove me nuts but I just moved all scripting into the same protected directory and all was well. This didn't work though with php multi file upload.. there I had to place multi file upload outside the protected folder. Don't know if that will help but it did solve my problem. I woulod suggest setting up a php page just for file up load and test that ( not with html 3 but by itself ) if that works then try them together to at least eliminate part of the add on.
Replied 05 Jun 2013 20:59:14
05 Jun 2013 20:59:14 Nikolaos Beligiannis replied:
I am getting this error when trying to upload a file through HTML Editor3
Using HTML Editor3 in an administrator area ('pages that require login').
Thank you
The following error(s) occured: •Forbidden You don't have permission to access /ScriptLibrary/dmxEditor/dialogs/upload.php on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. Apache Server at ....com Port 80
Using HTML Editor3 in an administrator area ('pages that require login').
Thank you
Replied 26 Feb 2014 20:50:29
26 Feb 2014 20:50:29 Bernd Schmitt replied:
This issue is known for a long time. It's definitely not a server issue, but a bug in the upload.php.
I stated it at least a year ago and now I've updatet the PHP uploader to v.3 and it is still not resolved. It's very simple:
upload.php -> row 9: a wrong path to /ScriptLibrary/incPureUpload.php.
Require or include in PHP requires a relativ path OR a absolute server path, this is well known by every PHP developer
The path "/ScriptLibrary/incPureUpload.php" refers to the server root instead of the website root. Of course the script has in most cases no access to the server root.
Simply change the line 9 of the uplad.php
require_once('/ScriptLibrary/incPureUpload.php');
to
require_once($_SERVER['DOCUMENT_ROOT'].'/ScriptLibrary/incPureUpload.php');
and it works like a charm.
It's a shame that such a banal bug after years is still not resolved, although I already had pointed out and it's really simple to fix it.
Have a great night
Bernd
I stated it at least a year ago and now I've updatet the PHP uploader to v.3 and it is still not resolved. It's very simple:
upload.php -> row 9: a wrong path to /ScriptLibrary/incPureUpload.php.
Require or include in PHP requires a relativ path OR a absolute server path, this is well known by every PHP developer
The path "/ScriptLibrary/incPureUpload.php" refers to the server root instead of the website root. Of course the script has in most cases no access to the server root.
Simply change the line 9 of the uplad.php
require_once('/ScriptLibrary/incPureUpload.php');
to
require_once($_SERVER['DOCUMENT_ROOT'].'/ScriptLibrary/incPureUpload.php');
and it works like a charm.
It's a shame that such a banal bug after years is still not resolved, although I already had pointed out and it's really simple to fix it.
Have a great night
Bernd
Replied 26 Feb 2014 21:27:39
26 Feb 2014 21:27:39 phil vouers replied:
thanks BERND,
It's a shame that we have to fix extensions we pay for.
It's a shame that we have to fix extensions we pay for.
Replied 26 Feb 2014 21:53:36
26 Feb 2014 21:53:36 Bernd Schmitt replied:
Sorry, I have to correct me a little bit.
I'm confused.
Had a look at the in the Dreamweaver configuration files (C:\Users\Username\AppData\Roaming\Adobe\Dreamweaver CC\de_DE\Configuration\Shared\DMXzone\Advanced HTML Editor 3\PHP\upload.php) - the path is right here (relative: '../../../ScriptLibrary/incPureUpload.php'), but in the website installed file the path is wrong. Both version are 3.03 but different row 9. I wonder where the file with the wrong path comes from. A hour ago I've deleted the folder /ScriptLibrary completely and installed the HTML Editor again in the form field, the same issue as before.
Can it be that the installation routine changed something in the file?
Sincerely
Bernd
I'm confused.
Had a look at the in the Dreamweaver configuration files (C:\Users\Username\AppData\Roaming\Adobe\Dreamweaver CC\de_DE\Configuration\Shared\DMXzone\Advanced HTML Editor 3\PHP\upload.php) - the path is right here (relative: '../../../ScriptLibrary/incPureUpload.php'), but in the website installed file the path is wrong. Both version are 3.03 but different row 9. I wonder where the file with the wrong path comes from. A hour ago I've deleted the folder /ScriptLibrary completely and installed the HTML Editor again in the form field, the same issue as before.
Can it be that the installation routine changed something in the file?
Sincerely
Bernd
Replied 26 Feb 2014 22:07:31
26 Feb 2014 22:07:31 Teodor Kuduschiev replied:
Hello,
the issue is caused when your site uses paths relative to root. Please change this to Relative to Document in DW site config settings and the issue will be gone.
We will improve the paths relative to root compatibility in the next update.
the issue is caused when your site uses paths relative to root. Please change this to Relative to Document in DW site config settings and the issue will be gone.
We will improve the paths relative to root compatibility in the next update.
Replied 26 Feb 2014 22:24:06
26 Feb 2014 22:24:06 Bernd Schmitt replied:
Thanks for the quick reply. Indeed I'm using relative paths to root. This is necessary because the pages and pathes are added dynamical using a CMS by the customers.
It would be great to get a update to be able using both path types without tweeking the scripts.
It would be great to get a update to be able using both path types without tweeking the scripts.
Replied 16 Oct 2024 08:02:40
16 Oct 2024 08:02:40 User replied:
cash app taxes is a free tax filing program that accepts all popular forms and schedules for filing federal and state returns. It offers accurate computations, a maximum refund guarantee, and audit defense at no extra charge.
cash app taxes puts security and privacy first, using 128-bit or greater encryption to protect data transmission, maintaining physical, technical, and procedural safeguards of taxpayer information, and needing a phone number and verification to access the service.
cash app taxes puts security and privacy first, using 128-bit or greater encryption to protect data transmission, maintaining physical, technical, and procedural safeguards of taxpayer information, and needing a phone number and verification to access the service.
Replied 16 Oct 2024 08:08:50
16 Oct 2024 08:08:50 User replied:
cash app taxes provides a simple and quick way to file taxes, allowing customers to submit from their phone or computer and receive their refund up to 5 days faster than many banks when deposited into Cash App.
Although filing taxes can be a daunting task, New York City residents can now do it quickly and easily using Cash App Tax. cash.app/taxes is a user-friendly platform that helps you maximize your refund with minimal work, whether you're a small business owner, freelancer, or individual filer.
Although filing taxes can be a daunting task, New York City residents can now do it quickly and easily using Cash App Tax. cash.app/taxes is a user-friendly platform that helps you maximize your refund with minimal work, whether you're a small business owner, freelancer, or individual filer.
Replied 16 Oct 2024 08:10:48
16 Oct 2024 08:10:48 User replied:
You can file your federal and state taxes with the help of cash.app/taxes, a free online service. Previously called Credit Karma Tax, it lets you get the most out of your refund at no additional cost. The service helps protect your personal information and guarantees accuracy. With Cash App Tax, you can file your taxes quickly and securely directly through Cash App.
users can easily file their federal and state taxes using cash.app/taxes , a free online service. It allows people to customize their tax refunds without paying additional costs; it was previously known as Credit Karma Tax. This platform ensures correct calculations for your tax return and protects your personal information.
users can easily file their federal and state taxes using cash.app/taxes , a free online service. It allows people to customize their tax refunds without paying additional costs; it was previously known as Credit Karma Tax. This platform ensures correct calculations for your tax return and protects your personal information.
Replied 16 Oct 2024 09:34:14
16 Oct 2024 09:34:14 User replied:
An all-inclusive tax preparation program is TaxSlayer Pro. There are several advantages to logging into your taxslayerpro login/my account, particularly if you are a tax professional or a person handling tax-related duties.
For both individuals and professionals, taxslayerpro login/my account is a robust tax preparation tool that simplifies the tax filing process. If you live in Florida and need to access your TaxSlayer Pro account, the instructions below will help you log in, manage your account, and use the program efficiently.
For both individuals and professionals, taxslayerpro login/my account is a robust tax preparation tool that simplifies the tax filing process. If you live in Florida and need to access your TaxSlayer Pro account, the instructions below will help you log in, manage your account, and use the program efficiently.
Replied 16 Oct 2024 09:37:54
16 Oct 2024 09:37:54 User replied:
TaxSlayer is a firm that provides tax preparation software. Their solutions are tailored for tax professionals, who can visit their website to access their taxslayerpro login/my account . This allows tax professionals to efficiently prepare and file tax returns for their clients.
To access Account Hub, simply go totaxslayerpro login/my account and enter your username and password. From there, you can manage your business, apply for bank products, update your company's information, and much more.
To access Account Hub, simply go totaxslayerpro login/my account and enter your username and password. From there, you can manage your business, apply for bank products, update your company's information, and much more.
Replied 16 Oct 2024 09:51:23
16 Oct 2024 09:51:23 User replied:
TaxSlayer is a business that provides tax preparation services and software to corporations, tax professionals, and individuals. A secure login gateway, taxslayerpro login/my account , is provided by TaxSlayer Pro.
Our platform is made to make tax preparation easier for you and to help you save time and energy. Put your trust in the taxslayerpro account for all of your filing requirements. You can have confidence knowing that your private data is secure. Create a more efficient tax preparation procedure by using taxslayerpro login/my account right now.
Our platform is made to make tax preparation easier for you and to help you save time and energy. Put your trust in the taxslayerpro account for all of your filing requirements. You can have confidence knowing that your private data is secure. Create a more efficient tax preparation procedure by using taxslayerpro login/my account right now.
Replied 16 Oct 2024 09:55:58
16 Oct 2024 09:55:58 User replied:
freetaxusa is an online tax preparation software that allows individuals and businesses to file their federal and state taxes easily. Founded in 2001, this platform has gained popularity for its affordability, user-friendly interface, and comprehensive support options. FreeTaxUSA 2023 offers several features designed to make the tax filing process as easy as possible for users.
freetaxusais an online tax preparation and filing service that enables individuals and businesses to easily prepare and submit their federal and state tax returns. The platform is designed to provide a cost-effective solution for tax filing, ensuring a user-friendly experience that simplifies the process.
freetaxusais an online tax preparation and filing service that enables individuals and businesses to easily prepare and submit their federal and state tax returns. The platform is designed to provide a cost-effective solution for tax filing, ensuring a user-friendly experience that simplifies the process.
Replied 16 Oct 2024 09:57:36
16 Oct 2024 09:57:36 User replied:
freetaxusa is an online tax preparation and filing service that helps individuals, salary based, file their federal and state tax returns for free or at very low cost. It is known for offering free federal tax filing for many users, regardless of the complexity of their tax situation, while charging a small fee for state tax returns.
freetaxusa is a website that helps you file your taxes online. You can file your federal taxes for free, but there is a small fee to file your state taxes. easy to fill out your tax forms and send them to the government. It’s a good choice if you want a simple and low-cost way to do your taxes.
freetaxusa is a website that helps you file your taxes online. You can file your federal taxes for free, but there is a small fee to file your state taxes. easy to fill out your tax forms and send them to the government. It’s a good choice if you want a simple and low-cost way to do your taxes.
Replied 16 Oct 2024 10:00:12
16 Oct 2024 10:00:12 User replied:
freetaxusa provides free federal tax filing for tax returns. It has a simple user interface so people are comfortable to use it and it is free .Everyone can use this easily in this for state tax return you have to pay for this service or for some premium features. Is a great fit for people who want an affordable and easy solution for tax filing.
freetaxusa is an innovative tax preparation online platform that is designed to simplify the tax filing process for everyone. Motive of this platform is to make tax paying easy and affordable to users. It has a user-friendly interface so everyone can easily use it.
freetaxusa is an innovative tax preparation online platform that is designed to simplify the tax filing process for everyone. Motive of this platform is to make tax paying easy and affordable to users. It has a user-friendly interface so everyone can easily use it.
Replied 16 Oct 2024 10:10:39
16 Oct 2024 10:10:39 User replied:
Quickbooks tool hub is an application that contains a number of features designed to assist users in identifying and fixing common problems with QuickBooks.
Quickbooks tool hubis a downloadable application designed to help QuickBooks users troubleshoot and resolve common issues they encounter while using QuickBooks Desktop. This utility integrates various troubleshooting tools into a single interface, making it easier for users to access the solutions they need without having to navigate through multiple programs.
Quickbooks tool hubis a downloadable application designed to help QuickBooks users troubleshoot and resolve common issues they encounter while using QuickBooks Desktop. This utility integrates various troubleshooting tools into a single interface, making it easier for users to access the solutions they need without having to navigate through multiple programs.
Replied 16 Oct 2024 10:13:05
16 Oct 2024 10:13:05 User replied:
Get instant support for your QuickBooks Desktop with the Quickbooks tool hub download. This powerful diagnostic tool is designed to identify and fix common errors, ensuring that your accounting operations run smoothly. With a simple and secure download process, you can quickly resolve issues with company files, network connectivity, and more, minimizing downtime and increasing productivity.
If you use Quickbooks tool hub for your business, you might run into some problems now and then. These can include difficulty with opening files, installation errors, or network issues if more than one person is using it.
If you use Quickbooks tool hub for your business, you might run into some problems now and then. These can include difficulty with opening files, installation errors, or network issues if more than one person is using it.