I'm trying to install a website and I have no idea what to place into those 2 places. Heres the code and by the way I'm using 000webhost., // The local path on your server of ArcadeBuilder, INCLUDING THE TRAILING SLASH. // This should be something like /home/yourdir/public_html/ or C:/Domains/YourDomain.com/ $cfg['instdir'] = 'What Goes Here???'; // The Internet URL of ArcadeBuilder, INCLUDING THE TRAILING SLASH. // This should be something like http://www.example.com/ $cfg['baseurl'] = 'What Goes Here???'; my website name is worldwidelistings.org Thanks for all your help
The former is a variable which points to the file path of ArcadeBuilder (some script, perhaps?) on your 000webhost server. It's the directory where you uploaded the script, probably with your FTP or SCP program. The path can be seen on FTP/SCP program's interface after connecting to 000webhost's server. On shared hosts like yours, the file path is usually something like /home/username/public_html/. But check with your FTP/SCP program or from your 000webhost account settings. I'm sure it's somewhere there. The latter is a variable which points to the actual URL where the above file path can be accessed with your browser. If your website name is worldwidelistings.org, then the baseurl variable is probably "ht_tp://worldwidelistings.org/". Just remove the underline, I couldn't post with the right syntax. In other words, the file path ($cfg['instdir']) is for "internal" use, only to be accessed by the installer script or account owner like you with FTP/SCP program. The URL ($cfg['baseurl']) is for "external" use, and can be accessed normally by anyone with their browser pointing to worldwidelistings.org. Both are needed for the website to function. Hope this helps.