Title: Same database, different look
Last modified: August 30, 2016

---

# Same database, different look

 *  Resolved [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/)
 * Hello to evrybody.
 * My problem is that i have two sites (netshop-eleousas.gr/aroma and aroma-dryos.
   gr) that are using the same database, the same files but they are not looking
   exactly the same. What am i doing wrong?

Viewing 15 replies - 16 through 30 (of 33 total)

[←](https://wordpress.org/support/topic/same-database-different-look/?output_format=md)
[1](https://wordpress.org/support/topic/same-database-different-look/?output_format=md)
2 [3](https://wordpress.org/support/topic/same-database-different-look/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/same-database-different-look/page/3/?output_format=md)

 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659718)
 * Is there an option on cPanel marked “Logs” or anything like that? Who is your
   hosting provider? Have you asked them for more assistance?
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659720)
 * The cPanel’s error log, tells me about four mistakes that have been detected 
   in some other sites hosted by my hosting provider.
 * Is there a way to find the errors only for my site?
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659721)
 * I downloaded the Raw Access Log. Does it help?
 *  [dimitris33](https://wordpress.org/support/users/dimitris33/)
 * (@dimitris33)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659732)
 * I think you have this problem [http://stackoverflow.com/questions/25577981/font-from-origin-has-been-blocked-from-loading-by-cross-origin-resource-sharing](http://stackoverflow.com/questions/25577981/font-from-origin-has-been-blocked-from-loading-by-cross-origin-resource-sharing)
 * and you need to add a rule in your htaccess
 *     ```
       Header add Access-Control-Allow-Origin "*"
       ```
   
 * [https://wordpress.org/support/topic/how-to-find-and-edit-htaccess-file-1?replies=11](https://wordpress.org/support/topic/how-to-find-and-edit-htaccess-file-1?replies=11)
   
   [https://codex.wordpress.org/htaccess](https://codex.wordpress.org/htaccess)
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659742)
 * It didn’t help.
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659749)
 * The problems that i’m facing are the top bar (when you get inside pages, it looks
   ok – only on home page it’s not ok), inside gallery (it loads but it doesn’t 
   show anything) and the icons at the footer (they don’t show up).
 * Any help?
 *  [dimitris33](https://wordpress.org/support/users/dimitris33/)
 * (@dimitris33)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659751)
 * please post your htaccess
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659752)
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /aroma/
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /aroma/index.php [L]
       </IfModule>
   
       # END WordPress
       ```
   
 *  [dimitris33](https://wordpress.org/support/users/dimitris33/)
 * (@dimitris33)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659753)
 * the rule i posted before is missing.
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659754)
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /aroma/
       RewriteRule ^index\.php$ - [L]
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteRule . /aroma/index.php [L]
       Header add Access-Control-Allow-Origin "*"
       </IfModule>
   
       # END WordPress
       ```
   
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659755)
 * It doesn’t help anyway.
 *  [dimitris33](https://wordpress.org/support/users/dimitris33/)
 * (@dimitris33)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659756)
 * please try adding it after the
 * #END WordPress
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659758)
 * It did nothing.
 *  [dimitris33](https://wordpress.org/support/users/dimitris33/)
 * (@dimitris33)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659759)
 * looking at your code the aroma-dryos.gr has references to netshop hence the problem.
   I am not sure how you copied your files and database.
 *  Thread Starter [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * (@dbonovas)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/2/#post-6659761)
 * I only used ftp.
 * I donloaded the files from netshop-eleousas.gr/aroma and then i uploaded them
   on aroma-dryos.

Viewing 15 replies - 16 through 30 (of 33 total)

[←](https://wordpress.org/support/topic/same-database-different-look/?output_format=md)
[1](https://wordpress.org/support/topic/same-database-different-look/?output_format=md)
2 [3](https://wordpress.org/support/topic/same-database-different-look/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/same-database-different-look/page/3/?output_format=md)

The topic ‘Same database, different look’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 33 replies
 * 3 participants
 * Last reply from: [dbonovas](https://wordpress.org/support/users/dbonovas/)
 * Last activity: [10 years, 6 months ago](https://wordpress.org/support/topic/same-database-different-look/page/3/#post-6659770)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
