Jump to content



Latest News: (loading..)

- - - - -

Manual Order Maker


  • Please log in to reply
183 replies to this topic

#41   Coopco

Coopco
  • Members
  • 9,557 posts
  • Real Name:Leslie Cooper
  • Gender:Male
  • Location:Sea Lake, Victoria, Australia

Posted 25 October 2008 - 06:16 AM

View Postakyboy, on Oct 24 2008, 02:55 PM, said:

Hi

as soon as i click create button i get this message



how to fix this

tnx
What is on line 5


The Coopco Underwear Shop



If you live to be 100 years of age, that means you have lived for 36,525 days. Don't waste another, there aren't many left.

#42   teleute

teleute
  • Members
  • 111 posts
  • Real Name:Allison Roth

Posted 25 October 2008 - 07:44 PM

So does this contribution not link into the existing payment methods, then?  If I have a cc processor set up, when I'm creating an order with this contrib will I get the option for it to link to the cc processor to do the payment?  Or would I have to go separately and manually process the card?

#43   stubbsy

stubbsy
  • Members
  • 544 posts
  • Real Name:dave stubbs
  • Gender:Male
  • Location:Lyme Regis

Posted 25 October 2008 - 09:16 PM

View Postteleute, on Oct 25 2008, 08:44 PM, said:

So does this contribution not link into the existing payment methods, then?  If I have a cc processor set up, when I'm creating an order with this contrib will I get the option for it to link to the cc processor to do the payment?  Or would I have to go separately and manually process the card?


You'll have to separately process the card.

#44   akyboy

akyboy
  • Members
  • 24 posts
  • Real Name:aki

Posted 26 October 2008 - 12:11 AM

View Postberthz, on Sep 30 2008, 08:41 AM, said:

I have installed this contrib, which I am sure works great. However when clicking on the Create button I get the following error:

Parse error: syntax error, unexpected T_REQUIRE in /home/sites/site4530/web/admin/create_order.php on line 5

Anyone knows what goes wrong here?

Thanks in advance!


View Postakyboy, on Oct 24 2008, 12:55 AM, said:

Hi

as soon as i click create button i get this message



how to fix this

tnx

Guys pls, its not just me that has problem :)
We need your help, if possible
Thanks in advance!


G

#45   Coopco

Coopco
  • Members
  • 9,557 posts
  • Real Name:Leslie Cooper
  • Gender:Male
  • Location:Sea Lake, Victoria, Australia

Posted 26 October 2008 - 12:29 AM

View PostCoopco, on Oct 25 2008, 05:16 PM, said:

What is on line 5
You can lead a horse to water but ........


Nevermind.


The Coopco Underwear Shop



If you live to be 100 years of age, that means you have lived for 36,525 days. Don't waste another, there aren't many left.

#46   akyboy

akyboy
  • Members
  • 24 posts
  • Real Name:aki

Posted 26 October 2008 - 03:00 AM

I guess i missed that post,.. sorry

Quote

<?php/*  $Id: create_order.php,v 1 2003/08/17 23:21:34 frankl Exp $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright © 2002 osCommerce  Released under the GNU General Public License*/

