Maurilio Rosario Galia Posted March 4 Share Posted March 4 Hallo guys, I cannot rememeber how to enter user name and password to access the admin part of my web site. Sometimes ago I got my website created with processwire.com, and I was given user name and password which I still have. I was also given a URL on the same website to access as admin to do the customization (change pictures, content, etc.). The webmaster has disappeared since then. I cannot remember the URL to enter as administrator, it was a page like http://mywebsite.com/admin or something similar, but I cannot find it anymore. This is the structure of the website, Can anyone tell me which one could be url to access as admin, or how I can find it? Thank you Link to comment Share on other sites More sharing options...
BitPoet Posted March 4 Share Posted March 4 The default URL would be http://yourwebsite.com/processwire/. If it was changed to something else at installation time, and you have access to the database, just look in the table "pages" for the row with the id "2". The value in the "name" column there equals the path to the admin page. 2 Link to comment Share on other sites More sharing options...
Maurilio Rosario Galia Posted March 4 Author Share Posted March 4 What would be the name of the DB? Where can I find it? Link to comment Share on other sites More sharing options...
diogo Posted March 4 Share Posted March 4 51 minutes ago, Maurilio Rosario Galia said: What would be the name of the DB? Where can I find it? The database was named by the developer, or even the hosing server. If you have access to the hosting control panel, you might be able to upload files via FTP. In that case you could upload a "test.php" file to the root directory of the site (this directory would contain the "wire" and "site" directories and the "index.php" file) with the following code in it: <?php include("index.php"); echo $pages->get(2)->httpUrl; Than you can open the url http://mywebsite.com/test.php and the answer will show up. I also attached the file so you can download it ? test.php 3 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now