Jump to content

cubehelper

Member
  • Posts

    16
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

cubehelper's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Looks like the latest Firefox is ok but IE 11, Chrome and Edge I am still getting the same error after ctrl F5 and clear cache. Usually the cookie is not able to be set due to javascript is not turned on or security feature but all my browsers the javascript is enabled.
  2. I can't login and i see the error over again
  3. Hi, I am running 6.0.6 on my Windows 10 PC and I getting this error trying to logon. After re-install, the error went away but next day, this error came back. Security Alert: Possible Cross-Site Request Forgery (CSRF) or browser back button used. Anyone know how to avoid this error or disable it locally? Thanks, -John
  4. Thank you bsmither! After fixing up my php.ini file by changing session.cookie_path = "/", it working fine now.
  5. I tried http:// REMOVED /setup/index.php?DEBUG but don't see any error or debug message. The screen just post to itself. Please advise
  6. Hi, It's a linux server. here is the info, http:// REMOVED /store5/phpinfo.php What is the exact syntax to add in debug? I tried inserting in ?debug after <?php but got an error: Parse error: syntax error, unexpected '?' in /home/usever81/public_html/cubehelper/store5/setup/index.php on line 3 Thanks
  7. Hi, I tried to install the v5.1.5 on my local PC and it works fine but when I tried to install it on the server and click on Continue, it doesn't proceed on. I don't see any type of error message. Did someone know what's going on? You can try it here, http:// REMOVED /store5/setup/index.php Thanks
  8. Al, I'm doing development on my localhost. Does localhost consider as an installation site according to your license requirement? Thanks, -John
  9. I started my trial today, so I know my trial period isn't up. Why am I getting this error and how can I fix it? EDIT: I fixed the above error but now I've got this message: I've submitted a ticket to support but if anyone has any idea of how to fix this then please spill the beans. Thanks. I got the same error. License key error 4 and I'm a customer with paid version of v4.0 It was working fine the day before. Thanks
  10. Yes, this is a brand new installation of v4.0. I'm using MySql version 5.0.27-community-nt
  11. Hello, I tried to add a new category by entering a category name and description. I got the following error: MySQL Error Occured Error Message: 1366: Incorrect decimal value: '' for column 'per_ship' at row 1 There are no place to set the fields: per_ship, item_ship, item_int_ship and per_int_ship. I modifed the admin/source/categories/index.inc.php to bypass this issue: $record["per_ship"] = $db->mySQLSafe( !isset($_POST['per_ship']) ? 0.0 : $_POST['per_ship']); $record["item_ship"] = $db->mySQLSafe( !isset($_POST['item_ship']) ? 0.0 : $_POST['item_ship']); $record["item_int_ship"] = $db->mySQLSafe( !isset($_POST['item_int_ship']) ? 0.0 : $_POST['item_int_ship']); $record["per_int_ship"] = $db->mySQLSafe( !isset($_POST['per_int_ship']) ? 0.0 : $_POST['per_int_ship']); Please advise
  12. Hello, I'm getting the following error when adding a new product, MySQL Error Occured Error Message: 1264: Out of range value adjusted for column 'stockWarn' at row 1 There is no field to select regarding the stockWarn in the product page. I had to do the following hack to admin\sources\products\index.inc.php file to bypass this issue, $record["stockWarn"] = $db->mySQLSafe( !isset($_POST['stockWarn']) ? 0 : $_POST['stockWarn']); Please advise. Thanks, -Cubehelper
  13. Hello, I'm currently using MySQL 5.0.27 and it's not allowing the TEXT field to default to ''. As a result, the following tables doesn't install: CubeCart_sessions CubeCart_cats_lang CubeCart_category CubeCart_order_inv Two questions: 1. Does the TEXT fields in the above tables have to be NOT NULL DEFAULT ''? 2. Is there a way to change a setting in mySQL to accept '' for TEXT field? I tried to google this but no luck. Thanks, Cubehelper
  14. I was able to figure out the problem. The problem is some of tables were not installed by the installation script. Any tables with Text columns default to '' caused a problem because mySQL is complaining that you can't default to blank for Text field. I got this error when I tried to manuallly the tables like cubecart_session table. I have mysql version 5.0.27 installed on my Windows Server. My site issue now is I can't get into the admin tool. I got 404 error. Any ideas? Thanks, -John
  15. I just installed the latest version of beta but when I tried to access the home page, I got the following error: MySQL Error Occured Error Message: 1146: Table 'cubecart_v421.cubecart_sessions' doesn't exist SQL: SELECT sessId FROM CubeCart_sessions WHERE sessId='' Doesn't this table suppose to be created during installation? -John Does anyone else have this issue? -John
×
×
  • Create New...