Get access to your Orders, Wishlist and Recommendations
Get access to your Orders, Wishlist and Recommendations
Exclusive handmade for you by ace-weavers and master-craftsman from Western Odisha. Wide range of internationally acclaimed signature designs made on 100% silk and cotton fabrics best for your skin and most comfortable in Indian climate. Reduce your carbon-foot print with our 100% eco-friendly products.
Our fair pricing across all products aims at customer benefit at first place. Compare our prices for similar products with other websites, you can find the difference. You will also contribute directly towards the social upliftment of the hard-working master-craftsman designing these beautiful products.
We understand that we are not shipping products but shipping happiness and building a relationship. As an inaugural offer, we will ship your order for free for all orders above 1000/-. So, Order more for you, for your friends and refer Sambalpuribazar.com to your loved ones to take maximum advantage out of this offer.
I have ordered many products from Sambalpuribazar and got genuine products in competative rates everytime. It's really a very nice platform for all of us to get the unique sambalpuri handlooms outside in same price as in the native place. thanks to sambalpuribazar to provide us the verieties ranges of products, proper delivery, simple return policy and many more.. worth shopping at sambalpuribazar always..
Somnath Badhai,Bangalore, India
Sambalpuribazar always being a perfect online store to get sambalpuri handlooms range of products even you can customize your designs by choosing fabrics on their site. I did the same for a party and got the perfect design and materials as I have suggested and planned.And all this completed with reasonable prices and delivered on my place before time. You can definitely trusts on sambalpuribazar for your ethnic wear and customised designs.
Dr Manisha Acharya,New Delhi
Products are always good in geuine price at sambalpuribazar.com. in most occasion I purchased for my family. The payment option is very flexible and delivery is on assured time frame.In sambalpuribazar you can customize your designs as per your choice. For kids you cant find such handlooms stiched products in this price.
Bijaya Tripathy,New Delhi
Sambalpuribazar.com is a very popular website spreading the marketing of Sambalpuri handloom fabrics specially designed with a view to catering to the fashion needs of the contemporary Youth, Men and Women. I appreciate the maintenance of Quality and Ponctuality of the production and marketing teams. Best Wishes!!! Bhabani Dikshit. World Focus..
Bhawani Dixit,New Delhi
* * @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/KO0rN1bTbMHLW1u6p0rHxKchap7BZUvPLcKSH2Km): 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 | "Thu, 19 May 2022 05:04:39 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_STATUS | "200"
|
REMOTE_ADDR | "44.200.175.255"
|
REMOTE_PORT | "47682"
|
REQUEST_METHOD | "GET"
|
REQUEST_SCHEME | "https"
|
REQUEST_URI | "/"
|
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 | "YveRexplmJif26hdkNGISAAAAIg"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1660391803.662
|
REQUEST_TIME | 1660391803
|
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"
|