//http://localhost:8888/catalog/admin/create_order.php?Customer=2

  require('includes/application_top.php');  // #### Get Available Customers  $query = tep_db_query("select customers_id, customers_firstname, customers_lastname from " . TABLE_CUSTOMERS . " ORDER BY customers_lastname");  $result = $query;
  if (tep_db_num_rows($result) > 0){    // Query Successful    $SelectCustomerBox = "<select name='Customer'><option value=''>" . TEXT_SELECT_CUST . "</option>\n";
    while($db_Row = tep_db_fetch_array($result)){
      $SelectCustomerBox .= "<option value='" . $db_Row['customers_id'] . "'";
      if(isSet($HTTP_GET_VARS['Customer']) and $db_Row['customers_id']==$HTTP_GET_VARS['Customer']){
        $SelectCustomerBox .= " SELECTED ";        $SelectCustomerBox .= ">" . $db_Row['customers_lastname'] . " , " . $db_Row['customers_firstname'] . "</option>\n";      }else{
        $SelectCustomerBox .= ">" . $db_Row['customers_lastname'] . " , " . $db_Row['customers_firstname'] . "</option>\n";
      }    }
    $SelectCustomerBox .= "</select>\n";

this is the beginning of the file,... its little strange formatting i am not sure why, all other files on server show fine formatting.

I hope this can help

#47   Coopco

Coopco
  • Members
  • 9,557 posts
  • Real Name:Leslie Cooper
  • Gender:Male
  • Location:Sea Lake, Victoria, Australia

Posted 26 October 2008 - 03:09 AM

View Postakyboy, on Oct 26 2008, 02:00 PM, said:

I guess i missed that post,.. sorry



this is the beginning of the file,... its little strange formatting i am not sure why, all other files on server show fine formatting.

I hope this can help
It looks screwey, upload a fresh copy of the file.

Have you been using the osc file manager to corrupt your files?


The Coopco Underwear Shop



If you live to be 100 years of age, that means you have lived for 36,525 days. Don't waste another, there aren't many left.

#48   akyboy

akyboy
  • Members
  • 24 posts
  • Real Name:aki

Posted 26 October 2008 - 03:15 AM

i always go with flashfxp, and i did reupload them now and its same:( even when i extracts files to comp, when i open them in noepad they look same

#49   akyboy

akyboy
  • Members
  • 24 posts
  • Real Name:aki

Posted 26 October 2008 - 03:21 AM

yes,... that was problem,... formatting,... i don't know why it is like that,...

#50   akyboy

akyboy
  • Members
  • 24 posts
  • Real Name:aki

Posted 26 October 2008 - 03:29 AM

word pad will open files correctly,... i copied text from word pad and paste in files on server

#51   lildog

lildog
  • Members
  • 612 posts
  • Real Name:Todd
  • Gender:Male
  • Location:Sunny Florida

Posted 26 October 2008 - 11:57 PM

my best advice is to either re-upload the create_order.php OR VERY carefully check to make sure all the lines above the require on line 5? are correct....make sure the comment tags are intact and the opening php tag is there. That error comes about alot of times because of a very minor error like forgetting a semi colon at line's end somewhere near the error

lildog

#52   lildog

lildog
  • Members
  • 612 posts
  • Real Name:Todd
  • Gender:Male
  • Location:Sunny Florida

Posted 27 October 2008 - 12:00 AM

View Postlildog, on Oct 26 2008, 04:57 PM, said:

my best advice is to either re-upload the create_order.php OR VERY carefully check to make sure all the lines above the require on line 5? are correct....make sure the comment tags are intact and the opening php tag is there. That error comes about alot of times because of a very minor error like forgetting a semi colon at line's end somewhere near the error

lildog


oops this has already been addressed...thanks coopco

#53   lildog

lildog
  • Members
  • 612 posts
  • Real Name:Todd
  • Gender:Male
  • Location:Sunny Florida

Posted 27 October 2008 - 12:05 AM

Uh.. I hate to ask this but where do we stand with thtis contrib....everything good? MOST bugs worked out? I have WAY too many projects going and don't want to leave this contrib half useable.

lildog

#54   Coopco

Coopco
  • Members
  • 9,557 posts
  • Real Name:Leslie Cooper
  • Gender:Male
  • Location:Sea Lake, Victoria, Australia

Posted 27 October 2008 - 07:13 AM

View Postlildog, on Oct 27 2008, 11:05 AM, said:

Uh.. I hate to ask this but where do we stand with thtis contrib....everything good? MOST bugs worked out? I have WAY too many projects going and don't want to leave this contrib half useable.

lildog
Well, it works for me, but it is often hard to get an affirmative response from anyone.


The Coopco Underwear Shop



If you live to be 100 years of age, that means you have lived for 36,525 days. Don't waste another, there aren't many left.

#55   lildog

lildog
  • Members
  • 612 posts
  • Real Name:Todd
  • Gender:Male
  • Location:Sunny Florida

Posted 27 October 2008 - 10:12 PM

I added a files for admin id's and fixed a couple of language defines......

#56   KyleRobotN

KyleRobotN
  • Members
  • 3 posts
  • Real Name:Kyle

Posted 03 November 2008 - 11:06 PM

Hi, I just found this forum. Good stuff.

I was hoping someone could help me with this contribution.

Every time I attempt to add a new product and press "submit" on the popup window, it logs me out of oscommerce. Although the product does get added, it is annoying to have to log in every time.

Any idea?

Thank you,
Kyle

#57   stubbsy

stubbsy
  • Members
  • 544 posts
  • Real Name:dave stubbs
  • Gender:Male
  • Location:Lyme Regis

Posted 12 November 2008 - 01:03 PM

Hi there,

This is a weird one sorry.

I installed admin access rights on my site yesterday and although I've since uninstalled it, it has caused a conflict with the manual order maker.

When I first went to login the with the admin access contrbution my email address was already completed with my personal one dave@whatever.com. I didn't really think anything about it and proceeded to login with the details provided in the install.

I have since uninstalled that contribution for one reason or another overwriting all the files with me existing ones.

Whilst working on the site today I have found that if I create a new customer or create an order for an existing customer their email address is already completed with my one, dave@whatever.com even if the customer already has an email address in the system.

I should add that when editing a customer through the standard osc page their correct email appears, the incorrect one only appears on the create account page or the create order page

Anyone have any ideas what might be causing this?

Thanks

Dave

Edited by stubbsy, 12 November 2008 - 01:08 PM.


#58   stubbsy

stubbsy
  • Members
  • 544 posts
  • Real Name:dave stubbs
  • Gender:Male
  • Location:Lyme Regis

Posted 13 November 2008 - 07:37 PM

View Poststubbsy, on Nov 12 2008, 01:03 PM, said:

Hi there,

This is a weird one sorry.

I installed admin access rights on my site yesterday and although I've since uninstalled it, it has caused a conflict with the manual order maker.

When I first went to login the with the admin access contrbution my email address was already completed with my personal one dave@whatever.com. I didn't really think anything about it and proceeded to login with the details provided in the install.

I have since uninstalled that contribution for one reason or another overwriting all the files with me existing ones.

Whilst working on the site today I have found that if I create a new customer or create an order for an existing customer their email address is already completed with my one, dave@whatever.com even if the customer already has an email address in the system.

I should add that when editing a customer through the standard osc page their correct email appears, the incorrect one only appears on the create account page or the create order page

Anyone have any ideas what might be causing this?

Thanks

Dave

It turns out it was a cookie issue, nothing to do with this, sorry :)

#59   rustyload

rustyload
  • Members
  • 2 posts
  • Real Name:Jeremy Allen

Posted 16 November 2008 - 05:32 AM

I really liked this contribution.

I have tried to install v1.5.3 three times now and I can't seem to get it to work.  I had v1.5.1 installed and it worked great.  I then had to pull up a backup copy that didn't have the order maker already installed.  I tried the new v.3 and this is the error I get.

1054 - Unknown column 'a.customers_group_id' in 'field list'

select a.customers_group_id, a.customers_id, a.customers_firstname, a.customers_lastname, b.entry_company, b.entry_city, c.zone_code from customers AS a,
address_book AS b LEFT JOIN zones as c ON (b.entry_zone_id = c.zone_id) WHERE a.customers_default_address_id = b.address_book_id ORDER BY 
entry_company,customers_lastname

[TEP STOP]


Any ideas would be helpful.  Thanks.

#60   Coopco

Coopco
  • Members
  • 9,557 posts
  • Real Name:Leslie Cooper
  • Gender:Male
  • Location:Sea Lake, Victoria, Australia

Posted 16 November 2008 - 05:52 AM

View Postrustyload, on Nov 16 2008, 04:32 PM, said:

I really liked this contribution.

I have tried to install v1.5.3 three times now and I can't seem to get it to work.  I had v1.5.1 installed and it worked great.  I then had to pull up a backup copy that didn't have the order maker already installed.  I tried the new v.3 and this is the error I get.

1054 - Unknown column 'a.customers_group_id' in 'field list'

select a.customers_group_id, a.customers_id, a.customers_firstname, a.customers_lastname, b.entry_company, b.entry_city, c.zone_code from customers AS a,
address_book AS b LEFT JOIN zones as c ON (b.entry_zone_id = c.zone_id) WHERE a.customers_default_address_id = b.address_book_id ORDER BY 
entry_company,customers_lastname

[TEP STOP]


Any ideas would be helpful.  Thanks.

Why not just install Manual Order Maker v1.5.1


The Coopco Underwear Shop



If you live to be 100 years of age, that means you have lived for 36,525 days. Don't waste another, there aren't many left.