ErrorException

Attempt to read property "id" on null search →

APPPATH/Controllers/FrontendController.php at line 595

588         
589         $builder $this->db->table('product_category');
590         $builder->orderBy('name''ASC');
591         $data['categories'] = $builder->get()->getResult();
592         
593         $builder $this->db->table('product_images');
594         $builder->orderBy('id''ASC');
595         $builder->where('product_id', $data['product_detail']->id);
596         $data['product_images'] = $builder->get()->getResult();
597 
598         $builder $this->db->table('products');
599         $builder->orderBy('id''ASC');
600         $builder->where('category_id'$data['product_detail']->category_id);
601         $data['related_products'] = $builder->get()->getResult();
602         $data['slug'] = $id;
  1. APPPATH/Controllers/FrontendController.php : 595   —  CodeIgniter\Debug\Exceptions->errorHandler ( arguments )

    $severity
    2
    $message
    Attempt to read property "id" on null
    $file
    /home1/acousticengineer/public_html/app/Controllers/FrontendController.php
    $line
    595

    588         
    589         $builder $this->db->table('product_category');
    590         $builder->orderBy('name''ASC');
    591         $data['categories'] = $builder->get()->getResult();
    592         
    593         $builder $this->db->table('product_images');
    594         $builder->orderBy('id''ASC');
    595         $builder->where('product_id', $data['product_detail']->id);
    596         $data['product_images'] = $builder->get()->getResult();
    597 
    598         $builder $this->db->table('products');
    599         $builder->orderBy('id''ASC');
    600         $builder->where('category_id'$data['product_detail']->category_id);
    601         $data['related_products'] = $builder->get()->getResult();
    602         $data['slug'] = $id;
    
  2. SYSTEMPATH/CodeIgniter.php : 824   —  App\Controllers\FrontendController->product_detail ( arguments )

    $id
    building-acoustics

    817     {
    818         // If this is a console request then use the input segments as parameters
    819         $params defined('SPARKED') ? $this->request->getSegments() : $this->router->params(); // @phpstan-ignore-line
    820 
    821         if (method_exists($class'_remap')) {
    822             $output $class->_remap($this->method, ...$params);
    823         } else {
    824             $output = $class->{$this->method}(...$params);
    825         }
    826 
    827         $this->benchmark->stop('controller');
    828 
    829         return $output;
    830     }
    831 
    
  3. SYSTEMPATH/CodeIgniter.php : 410   —  CodeIgniter\CodeIgniter->runController ( arguments )

    $class
    App\Controllers\FrontendController Object
    (
        [request:protected] => CodeIgniter\HTTP\IncomingRequest Object
            (
                [enableCSRF:protected] => 
                [uri] => CodeIgniter\HTTP\URI Object
                    (
                        [uriString:protected] => 
                        [segments:protected] => Array
                            (
                                [0] => product-details
                                [1] => building-acoustics
                            )
    
                        [scheme:protected] => https
                        [user:protected] => 
                        [password:protected] => 
                        [host:protected] => acousticengineers.co.in
                        [port:protected] => 
                        [path:protected] => product-details/building-acoustics
                        [fragment:protected] => 
                        [query:protected] => Array
                            (
                            )
    
                        [defaultPorts:protected] => Array
                            (
                                [http] => 80
                                [https] => 443
                                [ftp] => 21
                                [sftp] => 22
                            )
    
                        [showPassword:protected] => 
                        [silent:protected] => 
                        [rawQueryString:protected] => 
                    )
    
                [path:protected] => product-details/building-acoustics
                [files:protected] => 
                [negotiator:protected] => 
                [defaultLocale:protected] => en
                [locale:protected] => en
                [validLocales:protected] => Array
                    (
                        [0] => en
                    )
    
                [config] => Config\App Object
                    (
                        [baseURL] => https://acousticengineers.co.in/
                        [indexPage] => 
                        [uriProtocol] => REQUEST_URI
                        [defaultLocale] => en
                        [negotiateLocale] => 
                        [supportedLocales] => Array
                            (
                                [0] => en
                            )
    
                        [appTimezone] => America/Chicago
                        [charset] => UTF-8
                        [forceGlobalSecureRequests] => 
                        [sessionDriver] => CodeIgniter\Session\Handlers\FileHandler
                        [sessionCookieName] => ci_session
                        [sessionExpiration] => 7200
                        [sessionSavePath] => /home1/acousticengineer/public_html/writable/session
                        [sessionMatchIP] => 
                        [sessionTimeToUpdate] => 300
                        [sessionRegenerateDestroy] => 
                        [cookiePrefix] => 
                        [cookieDomain] => 
                        [cookiePath] => /
                        [cookieSecure] => 
                        [cookieHTTPOnly] => 1
                        [cookieSameSite] => Lax
                        [proxyIPs] => 
                        [CSRFTokenName] => csrf_test_name
                        [CSRFHeaderName] => X-CSRF-TOKEN
                        [CSRFCookieName] => csrf_cookie_name
                        [CSRFExpire] => 7200
                        [CSRFRegenerate] => 1
                        [CSRFRedirect] => 1
                        [CSRFSameSite] => Lax
                        [CSPEnabled] => 
                    )
    
                [oldInput:protected] => Array
                    (
                    )
    
                [userAgent:protected] => CodeIgniter\HTTP\UserAgent Object
                    (
                        [agent:protected] => Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
                        [isBrowser:protected] => 1
                        [isRobot:protected] => 
                        [isMobile:protected] => 
                        [config:protected] => Config\UserAgents Object
                            (
                                [platforms] => Array
                                    (
                                        [windows nt 10.0] => Windows 10
                                        [windows nt 6.3] => Windows 8.1
                                        [windows nt 6.2] => Windows 8
                                        [windows nt 6.1] => Windows 7
                                        [windows nt 6.0] => Windows Vista
                                        [windows nt 5.2] => Windows 2003
                                        [windows nt 5.1] => Windows XP
                                        [windows nt 5.0] => Windows 2000
                                        [windows nt 4.0] => Windows NT 4.0
                                        [winnt4.0] => Windows NT 4.0
                                        [winnt 4.0] => Windows NT
                                        [winnt] => Windows NT
                                        [windows 98] => Windows 98
                                        [win98] => Windows 98
                                        [windows 95] => Windows 95
                                        [win95] => Windows 95
                                        [windows phone] => Windows Phone
                                        [windows] => Unknown Windows OS
                                        [android] => Android
                                        [blackberry] => BlackBerry
                                        [iphone] => iOS
                                        [ipad] => iOS
                                        [ipod] => iOS
                                        [os x] => Mac OS X
                                        [ppc mac] => Power PC Mac
                                        [freebsd] => FreeBSD
                                        [ppc] => Macintosh
                                        [linux] => Linux
                                        [debian] => Debian
                                        [sunos] => Sun Solaris
                                        [beos] => BeOS
                                        [apachebench] => ApacheBench
                                        [aix] => AIX
                                        [irix] => Irix
                                        [osf] => DEC OSF
                                        [hp-ux] => HP-UX
                                        [netbsd] => NetBSD
                                        [bsdi] => BSDi
                                        [openbsd] => OpenBSD
                                        [gnu] => GNU/Linux
                                        [unix] => Unknown Unix OS
                                        [symbian] => Symbian OS
                                    )
    
                                [browsers] => Array
                                    (
                                        [OPR] => Opera
                                        [Flock] => Flock
                                        [Edge] => Spartan
                                        [Edg] => Edge
                                        [Chrome] => Chrome
                                        [Opera.*?Version] => Opera
                                        [Opera] => Opera
                                        [MSIE] => Internet Explorer
                                        [Internet Explorer] => Internet Explorer
                                        [Trident.* rv] => Internet Explorer
                                        [Shiira] => Shiira
                                        [Firefox] => Firefox
                                        [Chimera] => Chimera
                                        [Phoenix] => Phoenix
                                        [Firebird] => Firebird
                                        [Camino] => Camino
                                        [Netscape] => Netscape
                                        [OmniWeb] => OmniWeb
                                        [Safari] => Safari
                                        [Mozilla] => Mozilla
                                        [Konqueror] => Konqueror
                                        [icab] => iCab
                                        [Lynx] => Lynx
                                        [Links] => Links
                                        [hotjava] => HotJava
                                        [amaya] => Amaya
                                        [IBrowse] => IBrowse
                                        [Maxthon] => Maxthon
                                        [Ubuntu] => Ubuntu Web Browser
                                        [Vivaldi] => Vivaldi
                                    )
    
                                [mobiles] => Array
                                    (
                                        [mobileexplorer] => Mobile Explorer
                                        [palmsource] => Palm
                                        [palmscape] => Palmscape
                                        [motorola] => Motorola
                                        [nokia] => Nokia
                                        [palm] => Palm
                                        [iphone] => Apple iPhone
                                        [ipad] => iPad
                                        [ipod] => Apple iPod Touch
                                        [sony] => Sony Ericsson
                                        [ericsson] => Sony Ericsson
                                        [blackberry] => BlackBerry
                                        [cocoon] => O2 Cocoon
                                        [blazer] => Treo
                                        [lg] => LG
                                        [amoi] => Amoi
                                        [xda] => XDA
                                        [mda] => MDA
                                        [vario] => Vario
                                        [htc] => HTC
                                        [samsung] => Samsung
                                        [sharp] => Sharp
                                        [sie-] => Siemens
                                        [alcatel] => Alcatel
                                        [benq] => BenQ
                                        [ipaq] => HP iPaq
                                        [mot-] => Motorola
                                        [playstation portable] => PlayStation Portable
                                        [playstation 3] => PlayStation 3
                                        [playstation vita] => PlayStation Vita
                                        [hiptop] => Danger Hiptop
                                        [nec-] => NEC
                                        [panasonic] => Panasonic
                                        [philips] => Philips
                                        [sagem] => Sagem
                                        [sanyo] => Sanyo
                                        [spv] => SPV
                                        [zte] => ZTE
                                        [sendo] => Sendo
                                        [nintendo dsi] => Nintendo DSi
                                        [nintendo ds] => Nintendo DS
                                        [nintendo 3ds] => Nintendo 3DS
                                        [wii] => Nintendo Wii
                                        [open web] => Open Web
                                        [openweb] => OpenWeb
                                        [android] => Android
                                        [symbian] => Symbian
                                        [SymbianOS] => SymbianOS
                                        [elaine] => Palm
                                        [series60] => Symbian S60
                                        [windows ce] => Windows CE
                                        [obigo] => Obigo
                                        [netfront] => Netfront Browser
                                        [openwave] => Openwave Browser
                                        [mobilexplorer] => Mobile Explorer
                                        [operamini] => Opera Mini
                                        [opera mini] => Opera Mini
                                        [opera mobi] => Opera Mobile
                                        [fennec] => Firefox Mobile
                                        [digital paths] => Digital Paths
                                        [avantgo] => AvantGo
                                        [xiino] => Xiino
                                        [novarra] => Novarra Transcoder
                                        [vodafone] => Vodafone
                                        [docomo] => NTT DoCoMo
                                        [o2] => O2
                                        [mobile] => Generic Mobile
                                        [wireless] => Generic Mobile
                                        [j2me] => Generic Mobile
                                        [midp] => Generic Mobile
                                        [cldc] => Generic Mobile
                                        [up.link] => Generic Mobile
                                        [up.browser] => Generic Mobile
                                        [smartphone] => Generic Mobile
                                        [cellphone] => Generic Mobile
                                    )
    
                                [robots] => Array
                                    (
                                        [googlebot] => Googlebot
                                        [msnbot] => MSNBot
                                        [baiduspider] => Baiduspider
                                        [bingbot] => Bing
                                        [slurp] => Inktomi Slurp
                                        [yahoo] => Yahoo
                                        [ask jeeves] => Ask Jeeves
                                        [fastcrawler] => FastCrawler
                                        [infoseek] => InfoSeek Robot 1.0
                                        [lycos] => Lycos
                                        [yandex] => YandexBot
                                        [mediapartners-google] => MediaPartners Google
                                        [CRAZYWEBCRAWLER] => Crazy Webcrawler
                                        [adsbot-google] => AdsBot Google
                                        [feedfetcher-google] => Feedfetcher Google
                                        [curious george] => Curious George
                                        [ia_archiver] => Alexa Crawler
                                        [MJ12bot] => Majestic-12
                                        [Uptimebot] => Uptimebot
                                    )
    
                            )
    
                        [platform:protected] => Windows 98
                        [browser:protected] => Mozilla
                        [version:protected] => 4.5
                        [mobile:protected] => 
                        [robot:protected] => 
                        [referrer:protected] => 
                    )
    
                [proxyIPs:protected] => 
                [method:protected] => GET
                [protocolVersion:protected] => 1.1
                [validProtocolVersions:protected] => Array
                    (
                        [0] => 1.0
                        [1] => 1.1
                        [2] => 2.0
                    )
    
                [body:protected] => 
                [headers:protected] => Array
                    (
                        [Accept] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Accept
                                [value:protected] => text/html,image/png,image/jpeg,image/pjpeg,image/x-xbitmap,image/svg+xml,image/gif;q=0.9,*/*;q=0.1
                            )
    
                        [Accept-Encoding] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Accept-Encoding
                                [value:protected] => gzip, identity;q=0.9
                            )
    
                        [Accept-Language] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Accept-Language
                                [value:protected] => en, *
                            )
    
                        [Connection] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Connection
                                [value:protected] => keep-alive
                            )
    
                        [Cookie] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Cookie
                                [value:protected] => $Version=1; ci_session=e4755a79d67e91fea19ff8d662b413f6c881e6da; $Path=/; SameSite=Lax; $Path=/
                            )
    
                        [Host] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Host
                                [value:protected] => acousticengineers.co.in
                            )
    
                        [Referer] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Referer
                                [value:protected] => http://acousticengineers.co.in/
                            )
    
                        [User-Agent] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => User-Agent
                                [value:protected] => Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
                            )
    
                        [X-Https] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => X-Https
                                [value:protected] => 1
                            )
    
                    )
    
                [headerMap:protected] => Array
                    (
                        [accept] => Accept
                        [accept-encoding] => Accept-Encoding
                        [accept-language] => Accept-Language
                        [connection] => Connection
                        [cookie] => Cookie
                        [host] => Host
                        [referer] => Referer
                        [user-agent] => User-Agent
                        [x-https] => X-Https
                    )
    
                [ipAddress:protected] => 58.84.62.250
                [globals:protected] => Array
                    (
                        [server] => Array
                            (
                                [LSPHP_ENABLE_USER_INI] => on
                                [PATH] => /usr/local/bin:/usr/bin:/bin
                                [TEMP] => /tmp
                                [TMP] => /tmp
                                [TMPDIR] => /tmp
                                [PWD] => /
                                [HTTP_ACCEPT] => text/html,image/png,image/jpeg,image/pjpeg,image/x-xbitmap,image/svg+xml,image/gif;q=0.9,*/*;q=0.1
                                [HTTP_ACCEPT_ENCODING] => gzip, identity;q=0.9
                                [HTTP_ACCEPT_LANGUAGE] => en, *
                                [HTTP_CONNECTION] => keep-alive
                                [CONTENT_LENGTH] => 0
                                [HTTP_COOKIE] => $Version=1; ci_session=e4755a79d67e91fea19ff8d662b413f6c881e6da; $Path=/; SameSite=Lax; $Path=/
                                [HTTP_HOST] => acousticengineers.co.in
                                [HTTP_REFERER] => http://acousticengineers.co.in/
                                [HTTP_USER_AGENT] => Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
                                [HTTP_X_HTTPS] => 1
                                [REDIRECT_UNIQUE_ID] => Z8bC-5hJqyfbjxgtz09kbQAAAbs
                                [REDIRECT_QS_SrvConn] => 149
                                [REDIRECT_QS_AllConn] => 150
                                [REDIRECT_QS_ConnectionId] => 174107925417582015188000
                                [REDIRECT_gzip-only-text/html] => 1
                                [REDIRECT_SCRIPT_URL] => /product-details/building-acoustics
                                [REDIRECT_SCRIPT_URI] => https://acousticengineers.co.in/product-details/building-acoustics
                                [REDIRECT_HTTPS] => on
                                [REDIRECT_SSL_TLS_SNI] => acousticengineers.co.in
                                [REDIRECT_STATUS] => 200
                                [UNIQUE_ID] => Z8bC-5hJqyfbjxgtz09kbQAAAbs
                                [QS_SrvConn] => 149
                                [QS_AllConn] => 150
                                [QS_ConnectionId] => 174107925417582015188000
                                [gzip-only-text/html] => 1
                                [SCRIPT_URL] => /product-details/building-acoustics
                                [SCRIPT_URI] => https://acousticengineers.co.in/product-details/building-acoustics
                                [HTTPS] => on
                                [SSL_TLS_SNI] => acousticengineers.co.in
                                [SERVER_SIGNATURE] => 
                                [SERVER_SOFTWARE] => Apache
                                [SERVER_NAME] => acousticengineers.co.in
                                [SERVER_ADDR] => 162.222.225.163
                                [SERVER_PORT] => 443
                                [REMOTE_ADDR] => 58.84.62.250
                                [DOCUMENT_ROOT] => /home1/acousticengineer/public_html
                                [REQUEST_SCHEME] => https
                                [CONTEXT_PREFIX] => 
                                [CONTEXT_DOCUMENT_ROOT] => /home1/acousticengineer/public_html
                                [SERVER_ADMIN] => webmaster@acousticengineers.co.in
                                [SCRIPT_FILENAME] => /home1/acousticengineer/public_html/index.php
                                [REMOTE_PORT] => 15701
                                [REDIRECT_URL] => /product-details/building-acoustics
                                [SERVER_PROTOCOL] => HTTP/1.1
                                [REQUEST_METHOD] => GET
                                [QUERY_STRING] => 
                                [REQUEST_URI] => /product-details/building-acoustics
                                [SCRIPT_NAME] => /index.php
                                [PATH_INFO] => /product-details/building-acoustics
                                [PATH_TRANSLATED] => redirect:/index.php/product-details/building-acoustics/building-acoustics
                                [PHP_SELF] => /index.php
                                [REQUEST_TIME_FLOAT] => 1741079291.9926
                                [REQUEST_TIME] => 1741079291
                                [argv] => Array
                                    (
                                    )
    
                                [argc] => 0
                                [CI_ENVIRONMENT] => production
                                [app.baseURL] => https://acousticengineers.co.in/
                                [database.default.hostname] => localhost
                                [database.default.database] => acoustic_new
                                [database.default.username] => acoustic_new
                                [database.default.password] => BKDRvNcB$1@*
                                [database.default.DBDriver] => MySQLi
                            )
    
                        [get] => Array
                            (
                            )
    
                    )
    
            )
    
        [helpers:protected] => Array
            (
            )
    
        [response:protected] => CodeIgniter\HTTP\Response Object
            (
                [reason:protected] => Internal Server Error
                [statusCode:protected] => 500
                [pretend:protected] => 
                [protocolVersion:protected] => 1.1
                [validProtocolVersions:protected] => Array
                    (
                        [0] => 1.0
                        [1] => 1.1
                        [2] => 2.0
                    )
    
                [body:protected] => 
                [headers:protected] => Array
                    (
                        [Cache-control] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Cache-control
                                [value:protected] => Array
                                    (
                                        [0] => no-store
                                        [1] => max-age=0
                                        [2] => no-cache
                                    )
    
                            )
    
                        [Content-Type] => CodeIgniter\HTTP\Header Object
                            (
                                [name:protected] => Content-Type
                                [value:protected] => text/html; charset=UTF-8
                            )
    
                    )
    
                [headerMap:protected] => Array
                    (
                        [cache-control] => Cache-control
                        [content-type] => Content-Type
                    )
    
                [CSPEnabled:protected] => 
                [CSP] => CodeIgniter\HTTP\ContentSecurityPolicy Object
                    (
                        [baseURI:protected] => 
                        [childSrc:protected] => self
                        [connectSrc:protected] => self
                        [defaultSrc:protected] => 
                        [fontSrc:protected] => 
                        [formAction:protected] => self
                        [frameAncestors:protected] => 
                        [frameSrc:protected] => 
                        [imageSrc:protected] => self
                        [mediaSrc:protected] => 
                        [objectSrc:protected] => self
                        [pluginTypes:protected] => 
                        [reportURI:protected] => 
                        [sandbox:protected] => 
                        [scriptSrc:protected] => self
                        [styleSrc:protected] => self
                        [manifestSrc:protected] => 
                        [upgradeInsecureRequests:protected] => 
                        [reportOnly:protected] => 
                        [validSources:protected] => Array
                            (
                                [0] => self
                                [1] => none
                                [2] => unsafe-inline
                                [3] => unsafe-eval
                            )
    
                        [nonces:protected] => Array
                            (
                            )
    
                        [tempHeaders:protected] => Array
                            (
                            )
    
                        [reportOnlyHeaders:protected] => Array
                            (
                            )
    
                    )
    
                [cookieStore:protected] => CodeIgniter\Cookie\CookieStore Object
                    (
                        [cookies:protected] => Array
                            (
                            )
    
                    )
    
                [cookiePrefix:protected] => 
                [cookieDomain:protected] => 
                [cookiePath:protected] => /
                [cookieSecure:protected] => 
                [cookieHTTPOnly:protected] => 1
                [cookieSameSite:protected] => Lax
                [cookies:protected] => Array
                    (
                    )
    
                [bodyFormat:protected] => html
            )
    
        [logger:protected] => CodeIgniter\Log\Logger Object
            (
                [logLevels:protected] => Array
                    (
                        [emergency] => 1
                        [alert] => 2
                        [critical] => 3
                        [error] => 4
                        [warning] => 5
                        [notice] => 6
                        [info] => 7
                        [debug] => 8
                    )
    
                [loggableLevels:protected] => Array
                    (
                        [0] => emergency
                        [1] => alert
                        [2] => critical
                        [3] => error
                    )
    
                [filePermissions:protected] => 420
                [dateFormat:protected] => Y-m-d H:i:s
                [fileExt:protected] => 
                [handlers:protected] => Array
                    (
                        [CodeIgniter\Log\Handlers\FileHandler] => CodeIgniter\Log\Handlers\FileHandler Object
                            (
                                [path:protected] => /home1/acousticengineer/public_html/writable/logs/
                                [fileExtension:protected] => log
                                [filePermissions:protected] => 420
                                [handles:protected] => Array
                                    (
                                        [0] => critical
                                        [1] => alert
                                        [2] => emergency
                                        [3] => debug
                                        [4] => error
                                        [5] => info
                                        [6] => notice
                                        [7] => warning
                                    )
    
                                [dateFormat:protected] => Y-m-d H:i:s
                            )
    
                    )
    
                [handlerConfig:protected] => Array
                    (
                        [CodeIgniter\Log\Handlers\FileHandler] => Array
                            (
                                [handles] => Array
                                    (
                                        [0] => critical
                                        [1] => alert
                                        [2] => emergency
                                        [3] => debug
                                        [4] => error
                                        [5] => info
                                        [6] => notice
                                        [7] => warning
                                    )
    
                                [fileExtension] => 
                                [filePermissions] => 420
                                [path] => 
                            )
    
                    )
    
                [logCache] => 
                [cacheLogs:protected] => 
            )
    
        [forceHTTPS:protected] => 0
        [validator:protected] => 
        [session] => CodeIgniter\Session\Session Object
            (
                [driver:protected] => CodeIgniter\Session\Handlers\FileHandler Object
                    (
                        [savePath:protected] => /home1/acousticengineer/public_html/writable/session
                        [fileHandle:protected] => Resource id #9
                        [filePath:protected] => /home1/acousticengineer/public_html/writable/session/ci_session
                        [fileNew:protected] => 
                        [matchIP:protected] => 
                        [sessionIDRegex:protected] => [0-9a-f]{40}
                        [fingerprint:protected] => 0becacc8f5043bf4effb2a7efbc1dfc2
                        [lock:protected] => 
                        [cookiePrefix:protected] => 
                        [cookieDomain:protected] => 
                        [cookiePath:protected] => /
                        [cookieSecure:protected] => 
                        [cookieName:protected] => ci_session
                        [sessionID:protected] => e4755a79d67e91fea19ff8d662b413f6c881e6da
                        [ipAddress:protected] => 58.84.62.250
                        [logger:protected] => CodeIgniter\Log\Logger Object
                            (
                                [logLevels:protected] => Array
                                    (
                                        [emergency] => 1
                                        [alert] => 2
                                        [critical] => 3
                                        [error] => 4
                                        [warning] => 5
                                        [notice] => 6
                                        [info] => 7
                                        [debug] => 8
                                    )
    
                                [loggableLevels:protected] => Array
                                    (
                                        [0] => emergency
                                        [1] => alert
                                        [2] => critical
                                        [3] => error
                                    )
    
                                [filePermissions:protected] => 420
                                [dateFormat:protected] => Y-m-d H:i:s
                                [fileExt:protected] => 
                                [handlers:protected] => Array
                                    (
                                        [CodeIgniter\Log\Handlers\FileHandler] => CodeIgniter\Log\Handlers\FileHandler Object
                                            (
                                                [path:protected] => /home1/acousticengineer/public_html/writable/logs/
                                                [fileExtension:protected] => log
                                                [filePermissions:protected] => 420
                                                [handles:protected] => Array
                                                    (
                                                        [0] => critical
                                                        [1] => alert
                                                        [2] => emergency
                                                        [3] => debug
                                                        [4] => error
                                                        [5] => info
                                                        [6] => notice
                                                        [7] => warning
                                                    )
    
                                                [dateFormat:protected] => Y-m-d H:i:s
                                            )
    
                                    )
    
                                [handlerConfig:protected] => Array
                                    (
                                        [CodeIgniter\Log\Handlers\FileHandler] => Array
                                            (
                                                [handles] => Array
                                                    (
                                                        [0] => critical
                                                        [1] => alert
                                                        [2] => emergency
                                                        [3] => debug
                                                        [4] => error
                                                        [5] => info
                                                        [6] => notice
                                                        [7] => warning
                                                    )
    
                                                [fileExtension] => 
                                                [filePermissions] => 420
                                                [path] => 
                                            )
    
                                    )
    
                                [logCache] => 
                                [cacheLogs:protected] => 
                            )
    
                    )
    
                [sessionDriverName:protected] => CodeIgniter\Session\Handlers\FileHandler
                [sessionCookieName:protected] => ci_session
                [sessionExpiration:protected] => 7200
                [sessionSavePath:protected] => /home1/acousticengineer/public_html/writable/session
                [sessionMatchIP:protected] => 
                [sessionTimeToUpdate:protected] => 300
                [sessionRegenerateDestroy:protected] => 
                [cookie:protected] => CodeIgniter\Cookie\Cookie Object
                    (
                        [prefix:protected] => 
                        [name:protected] => ci_session
                        [value:protected] => 
                        [expires:protected] => 1741086492
                        [path:protected] => /
                        [domain:protected] => 
                        [secure:protected] => 
                        [httponly:protected] => 1
                        [samesite:protected] => Lax
                        [raw:protected] => 
                    )
    
                [cookieDomain:protected] => 
                [cookiePath:protected] => /
                [cookieSecure:protected] => 
                [cookieSameSite:protected] => Lax
                [sidRegexp:protected] => [0-9a-f]{40}
                [logger:protected] => CodeIgniter\Log\Logger Object
                    (
                        [logLevels:protected] => Array
                            (
                                [emergency] => 1
                                [alert] => 2
                                [critical] => 3
                                [error] => 4
                                [warning] => 5
                                [notice] => 6
                                [info] => 7
                                [debug] => 8
                            )
    
                        [loggableLevels:protected] => Array
                            (
                                [0] => emergency
                                [1] => alert
                                [2] => critical
                                [3] => error
                            )
    
                        [filePermissions:protected] => 420
                        [dateFormat:protected] => Y-m-d H:i:s
                        [fileExt:protected] => 
                        [handlers:protected] => Array
                            (
                                [CodeIgniter\Log\Handlers\FileHandler] => CodeIgniter\Log\Handlers\FileHandler Object
                                    (
                                        [path:protected] => /home1/acousticengineer/public_html/writable/logs/
                                        [fileExtension:protected] => log
                                        [filePermissions:protected] => 420
                                        [handles:protected] => Array
                                            (
                                                [0] => critical
                                                [1] => alert
                                                [2] => emergency
                                                [3] => debug
                                                [4] => error
                                                [5] => info
                                                [6] => notice
                                                [7] => warning
                                            )
    
                                        [dateFormat:protected] => Y-m-d H:i:s
                                    )
    
                            )
    
                        [handlerConfig:protected] => Array
                            (
                                [CodeIgniter\Log\Handlers\FileHandler] => Array
                                    (
                                        [handles] => Array
                                            (
                                                [0] => critical
                                                [1] => alert
                                                [2] => emergency
                                                [3] => debug
                                                [4] => error
                                                [5] => info
                                                [6] => notice
                                                [7] => warning
                                            )
    
                                        [fileExtension] => 
                                        [filePermissions] => 420
                                        [path] => 
                                    )
    
                            )
    
                        [logCache] => 
                        [cacheLogs:protected] => 
                    )
    
            )
    
        [db] => CodeIgniter\Database\MySQLi\Connection Object
            (
                [DBDriver] => MySQLi
                [deleteHack] => 1
                [escapeChar] => `
                [mysqli] => mysqli Object
                    (
                        [affected_rows] => 2
                        [client_info] => mysqlnd 8.0.30
                        [client_version] => 80030
                        [connect_errno] => 0
                        [connect_error] => 
                        [errno] => 0
                        [error] => 
                        [error_list] => Array
                            (
                            )
    
                        [field_count] => 5
                        [host_info] => Localhost via UNIX socket
                        [info] => 
                        [insert_id] => 0
                        [server_info] => 5.7.23-23
                        [server_version] => 50723
                        [sqlstate] => 00000
                        [protocol_version] => 10
                        [thread_id] => 181528
                        [warning_count] => 0
                    )
    
                [resultMode] => 0
                [DSN:protected] => 
                [port:protected] => 3306
                [hostname:protected] => localhost
                [username:protected] => acoustic_new
                [password:protected] => BKDRvNcB$1@*
                [database:protected] => acoustic_new
                [subdriver:protected] => 
                [DBPrefix:protected] => 
                [pConnect:protected] => 
                [DBDebug:protected] => 
                [charset:protected] => utf8
                [DBCollat:protected] => utf8_general_ci
                [swapPre:protected] => 
                [encrypt:protected] => 
                [compress:protected] => 
                [strictOn:protected] => 
                [failover:protected] => Array
                    (
                    )
    
                [lastQuery:protected] => CodeIgniter\Database\Query Object
                    (
                        [originalQueryString:protected] => SELECT *
    FROM `product_category`
    ORDER BY `name` ASC
                        [finalQueryString:protected] => SELECT *
    FROM `product_category`
    ORDER BY `name` ASC
                        [binds:protected] => Array
                            (
                            )
    
                        [bindMarker:protected] => ?
                        [startTime:protected] => 1741079292.0902
                        [endTime:protected] => 1741079292.094
                        [errorCode:protected] => 
                        [errorString:protected] => 
                        [db] => CodeIgniter\Database\MySQLi\Connection Object
     *RECURSION*
                    )
    
                [connID] => mysqli Object
                    (
                        [affected_rows] => 2
                        [client_info] => mysqlnd 8.0.30
                        [client_version] => 80030
                        [connect_errno] => 0
                        [connect_error] => 
                        [errno] => 0
                        [error] => 
                        [error_list] => Array
                            (
                            )
    
                        [field_count] => 5
                        [host_info] => Localhost via UNIX socket
                        [info] => 
                        [insert_id] => 0
                        [server_info] => 5.7.23-23
                        [server_version] => 50723
                        [sqlstate] => 00000
                        [protocol_version] => 10
                        [thread_id] => 181528
                        [warning_count] => 0
                    )
    
                [resultID] => mysqli_result Object
                    (
                        [current_field] => 0
                        [field_count] => 5
                        [lengths] => 
                        [num_rows] => 2
                        [type] => 0
                    )
    
                [protectIdentifiers] => 1
                [reservedIdentifiers:protected] => Array
                    (
                        [0] => *
                    )
    
                [likeEscapeStr] =>  ESCAPE '%s' 
                [likeEscapeChar] => !
                [pregEscapeChar:protected] => Array
                    (
                        [1] => `
                        [0] => `
                        [3] => `
                        [2] => `
                    )
    
                [dataCache] => Array
                    (
                    )
    
                [connectTime:protected] => 1741079292.0635
                [connectDuration:protected] => 0.015521049499512
                [pretend:protected] => 
                [transEnabled] => 1
                [transStrict] => 1
                [transDepth:protected] => 0
                [transStatus:protected] => 1
                [transFailure:protected] => 
                [aliasedTables:protected] => Array
                    (
                    )
    
                [queryClass:protected] => CodeIgniter\Database\Query
            )
    
    )
    

    403             if (! method_exists($controller'_remap') && ! is_callable([$controller$this->method], false)) {
    404                 throw PageNotFoundException::forMethodNotFound($this->method);
    405             }
    406 
    407             // Is there a "post_controller_constructor" event?
    408             Events::trigger('post_controller_constructor');
    409 
    410             $returned = $this->runController($controller);
    411         } else {
    412             $this->benchmark->stop('controller_constructor');
    413             $this->benchmark->stop('controller');
    414         }
    415 
    416         // If $returned is a string, then the controller output something,
    417         // probably a view, instead of echoing it directly. Send it along
    
  4. SYSTEMPATH/CodeIgniter.php : 318   —  CodeIgniter\CodeIgniter->handleRequest ( arguments )

    $routes
    $cacheConfig
    Config\Cache Object
    (
        [handler] => file
        [backupHandler] => dummy
        [storePath] => /home1/acousticengineer/public_html/writable/cache/
        [cacheQueryString] => 
        [prefix] => 
        [ttl] => 60
        [reservedCharacters] => {}()/\@:
        [file] => Array
            (
                [storePath] => /home1/acousticengineer/public_html/writable/cache/
                [mode] => 416
            )
    
        [memcached] => Array
            (
                [host] => 127.0.0.1
                [port] => 11211
                [weight] => 1
                [raw] => 
            )
    
        [redis] => Array
            (
                [host] => 127.0.0.1
                [password] => 
                [port] => 6379
                [timeout] => 0
                [database] => 0
            )
    
        [validHandlers] => Array
            (
                [dummy] => CodeIgniter\Cache\Handlers\DummyHandler
                [file] => CodeIgniter\Cache\Handlers\FileHandler
                [memcached] => CodeIgniter\Cache\Handlers\MemcachedHandler
                [predis] => CodeIgniter\Cache\Handlers\PredisHandler
                [redis] => CodeIgniter\Cache\Handlers\RedisHandler
                [wincache] => CodeIgniter\Cache\Handlers\WincacheHandler
            )
    
    )
    
    $returnResponse

    311             $this->response->pretend($this->useSafeOutput)->send();
    312             $this->callExit(EXIT_SUCCESS);
    313 
    314             return;
    315         }
    316 
    317         try {
    318             return $this->handleRequest($routes, $cacheConfig, $returnResponse);
    319         } catch (RedirectException $e) {
    320             $logger Services::logger();
    321             $logger->info('REDIRECTED ROUTE at ' $e->getMessage());
    322 
    323             // If the route is a 'redirect' route, it throws
    324             // the exception with the $to as the message
    325             $this->response->redirect(base_url($e->getMessage()), 'auto'$e->getCode());
    
  5. FCPATH/index.php : 40   —  CodeIgniter\CodeIgniter->run ()

    33 /*
    34  *---------------------------------------------------------------
    35  * LAUNCH THE APPLICATION
    36  *---------------------------------------------------------------
    37  * Now that everything is setup, it's time to actually fire
    38  * up the engines and make this app do its thang.
    39  */
    40 $app->run();
    41 
    

$_SERVER

Key Value
LSPHP_ENABLE_USER_INI on
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
HTTP_ACCEPT text/html,image/png,image/jpeg,image/pjpeg,image/x-xbitmap,image/svg+xml,image/gif;q=0.9,*/*;q=0.1
HTTP_ACCEPT_ENCODING gzip, identity;q=0.9
HTTP_ACCEPT_LANGUAGE en, *
HTTP_CONNECTION keep-alive
CONTENT_LENGTH 0
HTTP_COOKIE $Version=1; ci_session=e4755a79d67e91fea19ff8d662b413f6c881e6da; $Path=/; SameSite=Lax; $Path=/
HTTP_HOST acousticengineers.co.in
HTTP_REFERER http://acousticengineers.co.in/
HTTP_USER_AGENT Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
HTTP_X_HTTPS 1
REDIRECT_UNIQUE_ID Z8bC-5hJqyfbjxgtz09kbQAAAbs
REDIRECT_QS_SrvConn 149
REDIRECT_QS_AllConn 150
REDIRECT_QS_ConnectionId 174107925417582015188000
REDIRECT_gzip-only-text/html 1
REDIRECT_SCRIPT_URL /product-details/building-acoustics
REDIRECT_SCRIPT_URI https://acousticengineers.co.in/product-details/building-acoustics
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI acousticengineers.co.in
REDIRECT_STATUS 200
UNIQUE_ID Z8bC-5hJqyfbjxgtz09kbQAAAbs
QS_SrvConn 149
QS_AllConn 150
QS_ConnectionId 174107925417582015188000
gzip-only-text/html 1
SCRIPT_URL /product-details/building-acoustics
SCRIPT_URI https://acousticengineers.co.in/product-details/building-acoustics
HTTPS on
SSL_TLS_SNI acousticengineers.co.in
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME acousticengineers.co.in
SERVER_ADDR 162.222.225.163
SERVER_PORT 443
REMOTE_ADDR 58.84.62.250
DOCUMENT_ROOT /home1/acousticengineer/public_html
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home1/acousticengineer/public_html
SERVER_ADMIN webmaster@acousticengineers.co.in
SCRIPT_FILENAME /home1/acousticengineer/public_html/index.php
REMOTE_PORT 15701
REDIRECT_URL /product-details/building-acoustics
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /product-details/building-acoustics
SCRIPT_NAME /index.php
PATH_INFO /product-details/building-acoustics
PATH_TRANSLATED redirect:/index.php/product-details/building-acoustics/building-acoustics
PHP_SELF /index.php
REQUEST_TIME_FLOAT
1741079291.9926
REQUEST_TIME
1741079291
argv
Array
(
)
argc
0
CI_ENVIRONMENT production
app.baseURL https://acousticengineers.co.in/
database.default.hostname localhost
database.default.database acoustic_new
database.default.username acoustic_new
database.default.password BKDRvNcB$1@*
database.default.DBDriver MySQLi

$_SESSION

Key Value
__ci_last_regenerate
1741079156
_ci_previous_url https://acousticengineers.co.in/enquiry?subject=RF+Shielded+Enclosure

Constants

Key Value
FCPATH /home1/acousticengineer/public_html/
APPPATH /home1/acousticengineer/public_html/app/
ROOTPATH /home1/acousticengineer/public_html/
SYSTEMPATH /home1/acousticengineer/public_html/system/
WRITEPATH /home1/acousticengineer/public_html/writable/
TESTPATH /
APP_NAMESPACE App
COMPOSER_PATH /home1/acousticengineer/public_html/vendor/autoload.php
SECOND
1
MINUTE
60
HOUR
3600
DAY
86400
WEEK
604800
MONTH
2592000
YEAR
31536000
DECADE
315360000
EXIT_SUCCESS
0
EXIT_ERROR
1
EXIT_CONFIG
3
EXIT_UNKNOWN_FILE
4
EXIT_UNKNOWN_CLASS
5
EXIT_UNKNOWN_METHOD
6
EXIT_USER_INPUT
7
EXIT_DATABASE
8
EXIT__AUTO_MIN
9
EXIT__AUTO_MAX
125
ROOT_PATH /home1/acousticengineer/public_html/
ENVIRONMENT production
CI_DEBUG

																	
KINT_DIR /home1/acousticengineer/public_html/system/ThirdParty/Kint
KINT_WIN

																	
KINT_PHP56
1
KINT_PHP70
1
KINT_PHP72
1
KINT_PHP73
1
KINT_PHP74
1
EVENT_PRIORITY_LOW
200
EVENT_PRIORITY_NORMAL
100
EVENT_PRIORITY_HIGH
10
Path https://acousticengineers.co.in/product-details/building-acoustics
HTTP Method GET
IP Address 58.84.62.250
Is AJAX Request? no
Is CLI Request? no
Is Secure Request? yes
User Agent Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)

$_COOKIE

Key Value
$Version 1
ci_session e4755a79d67e91fea19ff8d662b413f6c881e6da
$Path /
SameSite Lax

Headers

Header Value
Accept text/html,image/png,image/jpeg,image/pjpeg,image/x-xbitmap,image/svg+xml,image/gif;q=0.9,*/*;q=0.1
Accept-Encoding gzip, identity;q=0.9
Accept-Language en, *
Connection keep-alive
Cookie $Version=1; ci_session=e4755a79d67e91fea19ff8d662b413f6c881e6da; $Path=/; SameSite=Lax; $Path=/
Host acousticengineers.co.in
Referer http://acousticengineers.co.in/
User-Agent Mozilla/4.5 (compatible; HTTrack 3.0x; Windows 98)
X-Https 1
Response Status 500 - Internal Server Error

Headers

Header Value
Cache-control no-store, max-age=0, no-cache
Content-Type text/html; charset=UTF-8
  1. FCPATH/index.php
  2. APPPATH/Config/Paths.php
  3. SYSTEMPATH/bootstrap.php
  4. APPPATH/Config/Constants.php
  5. SYSTEMPATH/Common.php
  6. SYSTEMPATH/Config/AutoloadConfig.php
  7. APPPATH/Config/Autoload.php
  8. SYSTEMPATH/Modules/Modules.php
  9. APPPATH/Config/Modules.php
  10. SYSTEMPATH/Autoloader/Autoloader.php
  11. SYSTEMPATH/Config/BaseService.php
  12. SYSTEMPATH/Config/Services.php
  13. APPPATH/Config/Services.php
  14. SYSTEMPATH/Config/DotEnv.php
  15. SYSTEMPATH/Autoloader/FileLocator.php
  16. SYSTEMPATH/Helpers/url_helper.php
  17. SYSTEMPATH/Config/Factories.php
  18. SYSTEMPATH/Config/Factory.php
  19. SYSTEMPATH/Config/BaseConfig.php
  20. APPPATH/Config/App.php
  21. SYSTEMPATH/CodeIgniter.php
  22. APPPATH/Config/Boot/production.php
  23. APPPATH/Config/Exceptions.php
  24. SYSTEMPATH/HTTP/IncomingRequest.php
  25. SYSTEMPATH/HTTP/Request.php
  26. SYSTEMPATH/HTTP/Message.php
  27. SYSTEMPATH/HTTP/MessageInterface.php
  28. SYSTEMPATH/HTTP/MessageTrait.php
  29. SYSTEMPATH/HTTP/RequestInterface.php
  30. SYSTEMPATH/HTTP/RequestTrait.php
  31. SYSTEMPATH/HTTP/URI.php
  32. SYSTEMPATH/HTTP/UserAgent.php
  33. APPPATH/Config/UserAgents.php
  34. SYSTEMPATH/HTTP/Header.php
  35. SYSTEMPATH/HTTP/Response.php
  36. SYSTEMPATH/HTTP/ResponseInterface.php
  37. SYSTEMPATH/HTTP/ResponseTrait.php
  38. SYSTEMPATH/Cookie/Cookie.php
  39. SYSTEMPATH/Cookie/CloneableCookieInterface.php
  40. SYSTEMPATH/Cookie/CookieInterface.php
  41. SYSTEMPATH/HTTP/ContentSecurityPolicy.php
  42. APPPATH/Config/ContentSecurityPolicy.php
  43. SYSTEMPATH/Cookie/CookieStore.php
  44. APPPATH/Config/Cookie.php
  45. SYSTEMPATH/Debug/Exceptions.php
  46. SYSTEMPATH/API/ResponseTrait.php
  47. SYSTEMPATH/ThirdParty/Kint/init.php
  48. SYSTEMPATH/ThirdParty/Kint/Kint.php
  49. SYSTEMPATH/ThirdParty/Kint/Utils.php
  50. SYSTEMPATH/ThirdParty/Kint/init_helpers.php
  51. APPPATH/Config/Kint.php
  52. SYSTEMPATH/ThirdParty/Kint/Renderer/Renderer.php
  53. SYSTEMPATH/ThirdParty/Kint/Renderer/RichRenderer.php
  54. SYSTEMPATH/ThirdParty/Kint/Renderer/CliRenderer.php
  55. SYSTEMPATH/ThirdParty/Kint/Renderer/TextRenderer.php
  56. SYSTEMPATH/Debug/Timer.php
  57. SYSTEMPATH/Events/Events.php
  58. APPPATH/Config/Events.php
  59. APPPATH/Config/Cache.php
  60. SYSTEMPATH/Cache/CacheFactory.php
  61. SYSTEMPATH/Cache/Handlers/FileHandler.php
  62. SYSTEMPATH/Cache/Handlers/BaseHandler.php
  63. SYSTEMPATH/Cache/CacheInterface.php
  64. APPPATH/Config/Routes.php
  65. SYSTEMPATH/Router/RouteCollection.php
  66. SYSTEMPATH/Router/RouteCollectionInterface.php
  67. SYSTEMPATH/Config/Routes.php
  68. SYSTEMPATH/ThirdParty/Escaper/Escaper.php
  69. SYSTEMPATH/Router/Router.php
  70. SYSTEMPATH/Router/RouterInterface.php
  71. APPPATH/Config/Feature.php
  72. APPPATH/Config/Filters.php
  73. SYSTEMPATH/Filters/Filters.php
  74. APPPATH/Controllers/FrontendController.php
  75. APPPATH/Controllers/BaseController.php
  76. SYSTEMPATH/Controller.php
  77. SYSTEMPATH/Helpers/form_helper.php
  78. APPPATH/Helpers/common_helper.php
  79. SYSTEMPATH/Log/Logger.php
  80. SYSTEMPATH/ThirdParty/PSR/Log/LoggerInterface.php
  81. APPPATH/Config/Logger.php
  82. SYSTEMPATH/Session/Handlers/FileHandler.php
  83. SYSTEMPATH/Session/Handlers/BaseHandler.php
  84. SYSTEMPATH/ThirdParty/PSR/Log/LoggerAwareTrait.php
  85. SYSTEMPATH/Validation/FormatRules.php
  86. SYSTEMPATH/Session/Session.php
  87. SYSTEMPATH/Session/SessionInterface.php
  88. SYSTEMPATH/Helpers/array_helper.php
  89. APPPATH/Config/Database.php
  90. SYSTEMPATH/Database/Config.php
  91. SYSTEMPATH/Database/Database.php
  92. SYSTEMPATH/Database/MySQLi/Connection.php
  93. SYSTEMPATH/Database/BaseConnection.php
  94. SYSTEMPATH/Database/ConnectionInterface.php
  95. SYSTEMPATH/Database/MySQLi/Builder.php
  96. SYSTEMPATH/Database/BaseBuilder.php
  97. SYSTEMPATH/Database/Query.php
  98. SYSTEMPATH/Database/QueryInterface.php
  99. SYSTEMPATH/Database/MySQLi/Result.php
  100. SYSTEMPATH/Database/BaseResult.php
  101. SYSTEMPATH/Database/ResultInterface.php
  102. SYSTEMPATH/Log/Handlers/FileHandler.php
  103. SYSTEMPATH/Log/Handlers/BaseHandler.php
  104. SYSTEMPATH/Log/Handlers/HandlerInterface.php
  105. APPPATH/Views/errors/html/error_exception.php
Memory Usage 4MB
Peak Memory Usage: 4MB
Memory Limit: 512M