Show Posts


Messages - abolabo

Pages: 1 ... 135 136 [137] 138 139 ... 146
2041
Quote
it depends on upload_max_size directive in your php.ini. Try to read about this here .php.net/manual/en/ini.core.php#ini.upload-max-filesize
Also file_uploads and post_max_size. If you don't want to digg into this - ask your hosting provider or try to find phpinfo page in your CPanel and look there.
If you fill files manually, for ex via ftp, filesize have no limitation.

Well,
      I am Fedup With The Image Restriction " Error: File is too big  " .I See That You Have a PHP.ini file in the main root directory of abantecart .Is This File Not Used And Overrides The php.ini file at hosting ? . Are we suppose to update that file or what even 66kb or more then12 kb files are not being uploaded man i hate this  .

PS : sorry but i am having a hard time here with your image rl

Please check menu system-settings->system item
"Resource Library Upload Max File Size, kB"
You will see both limits of size there.. your config limit and  upload_max_size at right of it.

2042
Support / Re: upload images problem
« on: December 30, 2012, 07:20:00 PM »
i have the same problem... i am trying the abantecart and when i try to upload an image, i get the same icon and the image doesn't appear... how can i fix that??

Thanks

 replace resource_manager.php by this https://github.com/abantecart/abantecart-src/blob/1.1.3/public_html/core/lib/resource_manager.php 

2043
General Support / Re: How to change order number (ID)?
« on: December 30, 2012, 07:08:20 PM »
Thanks for prompt reply. That's something new for me. :-[  I'll try to learn.

It might be useful if we can setup the starting order ID in contorl panel like the cart I used before. We may need some numbers as prefix, for example, use 100xxxx for one store, 200xxxx for another store, or simply we don't want the order number start from a 2-digit number.
Hope to see this feature in a later version.

you mean "stores" as different hosts or 2 stores on the same engine and same host(multistore)? For multistore described feature not needed because every order have store_id. You can separate orders easy.

2044
General Support / Re: How to change order number (ID)?
« on: December 29, 2012, 10:46:49 AM »
you need to set new autoincrement value for order table.
for ex your last order_id is 100

run this on your mysql
ALTER TABLE `orders` AUTO_INCREMENT = 101;

2045
General Support / Re: can't view web site or admin
« on: December 29, 2012, 07:50:07 AM »
OK, now my error logs show the following:

2012-12-27 5:40:24 - App Warning:  Warning: Trying to access by unconfigured or unknown domain. Possibly missing or incorrect store URL set up. Loading default store configuration in /home/kbmtradi/public_html/core/lib/config.php on line 142
2012-12-27 12:02:39 - App Error:  Error: Error in data of page with controller: 'pages/content/content'. Please check for key_value present where key_param was set in /home/kbmtradi/public_html/core/engine/layout.php on line 145
2012-12-28 17:36:25 - App Error:  Could not load language  from file ""! in /home/kbmtradi/public_html/core/lib/language.php on line 530
2012-12-28 17:36:25 - database error:  Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1<br />Error No: 1064<br />INSERT INTO eph_language_definitions (language_id,block,section,language_key,language_value,create_date) VALUES  in <b>/home/kbmtradi/public_html/core/database/mysql.php</b> on line <b>86</b>

Please help as I really don't want the hassle of having to set up all over again with another cart!!  :(

Thanks,
Michelle

hello.
1. You still not fix your settings as i wrote. Change your store url in menu system->settings on correct.
2. To define what's wrong i need to see you sql-dump. Please make backup in menu->system->data->backup/restore and send me via PM.
4. Do replace content file /core/engine/language.php by this https://github.com/abantecart/abantecart-src/blob/1.1.3/public_html/core/engine/language.php. After that let me know is error about loading language disappeared.



2046
Support / Re: upload images problem
« on: December 23, 2012, 02:56:25 PM »
it's a bug related to translation settings.
Bugfix now in git. Release will be soon.
Thank you.

