I used to develop my website on Windows using Easyphp 1.8
Decided to migrate on this beautiful Linux that is Ubuntu.
So I had to install tools to continue my website development. Using apt-get, I installed the php5 , mysql5 and apache2.
I then transferred all my database on the new mysql server, and website folders to the /var/www
No error during this process ( except some permissions problems ).
The problem now is that my website doesn't have anythig but TEXT ONLY !!
Menu, Blocks, pictures are not displayed anymore. I have only the homepage available, with all the articles relied on it.
No link on the title of the articles, only one link available : the read more link which then redirect me to the main article, but nothing else is displayed.
No theme available, everything is white with black font. Cannot even access to the administer page ( because no block or link available )
It seems there is no css file, but i already check it, all my themes there with their css.
Have a look to the picture in attachment...
I really don't know what to do as there is no error anywhere. Your help is welcome !
| Comment | File | Size | Author |
|---|---|---|---|
| Screenshot-CedricM - Firefox.png | 55.65 KB | PePiToO |
Comments
Comment #1
dovik commentedyour problem may be an URL Rewrite issue.
.HTACCESS (override) are not allowed by default when you use Apache package from Debian/Ubuntu so URL Rewriting order, configure on another server, cannot be used before you allowed .HTACCESS.
some hints if you think that's your problem :
sudo gedit /etc/apache2/sites-enabled/000-default
replace "AllowOverride None" by "AllowOverride All"
in
sudo a2enmod rewrite
sudo /etc/init.d/apache2 reload
Comment #2
PePiToO commentedI just tried it :
sudo gedit /etc/apache2/sites-enabled/000-default
replace all the "AllowOverride None" i can find by "AllowOverride All" then relaod apache,
still the same problem, and i am more and more lost... Note that the screenshot you have above normally use the garland theme !
Comment #3
PePiToO commentedCould it be the GD library that doesn't work ? It is already install, but how to know if it works or not ?
Comment #4
PePiToO commentedgd is working...what else i can do ? go back to windows ? :x
Comment #5
mile23I hope this worked itself out.