Search:

Type: Posts; User: tips007

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. v151 Re: Admin login, no error message, can't log in even the password is correct

    There's no problem with the front site, as a customer, i can create account, add products to cart, log into the account, confirm the order.
    the only problem is the admin login page, i can't log in...
  2. v151 Re: Admin login, no error message, can't log in even the password is correct

    i reset the admin password from phpmyadmin, setting the password to ''admin", i tried this before so i think there's no problem with the password
    in fact, to the admin login page, if you enter a...
  3. v151 Re: Admin login, no error message, can't log in even the password is correct

    oops, and
  4. v151 Re: Admin login, no error message, can't log in even the password is correct

    i tried this
    ADMIN/includes/application_top.php, define('DEBUG_AUTOLOAD', true);
    then i get the following errors on my admin login page, i also posted this on my previous post


    what does this...
  5. Replies
    6
    Views
    427

    v151 Re: Zen cart 151 + PHP 5.4 doesn't work

    i tried defining DEBUG to true, then i get the following errors



    what's this?
  6. v151 Re: Admin login, no error message, can't log in even the password is correct

    When i posted my previous post, i didn't realize that i may did use php 5.4, the site and admin worked, i just suddenly can't log in admin. yes i know how to reset admin password from sql, so i said...
  7. v151 Admin login, no error message, can't log in even the password is correct

    To log in admin, if i don't enter the username and password, it shows the error message defined by ERROR_WRONG_LOGIN
    if i enter the right username and wrong password, no error message, can't log in...
  8. Replies
    6
    Views
    427

    v151 Re: Zen cart 151 + PHP 5.4 doesn't work

    Is there any way to make me log in admin right now? a temporary method? I'm going to upgrade ZC later
  9. Replies
    6
    Views
    427

    v151 v151 + PHP 5.4 - my admin doesn't work

    my zen cart version is 151, after upgrading from php5.3 to php5.4, i can't access to my admin even the password is correct, no error message
    any ideas?
  10. v151 Re: $aaa = mysql_query($aaa_query) instead of while (!$aaa->EOF)

    sorry i forgot writing $aaa->MoveNext(); just now


    yes, Method A is good for zen cart and i use this method for many files for my zen cart,
    but for one of my files, i get an issue by this...
  11. v151 $aaa = mysql_query($aaa_query) instead of while (!$aaa->EOF)

    here are two methods i've tested successfully
    i wanna know if i use METHOD B, will i get any insecurity ?



    $aaa_query = ""select ...";

    METHOD A (zen cart default method)
  12. v151 Re: Get orders_products_id on account_history_info page

    <?php $order->products[$i]['id']; ?> displays the products_id next to each product
    i want to display the orders_products_id which is from the table zen_orders_products
    i add sql to header.php, then...
  13. v151 Get orders_products_id on account_history_info page

    on account_history_info page, i can get the products_id of each product ordered by using
    for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
    $order->products[$i]['id']
    }
    i also want to get...
  14. Replies
    0
    Views
    710

    v151 Salemaker not working

    i set the salemaker from admin,
    it displays on product listing page
    it displays on product info page
    but after i add the product to cart, it remains the original price,
    then i try to checkout,...
  15. Replies
    3
    Views
    689

    v151 Add store logo to paypal page

    when the customer redirected to paypal page, it displays my paypal email on the top of the paypal page,
    i find some sellers show their store logo on that page instead of the store owner's paypal...
  16. v151 Re: my function in folder extra_functions doesn't work

    i created a very simple code, such as

    $sql = "select * from " . zen_table_name. " where products_id='" . (int)$_GET['products_id'] . "' ";
    $my_query = $db->Execute($sql);
    $my_display =...
  17. v151 my function in folder extra_functions doesn't work

    to display some records from sql table, i created my function file named aaa_function.php
    if i put it to module folder, it works,

    but i need this function for many pages, so i put it to the...
  18. v151 Preview welcome email and order confirmation email

    i'm creating my own email template, i want to preview the email look from admin, but i don't find the button
    is there any easy way to preview the welcome email and order confirmation email?...
  19. Replies
    6
    Views
    710

    v151 Re: Send email in HTML format

    i haven't seen your link when i posted above :P
    now it works
    thank you
  20. Replies
    6
    Views
    710

    v151 Re: Send email in HTML format

    one of my language pack is downloaded here
    http://www.zen-cart.com/downloads.php?do=file&id=1110

    i'm using zen cart 1.51, it's utf8

    i guess it's caused by the problem unicode? english doesn't...
  21. Replies
    6
    Views
    710

    v151 Re: Send email in HTML format

    i did many tests, the emails always in format txt
    then i tried switching to another language, i found that all other languages get the same issue except english, so i guess i did the correct email...
  22. Replies
    6
    Views
    710

    v151 Send email in HTML format

    from admin email options, i set
    Use MIME HTML When Sending Emails to TRUE
    Email Admin Format? to HTML
    Email Admin Format? to TRUE

    from admin costomers, i set
    Email Format Pref: to HTML

    but...
  23. v150 Can't login to admin and sql password reset doesn't work

    i forgot my admin password,
    i went to phpmyadmin, changed admin_name to "admin", changed admin_pass to "351683ea4e19efe34874b501fdbf9792:9b"
    then i tried using the login name "admin" and the...
  24. v150 Change admin account will locked for a minimum of 30 minutes

    after i tried some failue tests to login to my admin, i get this:

    Important Notice: There have been multiple unsuccessful login attempts to your administrative account. For your protection and...
  25. v150 Display certain text in header only for homepage

    i use if ($this_is_home_page) for tpl_main_page.php, it works
    but when i try using it in tpl_header.php, it doesn't work
    is there any way to display certain text in header only for homepage?
  26. Replies
    2
    Views
    1,653

    v150 Re: How to get current language id

    thank you :smile:
  27. Replies
    2
    Views
    1,653

    v150 How to get current language id

    i want to show the current language id in main page,
    for example, if switch to language english, show the id "1",

    i tried this, but it doesn't work
    <?php echo $current_language_id; ?>

    any...
  28. Replies
    0
    Views
    403

    v150 Add a categories pull down menu

    i created an admin php file to display all my products names on one page in my admin

    i want to add a categories pull down menu, then i can view all products names on one page of certain category...
  29. Replies
    4
    Views
    624

    v150 Re: date accent problem

    i missed some codes, sorry
    it works now
    thanks
  30. Replies
    4
    Views
    624

    v150 Re: date accent problem

    my two sites (1.39 and 1.50) are on the same server, using almost the same file french.php
    the 1.39 site works correctly but the 1.50 site gets this issue, is it normal?
    or which code should i...
  31. Replies
    4
    Views
    624

    v150 Re: date accent problem

    by the way, all other contents display correct except the dates
  32. Replies
    4
    Views
    624

    v150 date accent problem

    i have 2 sites installed on the same server, one zen cart 1.39h and the other one zen cart 1.50
    there's no problem of zen 1.39h, but i get the date accent problem on zen 1.50, it should been...
  33. Replies
    6
    Views
    1,162

    Re: Dynamic Filters addon - example sites?

    the filter on this site looks so nice
    but the method is not easy for each attribute to be modified, added or deleted
    is there a better way to do this to replace the read only attributes?
    for...
  34. v150 Re: Is the undefined url in admin who's online normal ?

    thank you
  35. v150 Is the undefined url in admin who's online normal ?

    these days, when i check the admin who's online, sometimes i find the url
    /undefined

    is this normal ?
    i haven't found this url in who's online before
  36. v150 Print CSS only for customer account and account history page?

    i don't want to load the file print_stylesheet.css except customer account and account history page, what do i make this done?
  37. v150 Re: customer session issue, 1.50 bug or i missed something ?

    i install the same addons to the sites 1.39 (zencart default template), none problem. (including image handler for 1.39)
    but all the sites 1.50 (zencart default template) get the same issue as i...
  38. v150 Re: Zen cart customer session issue, 1.50 bug or i missed something ?

    anyone could tell me what MAY cause this error? all my sites 1.50 get this session issue
    customer session expires, it should been redirected to time_out page, but it's redirected to page_not_found...
  39. v150 customer session issue, 1.50 bug or i missed something ?

    i installed 1.39 for a site, none issue of session
    but for the sites installed zen cart 1.50, they get the same session issue

    after the customer's session getting expired,
    in 1.39, it is...
  40. v150 Re: How to set Title different as Alt for zen_image?

    i was told that is not good for seo to use the same title as alt ?
  41. v150 How to set Title different as Alt for zen_image?

    with zen_image function, i get the same title and alt: <img title="my_alt" alt="my_alt" src="my_image.jpg">
    but i want to set it as: <img title="my_title" alt="my_alt" src="my_image.jpg">
    what do i...
  42. Replies
    1
    Views
    428

    v150 Month names not appearing correctly

    i installed a language pack, it works well except the month names in Admin->Customers->Orders
    Date Purchased: Friday 19 October 2012

    i don't know why it always keeps "Friday" and "October" even...
  43. Replies
    6
    Views
    588

    v150 Re: Get max value from attributes values

    you are a genius!
    thank you
  44. Replies
    6
    Views
    588

    v150 Re: Get max value from attributes values

    anyone?
  45. Replies
    6
    Views
    588

    v150 Re: Get max value from attributes values

    use the code below


    <? php
    for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
    for ($j=0, $n2=sizeof($order->products[$i]['attributes']); $j<$n2; $j++) {
    echo...
  46. Replies
    6
    Views
    588

    v150 Re: Get max value from attributes values

    each product has only one attribute, all the attribute values are numbers

    ex.
    product A with attribute value 6
    product B with attribute value 3
    product C with attribute value 8

    if i add <?...
  47. Replies
    6
    Views
    588

    v150 Get max value from attributes values

    hello
    in checkout_confirmation file, i find the code nl2br(zen_output_string_protected($order->products[$i]['attributes'][$j]['value']))
    i want to use max() for my attributes values (all my...
Results 1 to 47 of 52
Page 1 of 2 1 2
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR