Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Easy Populate & Products Attributes


VJ

Recommended Posts

The last one uploaded - 2.76e-MS2 (with attributes).

 

Jack

that issue has been fixed in the v2.76f.

v2.76f r1 I think might actually, finally, be rid of the globals use.

Link to comment
Share on other sites

v2.76x - no. other versions offer support for it.

Hi,

 

the last version from surfalot is 98% perfect !!! thank you for great working !!!

 

but the support for QTpro is not 100%...

 

if my article has only one options is all ok, but...

 

if i have some article with more options the quantity is not write in .csv ...

 

example:

 

shirt

XL

XXL

 

in

red

blue

 

i have no a table with quantity

XL + red = 3

XL + blue = 5

XXL + red =1

XXL + blue=15

 

this will not write with EP in .csv !!!

 

can sombody help ?

 

thank you

Link to comment
Share on other sites

Hi,

 

the last version from surfalot is 98% perfect !!! thank you for great working !!!

 

but the support for QTpro is not 100%...

 

if my article has only one options is all ok, but...

 

if i have some article with more options the quantity is not write in .csv ...

 

example:

 

shirt

XL

XXL

 

in

red

blue

 

i have no a table with quantity

XL + red = 3

XL + blue = 5

XXL + red =1

XXL + blue=15

 

this will not write with EP in .csv !!!

 

can sombody help ?

 

thank you

 

hello,

 

i forgot...

 

is there a chance that EP work with Master Products and Limited Stock by Article 0_02 ???

 

thank you !!!

Link to comment
Share on other sites

hello,

 

i forgot...

 

is there a chance that EP work with Master Products and Limited Stock by Article 0_02 ???

 

thank you !!!

 

there are versions that work with master products and QTpro. not sure which ones though. Look around the many uploads for EP.

Link to comment
Share on other sites

there are versions that work with master products and QTpro. not sure which ones though. Look around the many uploads for EP.

Thank you, i have change your last version from 15.aug for work with master Products and Limited Stock by Article 0_02

 

but what must i change to export the price with , ( 12,1234 ) and import the price with . ( 12.1234 ) ???

Link to comment
Share on other sites

i have 30 categories and in each of these is the same 100x15x8x5 subcategories.. as you can see it will take me A lot of Time!!

 

.. i need to COPY them but the only option available to me in admin is MOVE...

 

will this contributin help me?

 

GrayBoss

 

(please excuse me for being a newbie)

Link to comment
Share on other sites

problem is i dont need to copy products, i just need to copy the categories..... will it still work?

GrayBoss

Sorry. But this wont copy catagory(s). Just products.

Link to comment
Share on other sites

there are versions that work with master products and QTpro. not sure which ones though. Look around the many uploads for EP.

 

You wrote:

SUPPORT

I will be watching this thread for support. I will be supporting this version only.

Due to time constraints I will help find problems with this version as I uploaded it and

I will not be helping integrate other contributions, sorry.

PLEASE SEE THE DOCS ON HOW TO ASK FOR HELP

http://www.oscommerce.com/forums/index.php?showtopic=162244

 

in your contrib is a button to use qtpro, but it is not work correct...

 

can you help that your contrib work 100% with QTpro ???

 

 

thank you

Link to comment
Share on other sites

in your contrib is a button to use qtpro, but it is not work correct...

 

can you help that your contrib work 100% with QTpro ???

QTpro support is not my contribution as you can see in the comments. If it doesn't work with your version of QTpro, you should step-up, fix it, and post your solution for the benefit of all. :thumbsup: Good luck.

Link to comment
Share on other sites

Hello,

 

I just downloaded the newest Easy Populate and it works great!!!! Thanks. I need to add a cost field, and I have looked through the post and I only see this info for a much older version. Can someone let me know where to add these fields, or can I just mimic where all the v_products_price are located with a cost line?

 

Thanks Dom B

Link to comment
Share on other sites

next question: if i export with tax i must import w/o tax... but it does not import w/o tax, who is the error ? what must i change to import w/o tax ?

 

thank you

are you telling me there is a problem with the EP_PRICE_WITH_TAX option? please explain further.

Link to comment
Share on other sites

but what must i change to export the price with , ( 12,1234 ) and import the price with . ( 12.1234 ) ???

what is the problem here? what is not working correctly for you?

Link to comment
Share on other sites

Hi Everyone: I had a problem with my easypopulate. I installed in my site but when I tried to insert to db tables , I has the following error:

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

Easy Populate 2.76f-MS2 r1 - Default Language : english(1)

 

