PDOException
PHP 8.1.33
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'lewisrose_summit_v10.posts' doesn't exist
 / var / www / vhosts / lewisandroseinteriors.com / httpdocs / app / classes / db.php: 77
				case is_null($value):
					$type = PDO::PARAM_NULL;
				break;
				default:
					$type = PDO::PARAM_STR;
			}
		}
		$this->stmt->bindValue($param, $value, $type);
	}

	/*
	* Execute
	* execute the prepared statement
	*/
	public function execute() {
		return $this->stmt->execute();
	}

	/*
	* Result Set
	* Returns an array of result set rows
	*/
	public function results() {
		$this->execute();
		return $this->stmt->fetchAll(PDO::FETCH_ASSOC);
	}

	/*
	* Single
	* Returns a single record from the database

Request

https://lewisandroseinteriors.com/sitemap.xml
GET
curl "https://lewisandroseinteriors.com/sitemap.xml" \
   -X GET \
   -H 'priority: u=0, i' \
   -H 'accept-encoding: gzip, deflate, br, zstd' \
   -H 'sec-fetch-dest: document' \
   -H 'sec-fetch-user: ?1' \
   -H 'sec-fetch-mode: navigate' \
   -H 'sec-fetch-site: none' \
   -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7' \
   -H 'user-agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)' \
   -H 'upgrade-insecure-requests: 1' \
   -H 'sec-ch-ua-platform: "Windows"' \
   -H 'sec-ch-ua-mobile: ?0' \
   -H 'sec-ch-ua: "Chromium";v="130", "HeadlessChrome";v="130", "Not?A_Brand";v="99"' \
   -H 'cache-control: no-cache' \
   -H 'pragma: no-cache' \
   -H 'connection: close' \
   -H 'x-accel-internal: /internal-nginx-static-location' \
   -H 'x-real-ip: 216.73.216.186' \
   -H 'host: lewisandroseinteriors.com';

Headers

priority
u=0, i
accept-encoding
gzip, deflate, br, zstd
sec-fetch-dest
document
sec-fetch-user
?1
sec-fetch-mode
navigate
sec-fetch-site
none
accept
text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
user-agent
Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
upgrade-insecure-requests
1
sec-ch-ua-platform
"Windows"
sec-ch-ua-mobile
?0
sec-ch-ua
"Chromium";v="130", "HeadlessChrome";v="130", "Not?A_Brand";v="99"
cache-control
no-cache
pragma
no-cache
connection
close
x-accel-internal
/internal-nginx-static-location
x-real-ip
216.73.216.186
host
lewisandroseinteriors.com

Body

[]

App

Context

Versions

Php Version
8.1.33