Posts

Showing posts from June, 2012

MySQL Workbench installation error

I tried installing MySQL Workbench 5.2 on Win 7 64-bit machine. I got this error message: The program can't start because MSVCR100.dll is missing from your computer. Try reinstalling the program to fix this problem . I uninstalled the program. I downloaded and installed Microsoft Visual C++ 2010 Redistributable Package (x86) from this link: http://www.microsoft.com/en-us/download/details.aspx?id=5555. Then I reinstalled MySQL Workbench and it started working! Just make sure you install MySQL Workbench 5.2 x86 (32-bit) and the Microsoft Visual C++ 2010 Redistributable Package (x86) 32-bit and not x64.

Concrete 5 : Page Not Found error fixed

Error: Page Not Found - No page could be found at this address.  I have recently encountered this error in Concrete 5 (My C5 version is 5.5.1). The new page I created was like this: http://localhost/rwt/rwt-test When I click to a link from the front end to go this URL, I get the error "Page Not Found - No page could be found at this address". But if I go this same page through Dashboard's Page Search feature that has the URL something like this: http://localhost/rwt/index.php?cID=241, then there seems no problem- I can comfortably access this page. So why can't I access the page from the first URL above? I've noticed if you use the site name as part of the page name, your page is not found! I don't know why but once I removed the site name from the page name, ie when I converted my original URL to this: http://localhost/rwt/test, it started working again. Hope this helps some of you.