Get access to your Orders, Wishlist and Recommendations
Get access to your Orders, Wishlist and Recommendations
Size |
![]() |
|
44
|
42
|
40
|
Traditional sambalpuri ikat design with alternate grey and orange strips give this sambalpuri dhila an unique look. This mens" Sambalpuri Dhila is made from 100% authentic cotton fabric with hands of traditions. Eye-balls will turn towards you wherever you go wearing this wonderful dhila. At this price range it is a mouth-watering deal. Just grab it.
Product Type | Sambalpuri Dhila |
Fabrics | Cotton |
Color | Alternate Orange and Grey |
Nack | Round |
Yes | |
Work | Woven |
Occasion | Casual , Party |
All measurements in cms | Chest | Waist | Across Shoulder | Front Length |
---|---|---|---|---|
38 | 102 | 94 | 39 | 70 |
40 | 107 | 99 | 41 | 71 |
42 | 112 | 104 | 42 | 74 |
44 | 117 | 109 | 43 | 76 |
* * @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/RpzGfx2eudRH9xcyoCjqeU7wCEjWTcOAHqBohXQG): 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:47:29 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 | "YveZyzz5OjU3jqm8wdPyaQAAAMs"
|
REDIRECT_URL | "/sambalpuri-dhila/a/8n5vxa5qwx"
|
REMOTE_ADDR | "44.200.175.255"
|
REMOTE_PORT | "48948"
|
REQUEST_METHOD | "GET"
|
REQUEST_SCHEME | "https"
|
REQUEST_URI | "/sambalpuri-dhila/a/8n5vxa5qwx"
|
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 | "YveZyzz5OjU3jqm8wdPyaQAAAMs"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1660393931.7851
|
REQUEST_TIME | 1660393931
|
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"
|