Get access to your Orders, Wishlist and Recommendations
Get access to your Orders, Wishlist and Recommendations
1.Order Confirmation:
We will intimate you through email once you order online. In case you face any difficulty, please contact our helpdesk number +91 9205329737 or email us at support@sambalpuribazar.com.
2.Shipment of Order:
As we exclusively source your order from the master-craftsmen from Odisha, the standard delivery time is 7 days from the date of placing order online. However, the delivery time may vary based on your location and availability of stock which will be notified to you over email on order confirmation.
3.Delivery of your Order:
Our sole endeavor is to deliver your dream product at the minimum possible time and in most of the cases you will receive your order earlier than the estimated time shown in the product page. Please note that the exact transit and delivery time is location dependent.
4.Delivery Charges:
You will be qualified for a free delivery for an order amount above Rs. 1000. You just have to pay an additional amount of Rs. 75/- for order amount less than Rs. 1000.
5.Tracking your Order:
We know how eager you are to receive your order. Just click the “Track Order” button on our website after logging in. Alternatively, the email you receive after your order gets shipped, contains a “Tracking Number” along with the details of our delivery partner.
6.Customer Care:
We will keep on notifying you over email updating you about your order delivery status. Our Customer Care team are always at your service to provide you with an wonderful online shopping experience. Just dial +91 9205329737 (Mon-Sat 10.00 am to 6.00 pm) or write to us at support@sambalpuribazar.com.
7.Bulk Orders:
Have a Marriage or Celebration ahead. Your online mega-store is here. No need to waste time in cloth stores and traffic hassle, when it can be done at ease from your drawing room. We will be happy to receive bulk order from you at bulk@sambalpuribazar.com or place your order using our customer care number +91 9205329737.
8.Customization:
We value your wearing preferences. Some of our products can be customized to suit your taste. Contact Customer Care.
9.Received a Damaged Product:
Don’t worry. We maintain a high quality check procedure before shipping your order. Very rarely, if you have received a damaged product, just initiate a return request by writing us at support@sambalpuribazar.com and we will replace your order with no extra cost.
10.Delay in Delivery:
While we always strive to deliver you on time; sometimes for reasons beyond our control, delays occur. The time and date of delivery shown in the product page of the website is indicative only. In case the product is out-of-stock or there is unusual delay in delivering the order; we will notify you in over email and keep on updating you. Sometimes we can fulfill a part of your order and refund another part. We will appreciate your patience in all such cases and no cancellation request, refund or exchange request will be entertained.
* * @param string $path * @return string */ public function hash($path) { return md5_file($path); } /** * Write the contents of a file. * * @param string $path * @param string $contents * @param bool $lock * @return int */ public function put($path, $contents, $lock = false) { return file_put_contents($path, $contents, $lock ? LOCK_EX : 0); } /** * Write the contents of a file, replacing it atomically if it already exists. * * @param string $path * @param string $content * @return void */ public function replace($path, $content) { // If the path already exists and is a symlink, get the real path... clearstatcache(true, $path); $path = realpath($path) ?: $path; $tempPath = tempnam(dirname($path), basename($path)); // Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600... chmod($tempPath, 0777 - umask());
"file_put_contents(/home/sambalpu/public_html/storage/framework/sessions/6fwBOKrHUG4BGGnzCqxCSm3us6YGTuaVXftZlARE): failed to open stream: Disk quota exceeded"
* * @param string $path * @return string */ public function hash($path) { return md5_file($path); } /** * Write the contents of a file. * * @param string $path * @param string $contents * @param bool $lock * @return int */ public function put($path, $contents, $lock = false) { return file_put_contents($path, $contents, $lock ? LOCK_EX : 0); } /** * Write the contents of a file, replacing it atomically if it already exists. * * @param string $path * @param string $content * @return void */ public function replace($path, $content) { // If the path already exists and is a symlink, get the real path... clearstatcache(true, $path); $path = realpath($path) ?: $path; $tempPath = tempnam(dirname($path), basename($path)); // Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600... chmod($tempPath, 0777 - umask());
/** * {@inheritdoc} */ public function read($sessionId) { if ($this->files->isFile($path = $this->path.'/'.$sessionId)) { if ($this->files->lastModified($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) { return $this->files->sharedGet($path); } } return ''; } /** * {@inheritdoc} */ public function write($sessionId, $data) { $this->files->put($this->path.'/'.$sessionId, $data, true); return true; } /** * {@inheritdoc} */ public function destroy($sessionId) { $this->files->delete($this->path.'/'.$sessionId); return true; } /** * {@inheritdoc} */ public function gc($lifetime) { $files = Finder::create()
* * @param string $data * @return string */ protected function prepareForUnserialize($data) { return $data; } /** * Save the session data to storage. * * @return bool */ public function save() { $this->ageFlashData(); $this->handler->write($this->getId(), $this->prepareForStorage( serialize($this->attributes) )); $this->started = false; } /** * Prepare the serialized session data for storage. * * @param string $data * @return string */ protected function prepareForStorage($data) { return $data; } /** * Age the flash data for the session. * * @return void
if ($this->sessionConfigured()) { $this->storeCurrentUrl($request, $session); $this->addCookieToResponse($response, $session); } return $response; } /** * Perform any final actions for the request lifecycle. * * @param \Illuminate\Http\Request $request * @param \Symfony\Component\HttpFoundation\Response $response * @return void */ public function terminate($request, $response) { if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) { $this->manager->driver()->save(); } } /** * Start the session for the given request. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Contracts\Session\Session */ protected function startSession(Request $request) { return tap($this->getSession($request), function ($session) use ($request) { $session->setRequestOnHandler($request); $session->start(); }); } /** * Get the session implementation from the manager.
* @return void */ protected function terminateMiddleware($request, $response) { $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge( $this->gatherRouteMiddleware($request), $this->middleware ); foreach ($middlewares as $middleware) { if (! is_string($middleware)) { continue; } [$name] = $this->parseMiddleware($middleware); $instance = $this->app->make($name); if (method_exists($instance, 'terminate')) { $instance->terminate($request, $response); } } } /** * Gather the route middleware for the given request. * * @param \Illuminate\Http\Request $request * @return array */ protected function gatherRouteMiddleware($request) { if ($route = $request->route()) { return $this->router->gatherRouteMiddleware($route); } return []; } /**
*/ protected function dispatchToRouter() { return function ($request) { $this->app->instance('request', $request); return $this->router->dispatch($request); }; } /** * Call the terminate method on any terminable middleware. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Http\Response $response * @return void */ public function terminate($request, $response) { $this->terminateMiddleware($request, $response); $this->app->terminate(); } /** * Call the terminate method on any terminable middleware. * * @param \Illuminate\Http\Request $request * @param \Illuminate\Http\Response $response * @return void */ protected function terminateMiddleware($request, $response) { $middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge( $this->gatherRouteMiddleware($request), $this->middleware ); foreach ($middlewares as $middleware) { if (! is_string($middleware)) {
|-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->send(); $kernel->terminate($request, $response);
Key | Value |
CONTEXT_DOCUMENT_ROOT | "/home/sambalpu/public_html"
|
CONTEXT_PREFIX | "" |
DOCUMENT_ROOT | "/home/sambalpu/public_html"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
HTTPS | "on"
|
HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
HTTP_ACCEPT_ENCODING | "br,gzip"
|
HTTP_ACCEPT_LANGUAGE | "en-US,en;q=0.5"
|
HTTP_CONNECTION | "Keep-Alive"
|
HTTP_HOST | "sambalpuribazar.com"
|
HTTP_IF_MODIFIED_SINCE | "Sun, 28 Nov 2021 05:30:08 GMT"
|
HTTP_USER_AGENT | "CCBot/2.0 (https://commoncrawl.org/faq/)"
|
PATH | "/bin:/usr/bin:/usr/local/php/bin"
|
PHPRC | "/home/sambalpu"
|
QUERY_STRING | "" |
REDIRECT_HTTPS | "on"
|
REDIRECT_SSL_TLS_SNI | "sambalpuribazar.com"
|
REDIRECT_STATUS | "200"
|
REDIRECT_UNIQUE_ID | "YveVlBplmJif26hdkNGIYgAAAJg"
|
REDIRECT_URL | "/Delivery&shipping"
|
REMOTE_ADDR | "44.200.175.255"
|
REMOTE_PORT | "48304"
|
REQUEST_METHOD | "GET"
|
REQUEST_SCHEME | "https"
|
REQUEST_URI | "/Delivery&shipping"
|
SCRIPT_FILENAME | "/home/sambalpu/public_html/index.php"
|
SCRIPT_NAME | "/index.php"
|
SERVER_ADDR | "203.115.105.34"
|
SERVER_ADMIN | "webmaster@sambalpuribazar.com"
|
SERVER_NAME | "sambalpuribazar.com"
|
SERVER_PORT | "443"
|
SERVER_PROTOCOL | "HTTP/1.1"
|
SERVER_SIGNATURE | "" |
SERVER_SOFTWARE | "Apache/2.4.48 (Unix) OpenSSL/1.0.2k-fips"
|
SSL_TLS_SNI | "sambalpuribazar.com"
|
UNIQUE_ID | "YveVlBplmJif26hdkNGIYgAAAJg"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1660392852.7146
|
REQUEST_TIME | 1660392852
|
APP_NAME | "Laravel"
|
APP_ENV | "local"
|
APP_KEY | "base64:tVRBhu/2GrnpWCarc7FpfiX5s2t1QGwr1ze0b8LHet0="
|
APP_DEBUG | "true"
|
APP_URL | "https://sambalpuribazar.com/app_admin/"
|
BASE_URL | "https://sambalpuribazar.com/"
|
LOG_CHANNEL | "stack"
|
DB_CONNECTION | "mysql"
|
DB_HOST | "127.0.0.1"
|
DB_PORT | "3306"
|
DB_DATABASE | "sambalpu_app_admin"
|
DB_USERNAME | "sambalpu_ecomapp"
|
DB_PASSWORD | "caPMxsiDPR,k"
|
BROADCAST_DRIVER | "log"
|
CACHE_DRIVER | "file"
|
QUEUE_CONNECTION | "sync"
|
SESSION_DRIVER | "file"
|
SESSION_LIFETIME | "120"
|
REDIS_HOST | "127.0.0.1"
|
REDIS_PASSWORD | "null"
|
REDIS_PORT | "6379"
|
MAIL_DRIVER | "smtp"
|
MAIL_HOST | "mail.sambalpuribazar.com"
|
MAIL_PORT | "465"
|
MAIL_USERNAME | "info@sambalpuribazar.com"
|
MAIL_PASSWORD | "btqnwPV^lyW^"
|
MAIL_ENCRYPTION | "ssl"
|
MAIL_FROM_ADDRESS | "info@sambalpuribazar.com"
|
MAIL_FROM_NAME | "Ecommerce"
|
PUSHER_APP_ID | "" |
PUSHER_APP_KEY | "" |
PUSHER_APP_SECRET | "" |
PUSHER_APP_CLUSTER | "mt1"
|
MIX_PUSHER_APP_KEY | "" |
MIX_BASEURL | "https://sambalpuribazar.com/"
|
MIX_PUSHER_APP_CLUSTER | "mt1"
|
Key | Value |
APP_NAME | "Laravel"
|
APP_ENV | "local"
|
APP_KEY | "base64:tVRBhu/2GrnpWCarc7FpfiX5s2t1QGwr1ze0b8LHet0="
|
APP_DEBUG | "true"
|
APP_URL | "https://sambalpuribazar.com/app_admin/"
|
BASE_URL | "https://sambalpuribazar.com/"
|
LOG_CHANNEL | "stack"
|
DB_CONNECTION | "mysql"
|
DB_HOST | "127.0.0.1"
|
DB_PORT | "3306"
|
DB_DATABASE | "sambalpu_app_admin"
|
DB_USERNAME | "sambalpu_ecomapp"
|
DB_PASSWORD | "caPMxsiDPR,k"
|
BROADCAST_DRIVER | "log"
|
CACHE_DRIVER | "file"
|
QUEUE_CONNECTION | "sync"
|
SESSION_DRIVER | "file"
|
SESSION_LIFETIME | "120"
|
REDIS_HOST | "127.0.0.1"
|
REDIS_PASSWORD | "null"
|
REDIS_PORT | "6379"
|
MAIL_DRIVER | "smtp"
|
MAIL_HOST | "mail.sambalpuribazar.com"
|
MAIL_PORT | "465"
|
MAIL_USERNAME | "info@sambalpuribazar.com"
|
MAIL_PASSWORD | "btqnwPV^lyW^"
|
MAIL_ENCRYPTION | "ssl"
|
MAIL_FROM_ADDRESS | "info@sambalpuribazar.com"
|
MAIL_FROM_NAME | "Ecommerce"
|
PUSHER_APP_ID | "" |
PUSHER_APP_KEY | "" |
PUSHER_APP_SECRET | "" |
PUSHER_APP_CLUSTER | "mt1"
|
MIX_PUSHER_APP_KEY | "" |
MIX_BASEURL | "https://sambalpuribazar.com/"
|
MIX_PUSHER_APP_CLUSTER | "mt1"
|