I already setup umbraco in my localhost. And it's works perfectly.
I uploaded all the files to webhost.
Also, I migrated the database from localhost to webhost using SQL Server Import & Export Data Wizard (because I use SQL Server 2014 instead of SQL CE)
Ok, so it's working perfectly in front end...
But whenever I access to admin panel (http://mywebsiteexample.com/umbraco),
there will be a login box...
so after I fill up the login box and click login, the screen shows nothing..
Why?
could someone please help me?
I use the freehosting at http://www.somee.com
You might have only copied the schema and forgotten the data from the database.
I believe running the installer will generate the content based on the XML, if I'm correct.
Try this by going to: www.website.com/install
Related
I have an ASP.NET project based on WebForms that was initially published on Azure server. Just recently I have made the website point to a different custom domain and since then I'm getting this error whenever I try to upload a file. I don't have this issue on my local server though. I'm using a jQuery library "pupload" to publish files. Just soon as I click the "select files" button, I'm redirected to a page where this error is displayed.
This issue wasn't there before so I figured this might me after I changed the domain. Can someone help me out with this.
You can use FileZilla to change permission for a folder/directory in azure.
Download your publish profile from portal and connect thru FTP(set the connection in filezilla) and set the permissions.
i have made a site in asp.net with backend as Access database , later i replaced it with mysql database,
The problem is i have uploaded my entire site on a host which provides the asp.net hosting and also the home page is coming perfectly fine, but when i click on any buttons on home page nothing seems to happen it is redirected to home page only,
Also when i access any other page except the home page, it gives run time error,
I have setup mysql database on my host and also tried with sql server, but same results,
checked connection strings with the hosting provider but of no help,
can someone suggest me what is there i am missing at the time of upload.
Thanks and Regards
What i want to do:
Develop a Wordpress-based website with a local Wordpress installation (and xampp).
Migrate this developed website on my webserver.
What's the problem:
After putting the website on the webserver each link in the navigation references to "127.0.0.1/wordpress/...".
I'm not even able to login to the Wordpress Backend on the webserver, because the "login.php" (or something) is also referenced on the localhost"
My Question:
Do any of you know how I can change this permalinks to the URL of the webserver the website is actually deployed on?
best regards
matt
edit:
Another thing that i noticed is, that although I changed the URL in the wp_posts table manually, this database entries are changed by wordpress, so next time, after opening the website, the URLs in the database contains the 127.0.0.1 part
When migrating the database from your local machine to a remote server, you should export your mysql database that is on your local machine to a file. Then perform a search and replace changing "127.0.0.1/wordpress/..." to "www.yourdomain.com/path/to/wordpress" and then import that file to your new mysql database.
Since you have already moved everything over, you can just export the database tables from your remote server to a file, do the search and replace on that, and reimport it. When exporting the database make sure to check "Add Drop Table / Drop View".
It's very simple, do everything you need in local, when you're ready to deploy, export your local database from phpMyAdmin, open the file and do "search and replace" your local path with your server path.
Chnage the connection string inside config.php and you're done.
I have a set of ASP.NET membership tables online with my hosting with godaddy. I can run my site locally and connect to the online membership table fine and can create accounts etc.. So basically I got everything hooked to reference everything online.
But I get a 500 Internal Service error when I try to view the site. I can't look at the event viewer cause godaddy does not allow that. When I rename the web.config and refresh the site I can either get to the login or register page but when it try to save data it bombs.
So is their a good web.config analyzer that can tell me whats wrong? Cause it works locally referencing online db so it should work fine, right?
Thanks
You can get a lot of information out of trace or add a logger like log4net and write log messages to a text file. That can tell you what is wrong.
I'm taking the database that I created with SQL server express and putting it on a server in a datacenter. There are 2 database files in AppData folder: the aspnetdb.mdf file and the file I created for my site MySite.mdf. I'm using the ASP login control and that works with the ASPNETDB.mdf file and it's working. If I log in without the correct username/pwd, it'll display a bad login message.
However, as soon as I login and the site goes to make a request to MySite.mdf, I get an error "Invalid object name 'dbo.Users'." which is the name of the first table the site looks into after the login.
I've attached the MySite.mdf file to the server and copied the connection string the hosting company is generating into the web.config file and left the rest as is.
Could it be that I can't attach a sql express file?
Please let me know if you've run into this issue or if you have any suggestions.
Thanks.
Based on your description and the following assumptions:
your authentication still works
you haven't mentioned attaching your aspnet.mdf
you have separate databases for security and datastore
you're probably still testing locally
I'd guess that your application is still pointing at your local aspnet database - that's why authentication still works. Typically in a shared host, you'll have to install/insert the asp.net security database items to your main database. See This MSDN page for instructions on setting up the asp.net database objects.
You need to establish whether or not you've actually attached your database or not. Is there an online "database manager" you can access? Or can you connect to your database from SSMS or your dev environment and run a simple query?