The default language of any content posted is English. Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the
Help page. Found a dead link? Use the report button!
After you have applied the SQL query, if you are still encountering a license error, please follow these steps:
1. Go to cPanel.
2. Access the following folders:
- `storage/framework/cache`
- `storage/framework/sessions`
- `storage/framework/testing`
- `storage/framework/views`
3. Delete all the content inside each of these folders.
4. Refresh the page.
After you have applied the SQL query, if you are still encountering a license error, please follow these steps:
1. Go to cPanel.
2. Access the following folders:
- `storage/framework/cache`
- `storage/framework/sessions`
- `storage/framework/testing`
- `storage/framework/views`
3. Delete all the content inside each of these folders.
4. Refresh the page.
are you doing the cache clear? domain/cache-clear-menu domain/cache-clear/// nvrmind looks like tou fixed but i was still on previous page. awesome its all good
I applied these but now getting another error "survey' doesn't exist (Connection: mysql, SQL: select * from `survey` where `status` = 1 limit 1)"View attachment 51605"
I applied these but now getting another error "survey' doesn't exist (Connection: mysql, SQL: select * from `survey` where `status` = 1 limit 1)"View attachment 51605"
After you have applied the SQL query, if you are still encountering a license error, please follow these steps:
1. Go to cPanel.
2. Access the following folders:
- `storage/framework/cache`
- `storage/framework/sessions`
- `storage/framework/testing`
- `storage/framework/views`
3. Delete all the content inside each of these folders.
4. Refresh the page.
After you have applied the SQL query, if you are still encountering a license error, please follow these steps:
1. Go to cPanel.
2. Access the following folders:
- `storage/framework/cache`
- `storage/framework/sessions`
- `storage/framework/testing`
- `storage/framework/views`
3. Delete all the content inside each of these folders.
4. Refresh the page.
I applied these but now getting another error "survey' doesn't exist (Connection: mysql, SQL: select * from `survey` where `status` = 1 limit 1)"View attachment 51605"
CREATE TABLE IF NOT EXISTS `survey` (
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
`description` TEXT NULL,
`background_color` VARCHAR(255) NULL,
`text_color` VARCHAR(255) NULL,
`status` BOOLEAN NOT NULL DEFAULT TRUE,
`created_at` TIMESTAMP NULL DEFAULT NULL,
`updated_at` TIMESTAMP NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
CREATE TABLE IF NOT EXISTS `survey_user` (
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
`user_id` INT NOT NULL,
`survey_id` INT NOT NULL,
`point` INT NOT NULL,
`created_at` TIMESTAMP NULL DEFAULT NULL,
`updated_at` TIMESTAMP NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;