STANDALONE Quasar Smartphone1.2.2

CR LEAKS

FOUNDER
Mar 25, 2022
1,001
4,941
113
Credits
8,828
Hello, friends. As I mentioned to a lot of people earlier and promised to leak this uniquely fantastic phone, qs-smartphone and to be fixed without bugs or errors, well here it is, the version of the phone is 1.2.2, it's not the latest but it will work for a lot of people, for a lot of servers.

Phone is only been fully tested on ESX and I don't know if it will work the same in QBCore.

1706593209832.png
Content locked


The error message indicates that the DELETE query is failing because there is no phone column in the phone_messages table of your database.
Here’s the part of the error that’s most important:

Code:
Please, Log in or Register to view codes content!

This suggests that your code is trying to delete records from phone_messages where a number or phone matches the given parameters, but the phone_messages table does not have a column named phone.To fix this, you have to do one of the following:
  1. Correct the Column Name: If the column should be something else (like perhaps phone_number), update the query to use the correct column name.

  1. Update the Database Schema: If the phone column should exist, you'll need to update your database schema to include it. This would typically be done with an ALTER TABLE statement to add the new column.

  1. Update the Logic: If the phone column was removed intentionally and you don't need to filter by this column anymore, just remove the OR phone = ? from the query.
Without knowing the exact structure of your database, I can't give a precise solution, but this should guide you in the right direction. If you have access to the database schema, you should verify the columns of the phone_messages table and adjust the query accordingly.