File uploaded.

Temporary filename: /home/users/web/b2256/hy.coboling1/cgi-bin/tmp/phps15slM

User filename: test.csv

Size: 206447

##Can not open file for reading. Script will terminate.

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

 

Please tell me What I need to do to fix this problem

Link to comment
Share on other sites

I love the updated Contribution and this is my first post so bear with me if I do something wrong. On EP Basic which I know is not supported here there was a drop down in order to pull in a file that was uploaded to the temp directory. I have tried to re-create in this contribution but can't seem to get it to work. What I did is commented out this:

 

<?PHP
				//<INPUT TYPE="text" name="localfile" size="50">
				//$the_array = Array();
				//if (is_readable(EP_TEMP_DIRECTORY)) {
				//	$handle = opendir(EP_TEMP_DIRECTORY);
				//	while (false!== ($file = readdir($handle))) {
				//	  if ($file!= "." && $file!= ".." &&!is_dir($file)) {
				//	   $namearr = split('\.',$file);
				//	   if ($namearr[count($namearr)-1] == ((EP_EXCEL_SAFE_OUTPUT==true)?'csv':'txt')) $the_array[] = $file;
				//	  }
				//	}
				//	closedir($handle);
				//}
				//
				//$array_size = count($the_array);
				//if($array_size == 0){
				//  echo ('            <INPUT TYPE="text" name="localfile" size="50">' . "\n");
				//} else {
				//  echo ('            <select name="localfile" size="1">' . "\n");
				//  foreach ($the_array as $list){
				//   echo ('                <option value="' . $list . '">' . $list . '</option>' . "\n");
				//  }
				//  echo ('            </select>' . "\n");
				//}
				//?>

 

And then replaced it with this code. As I do not have much of a clue on what exactly everything does I do not know where I went wrong.

 

?php
	    $dir = dir(EP_TEMP_DIRECTORY);
	    $contents = array(array('id' => '', 'text' => TEXT_SELECT_ONE));
	    while ($file = $dir->read()) {
	      if ( ($file != '.') && ($file != 'CVS') && ($file != '..') ) {
	        //$file_size = filesize(DIR_FS_CATALOG . $tempdir . $file);

	        $contents[] = array('id' => $file, 'text' => $file);
	      }
	    }
	    echo tep_draw_pull_down_menu('localfile', $contents, $localfile);
	?>

 

I am running the newest version: Easy Populate 2.76f-MS2 (with attributes) r1

 

Settings:

EP vers: 2.76f-MS2 r1

Temp Dir:

/home/wholesal/public_html/temp/

Temp Dir is Writable

Magic Quotes is: off

register_globals is: on

Split files on: 300 records

Model Num Size: 12

Price with tax: false

Calc Precision: 2

Replace quotes: false

Field seperator: comma

Excel safe output: true

Preserve tab/cr/lf: false

Category depth: 7

Enable attributes: true

SEF Froogle URLS: false

More Pics: false

Unknown Pics: false

HTC: false

SPPC: false

Extra Fields: false

 

 

Can someone please help me on this small project.

 

Thanks

Edited by ckami35759
Link to comment
Share on other sites

are you telling me there is a problem with the EP_PRICE_WITH_TAX option? please explain further.

 

I guess there is. Before upgrading I could put my prices without tax in excel, and by uploading it with EP, having the prices displayed in my shop including tax.

 

Now (after upgrading), my prices in excel are still without tax, the setting in EP is "Price with tax: false", and in my admin section the setting "show prices incl TAX" is true.

But in reality, my shop shows the prices without tax.

 

No settings changed, only upgraded to the new release of EP.

 

Any idea ?

 

Tim

Link to comment
Share on other sites

i repair all my errors, now it works good for me !!!

>_<

If you solved something you've asked for help on, good edicate would be to post that you've solve the problem so those that are donating their valuable time don't waste it thinking about your issue. Since you are obviously capable of doing everything you've asked me to do for you, maybe you should consider giving back to the community. :thumbsup:

Link to comment
Share on other sites

Hi Everyone: I had a problem with my easypopulate. I installed in my site but when I tried to insert to db tables , I has the following error:

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

Easy Populate 2.76f-MS2 r1 - Default Language : english(1)

 

File uploaded.

Temporary filename: /home/users/web/b2256/hy.coboling1/cgi-bin/tmp/phps15slM

User filename: test.csv

Size: 206447

##Can not open file for reading. Script will terminate.

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

 

Please tell me What I need to do to fix this problem

please see the section of the docs on how to ask for help.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...