Skip to content
BigBoxCode
  • Home
  • Fundamental
    • Design Patterns
    • Design Principles
    • Data Structures
  • Programming
    • JavaScript Programming
    • Laravel Framework
    • Server-Sent Events(SSE)
    • Python Programming
    • PHP Programming
  • Database
    • MySQL
    • Redis
    • MongoDB
  • DevOps
    • Linux Fundamentals
    • Linux Commands
    • Docker
  • All Tutorials

ERROR

MySQL: Error 1118 – Row size too large

July 13, 2024August 18, 2022 by BigBoxCode

Error Number: 1118; Error Message: Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs.

Categories MySQL Tags Database, ERROR, SQL Leave a comment

JavaScript: [Uncaught SyntaxError] Unexpected token o in JSON at position 1

July 13, 2024July 21, 2022 by BigBoxCode

The data you are trying to parse in JavaScript is already a JavaScript Object. When the JSON.parse(data) tries to parse a string to JSON, it expects a string. And it is getting a JSON object already, which has the “o” (from the “object”), so JavaScript can not parse it.

Categories JavaScript Tags ERROR Leave a comment

MySQL: Error 1153 – Got a packet bigger than ‘max_allowed_packet’ bytes

July 13, 2024May 13, 2022 by BigBoxCode

If data sent to MySQL is larger than “max_allowed_packet” then the request fails. Increase the value of “max_allowed_packet“ to fix this.

Categories MySQL Tags Database, ERROR, SQL Leave a comment

Nginx: Error 413 – Request Entity Too Large

July 8, 2024February 2, 2020 by BigBoxCode

I have installed Nginx on one of my servers. The target was to run a blog there. After everything was set up, the blog was running, but I faced a problem while uploading a file.The server was returning an Nginx error – 413 – Request Entity Too Large.

Categories Nginx Tags ERROR Leave a comment

Issue: node package (in windows) is not recognized as an internal or external command, operable program or batch file

July 8, 2024February 2, 2020 by BigBoxCode

Solution for Issue: node package (in Windows) is not recognized as an internal or external command, operable program or batch file

Categories NodeJS Tags ERROR, Windows 2 Comments

MySQL: Error 1045 – Access denied for user

July 13, 2024February 2, 2020 by BigBoxCode

In this article, we are going to create a new MySQL user and discuss all related aspects of it. And in the process, we will solve MySQL Error 1045 (Access denied for user).

Categories MySQL Tags Database, ERROR, SQL 2 Comments
  • Tutorials
  • Design Patterns [classic/core patterns for OOP]
  • Design Principles
  • Data Structures
  • Server-Sent Events(SSE)
  • MySQL Tutorials
  • Redis Tutorials
  • MongoDB Tutorials
  • JavaScript Programming
  • PHP Programming
  • Laravel Framework
  • Python Programming

Sponsors

  • About
  • Contact
  • Privacy Policy
  • Disclaimer
  • All Tutorials
  • Sitemap
  • Resources
  • RSS Feed
  • GitHub
  • Linkedin
  • Youtube
© 2025 BigBoxCode