2047
General Support / Re: cant change text in language definitions
« on: December 21, 2012, 03:16:07 AM »
so..we found that bug.
Please replace file /core/lib/language_manager.php by file from attachment
Thank you.

2048
General Support / Re: cant change text in language definitions
« on: December 20, 2012, 09:44:35 AM »
yes I have tried to input new text 3 or 4 times and each time the error comes up again. I have also had the dashboad in admin dissapear a couple of times when i've been inputting sub categories. It comes back if i close the  window and log in again. Not a biggie but a bit annoying.

hmm...
What is extension default_bank_transfer? are you created it?

About sql error. Table language_definitions have unique index
Code: [Select]
  UNIQUE KEY `lang_definition_index` (`section`,`block`,`language_id`,`language_key`)When you tried to update some row with value that already exists sql will give you error.
buy the way, i don't see "section" in your error sql query condition.
look
Code: [Select]
UPDATE language_definitions
SET section = '0',
         block = 'default_bank_transfer_default_bank_transfer',
         language_key = 'text_payment',
         language_value = 'Your order will not ship until we receive payment. Thank you'
WHERE block = 'default_bank_transfer_default_bank_transfer' AND language_key = 'text_payment' AND language_id = '1'
You trying to set section = '0' for all records with  block = 'default_bank_transfer_default_bank_transfer' AND language_key = 'text_payment' AND language_id = '1' (!)
Please check if row with block = 'default_bank_transfer_default_bank_transfer' AND language_key = 'text_payment' AND language_id = '1' only one in your language_definitions table.

i'm not sure but it looks like partial upgrage of abantecart. In version 1.1.2 sql query for language definitions runs by language_manager class

if you extension written by you, you have xml language files in language folder inside extension dir... for ex. extensions/default_bank_transfer/storefront/language/english/
Easiest way is deleting all rows with block='default_bank_transfer_default_bank_transfer' and clearing cache.
After first call for language of default_bank_transfer extension engine refill definitions into language_definitions table.
And then try to edit.

2049
General Support / Re: cant change text in language definitions
« on: December 20, 2012, 03:50:07 AM »
hi, sorry but i don't know what means?

i mean did you tried to edit definition twice?
i note that on second attempt error disappear.

2050
General Support / Re: cant change text in language definitions
« on: December 18, 2012, 07:58:19 AM »
hello.
Did you tried to repeat edition?

2051
Support / Re: upload images problem
« on: December 16, 2012, 05:19:57 PM »
did you check directory permissions for public_html/resources?
do you see new files after upload in directory /public_html/resources/image? what about directory size after upload?

2052
Support / Re: upload images problem
« on: December 16, 2012, 02:53:47 PM »
Hi.
Go to product's edit page, tab media. Click + or any image of product. When dialog of resource library opened click tab with product name.
Do you see all images of product?

2053
Support / Re: Fedex Extension does not work.
« on: December 13, 2012, 05:22:34 AM »
Guys.
Unfortunally i not found working solution on php which works with fedex api except soap php-library.
well.. probably we need to  move fedex-extension to our extension store to stay AbanteCart requirements right  :)
we'll thinking about it.

2054
thanks..
but I use YMAIL.. not GMAIL...

and,,
SMPT username and SMPT password???

so.. what's problem?:)
use hostname: ssl://smtp.mail.yahoo.com
port: 465
and your username(email) and password as smtp username/pass

2055
General Discussion / Re: error log
« on: December 13, 2012, 05:09:13 AM »
after that,,I read some text like this,,

/....../....../public_html/toko-online/core/lib/menu_control_storefront.php</b> on line <b>24</b>

so,,what must I do???  :'(
brrr...where did you read this?
Please attach your error.log to post.

Pages: 1 ... 135 136 [137] 138 139 ... 146

Powered by SMFPacks Social Login Mod