osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 

Yep another person with an image upload problem

This is a discussion on Yep another person with an image upload problem within the osCMax v1.7 Installation forums, part of the osCMax v1.7 Forums category; OKay I've read through alot of the forums and I'm just not seeing anyone say the solution for my particular ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v1.7 Forums > osCMax v1.7 Installation

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 12-13-2004, 08:16 AM
Lurker
 
Join Date: Dec 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
Kragon8331
Default Yep another person with an image upload problem

OKay I've read through alot of the forums and I'm just not seeing anyone say the solution for my particular problem.

I cannot get any picture anywhere in the admin panel to upload. New category, File Manager, New Product, anything. I cannot get them to upload.

I'm check the permissions on the required files and they have mean modified accordingly.

I set my images in my configure.php to any absolute path. That didn't work.

Anyhelp would be greatly appreciated. Because I've already went throu a fith of evans trying to solve this. Maybe its something simple and I'm just not seeing it..

-Krag
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2  
Old 12-13-2004, 01:56 PM
red_fraggle's Avatar
Active Member
 
Join Date: Feb 2004
Location: wilmington, NC
Posts: 319
Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 0
red_fraggle
Default

the permission on the /images folder and the /admin/images folder needs to be 777 not the specific files inside that directory. If this is not working then i would say you have some or all of the path statements in your admin/includes/configure.php set incorrectly.
__________________
Clifton Murphy CEO/CTO
Hyperactive Inc.
osCommerce hosting, OSCMAX hosting, osCommerce modification, and OSCMAX modification specialists!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 12-13-2004, 03:44 PM
Lurker
 
Join Date: Dec 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
Kragon8331
Default

Okay kewl....
This is the config from admin/includes/configure.php

What is wrong with it and what would need to be done to correct it?

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://www.aggregatesystems.net'); // eg, http://localhost - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.aggregatesystems.net');
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/websolutions/catalog/'); // where the pages are located on the server
define('DIR_WS_ADMIN', 'http://www.aggregatesystems.net/websolutions/catalog/admin/'); // absolute path required
define('DIR_FS_ADMIN', 'http://www.aggregatesystems.net/websolutions/catalog/admin/'); // absolute pate required
define('DIR_WS_CATALOG', 'http://www.aggregatesystems.net/websolutions/catalog/'); // absolute path required
define('DIR_FS_CATALOG', 'http://www.aggregatesystems.net/websolutions/catalog/'); // absolute path required
define('DIR_WS_IMAGES', 'http://www.aggregatesystems.net/websolutions/catalog/images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
define('DIR_WS_INCLUDES', 'http://www.aggregatesystems.net/websolutions/catalog/includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

That's about it what does it need to be modded too?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 12-14-2004, 08:52 AM
red_fraggle's Avatar
Active Member
 
Join Date: Feb 2004
Location: wilmington, NC
Posts: 319
Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 0
red_fraggle
Default

Yes theres alot wrong with that, alot of those configurations are asking you to use a physical hard drive path on the server not a URL.

Try this

Code:
// Define the webserver and path parameters 
// * DIR_FS_* = Filesystem directories (local/physical) 
// * DIR_WS_* = Webserver directories (virtual/URL) 
define('HTTP_SERVER', 'http://www.aggregatesystems.net'); // eg, http://localhost - should not be empty for productive servers 
define('HTTP_CATALOG_SERVER', 'http://www.aggregatesystems.net'); 
define('HTTPS_CATALOG_SERVER', ''); 
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module 
define('DIR_FS_DOCUMENT_ROOT', '/websolutions/catalog/'); // where the pages are located on the server 
define('DIR_WS_ADMIN', 'admin/'); // absolute path required 
define('DIR_FS_ADMIN', '/websolutions/catalog/admin/'); // absolute pate required 
define('DIR_WS_CATALOG', '/websolutions/catalog/'); // absolute path required 
define('DIR_FS_CATALOG', '/websolutions/catalog/'); // absolute path required 
define('DIR_WS_IMAGES', 'images/'); 
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); 
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); 
define('DIR_WS_INCLUDES', 'includes/'); 
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); 
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); 
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); 
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); 
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); 
define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); 
define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); 
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); 
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); 
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
Your main problem is that i dont think you have the correct "physical path" Any where in the above code that you see "DIR_FS" you should be using a physical hard drive path from root such as "/home/httpd/vhosts/aggregatesystems.net/websolutions/catalog" Please note if you are using PLESK then this is your actual path. If not using Plesk please contact your hosting company and ask them for your FULL path to your web folder from the root of the servers hard drive.

Post that path here and ill complete it for you.
__________________
Clifton Murphy CEO/CTO
Hyperactive Inc.
osCommerce hosting, OSCMAX hosting, osCommerce modification, and OSCMAX modification specialists!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Having to change image name to upload problem ozstar osCMax v2 Installation issues 1 02-27-2006 12:47 AM
Help with multiple image upload ozstar osCMax v2 Installation issues 0 11-29-2005 01:51 PM
New Person: Can't LOGIN to ADMIN SANDRINE osCMax v1.7 Installation 7 04-13-2005 08:20 AM
EasyPopulate - suddenly having upload problem - See Error xpressed osCMax v1.7 Discussion 4 07-09-2004 05:56 AM
Is there any way to have a customer upload an image file crujones osCMax v1.7 Discussion 1 09-24-2003 05:05 AM


All times are GMT -8. The time now is 10:29 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax