

olef
Members-
Content count
14 -
Joined
-
Last visited
Everything posted by olef
-
I'm running this great mod, and have some of the same problems with the admin-section. But I have encountered antoher Issue: When user put items in the Shopping-basket they are shown correctly. When the users log off and on again, the shopping-basket is empty. Have checked the database, and the records are stored correctly. Does anyone have an Idea to get this to function ?
-
I had to move my OSCommerce to a Windows 2008 server (+PHP5) at the ISP, and only have the possibility to run with Register_Globals = off I have installed the addon Register_Globals_Off_Workaround (http://addons.oscommerce.com/info/5729), and everything is running smoothly, except one thing: I'm using the Paypal-addon: PayPal EC for OSCommerce V2.24 (http://addons.oscommerce.com/info/5687), and it just gives me one issue: When redirecting to Paypal and the loading page (ppeb.php) shows: "PayPal server is processing, please wait..." , it also writes: . Hope someone have a hint to make the warning disappear.
-
Have installed this great contribution, and is in general working fine. I just hav an issue concerning the box/file-permissions. I have created a new admin-group which permissions will be only to access Orders. I have checked the follwing boxes/files: Unchecked Customers Unchecked customers.php Checked Orders.php But when the users login, they get an error on missing permissions. When I change the boxes/files to: Checked Customers Unchecked customers.php Checked Orders.php then the users get access to Orders, BUT they can also edit/delete the customers when clicking on the Customers-Box (This displays as default the customers.php). Does anyone know a workaround, so it is not possible to view the default-files for the boxes (Categories, Customers, Taxes etc) Thanks in advance
-
Sorry Chris, havn't read the entire Forum. Have solved it as described in Q&A
-
PDF Customer Invoice V1.2: I'm having a problem with the Invoice- and Deliver Addresses on the PDF-Invoice. The State is written OK on the PDF Invoice, but only the first letter of the Country is written. ex: Jylland, Danmark is written as Jylland, D When viewing the normal OSCommerce Invoice the State and Country is Written OK. Hope somebody can help
-
I'm trying to use the pdfinvoice email attatchment together with Paypal Express Checkout, but I can't get it to work. Have tried to insert the following in the Paypal Express file ppeb.php: // BEGIN added for pdfinvoice email attachment: // Next line removed in original file // tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); if (PDF_INVOICE_EMAIL_ATTACHMENT == 'true') { // customers will be logged in so usual security checks of pdfinvoice.php will be met. All we do is set the order_id for pdfinvoice.php to pick up $HTTP_GET_VARS['order_id'] = $insert_id; // set stream mode $stream = true; // include pdfinvoice.php include_once(FILENAME_CUSTOMER_PDF); // add text to email informing customer a pdf invoice copy has been attached: $email_order .= PDF_INVOICE_ATTACHED ."\n\n"; // send email with pdf invoice attached. Check to make sure pdfinvoice.php returns some data, else send standard email // note $order object reinstantiated by inclusion of pdfinvoice.php hence customer['name'] if (tep_not_null($pdf_data)) { tep_mail_string_attachment($order->customer['name'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, $pdf_data, $file_name); } else { tep_mail($order->customer['name'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); } } else { // send vanilla e-mail - if email attachment option is false tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); } // END added for pdfinvoice email attachment: /// --- end ---- checkout process email function Hope somebody have an Idea
-
Sorru, havn't seen ver 2.2.3, after installing this it seems to work fine, Thanks a lot !!!
-
Hi Have the same Problem !!
-
Have solved the first Issue: Only send Ivoice-attachment if: Only display Invoice for delivered orders = true , and Attach PDF invoce to Customers Order Confirmation mail = true, In checkout_process.php, the following is changed: From: if (PDF_INVOICE_EMAIL_ATTACHMENT == 'true' ) to: if (PDF_INVOICE_EMAIL_ATTACHMENT == 'true' and DISPLAY_PDF_DELIVERED_ONLY == 'false' ) But my missing PHP-skills haven't come up with a solution how to attach the PDF-invoice to the mails send from the Admin-module, when status on the Order is "delivered". Have tried in a way like in the checkout_process. Hope someone can bring me on the right Track.
-
Contribution for email attachment Have installed the Contribution for attaching the pdf-file to Order-Confirmation, and it works fíne. But it will be nice if it takes in advance the following parameter: "Only display invoice for delivered orders?", so if it is TRUE, the PDF-file is then first attached when the Order is delivered, and when set to FALSE, the PDF-file is then attached as now, when the Order-Confirmation is sent. Does somebody have a suggestion to have the Contribution to work this way ? :blush:
-
Thanks Chris23, it solved the Issue !!! :rolleyes: :rolleyes:
-
Have installed this great contribution. I'm just having a " "-issue, which I can't solve myself: In the created PDf-file, all Currency-Values are surrounded with " " t.ex: Under column: Total(ex) DKK 2.855,00 This disturbes the formatting in the PDF-file. Hope someone can help me where to change this formatting of all the Currency-Values.