ssh backup01.arvixe.com -l root
cd /disk1 , /disk2, till you find the backup server
find backup
scp secarrol.tar.gz root@cat.arvixe.com:/home/secarrol/public_html/
Regards,
Avesta.
ssh backup01.arvixe.com -l root
cd /disk1 , /disk2, till you find the backup server
find backup
scp secarrol.tar.gz root@cat.arvixe.com:/home/secarrol/public_html/
Regards,
Avesta.
marcos:
marcos:
Yes, our system supports that.
(source: arvand)
Reply to the ticket mentioned below:
Hello Nicholas,
Your installation had several issues:
1) The .htaccess file for wordpress gets in the way of Magento. Because of this you won’t be able to have magento as a subdirectory of a domain running wordpress. I suggest setting up a different domain to have magento as the root directory or use a subdomain (IE magento).
2) Magento needs all files to have the permission 755 or lower. Some files had a higher permission so it was giving an internal server error.
3) PHP flags can not be set using the ‘php_flag’ directive inside .htaccess. I removed those from the .htaccess for Magento.
I’ve renamed your .htaccess file in your root directory to htaccess to test and Magento works fine now (but your wordpress is most likely broken). I’ve changed the htaccess back to .htaccess so your wordpress works fine.
Let me know if you need further assistance.
————————————–
Check ticket (UMV-146758) and then post the solution in arvixe blog under magento section. Though zee may not post what he did, it must be in the htaccess. Compare original htaccess files pasted below with changed ones:
.htaccess in his public_html(which has the wordpress installation within):
AddType application/java-archive jar
AddType text/vnd.sun.j2me.app-descriptor jad
AddType application/sdp sdp
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RedirectMatch temp ^/wp/$ http://pistachiomonkey.com/
RewriteCond %{HTTP_HOST} ^pistachiomonkey.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.pistachiomonkey.com$
RewriteRule ^xanthos\/?(.*)$ “http\:\/\/xanthos\.co\.uk\/$1″ [R=301,L]
.htaccess inside the magento subdirectory
############################################
## uncomment these lines for CGI mode
## make sure to specify the correct cgi php binary file name
## it might be /cgi-bin/php-cgi
# Action php5-cgi /cgi-bin/php5-cgi
# AddHandler php5-cgi .php
############################################
## GoDaddy specific options
# Options -MultiViews
## you might also need to add this line to php.ini
## cgi.fix_pathinfo = 1
## if it still doesn’t work, rename php.ini to php5.ini
############################################
## this line is specific for 1and1 hosting
#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php
############################################
## default index file
DirectoryIndex index.php
<IfModule mod_php5.c>
############################################
## adjust memory limit
# php_value memory_limit 64M
php_value memory_limit 128M
php_value max_execution_time 18000
############################################
## disable magic quotes for php request vars
php_flag magic_quotes_gpc off
############################################
## disable automatic session start
## before autoload was initialized
php_flag session.auto_start off
############################################
## enable resulting html compression
#php_flag zlib.output_compression on
###########################################
# disable user agent verification to not break multiple image upload
php_flag suhosin.session.cryptua off
###########################################
# turn off compatibility with PHP4 when dealing with objects
php_flag zend.ze1_compatibility_mode Off
</IfModule>
<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
<IfModule mod_deflate.c>
############################################
## enable apache served files compression
## http://developer.yahoo.com/performance/rules.html#gzip
# Insert filter on all content
###SetOutputFilter DEFLATE
# Insert filter on selected content types only
#AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript
# Netscape 4.x has some problems…
#BrowserMatch ^Mozilla/4 gzip-only-text/html
# Netscape 4.06-4.08 have some more problems
#BrowserMatch ^Mozilla/4\.0[678] no-gzip
# MSIE masquerades as Netscape, but it is fine
#BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don’t compress images
#SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
# Make sure proxies don’t deliver the wrong content
#Header append Vary User-Agent env=!dont-vary
</IfModule>
<IfModule mod_ssl.c>
############################################
## make HTTPS env vars available for CGI mode
SSLOptions StdEnvVars
</IfModule>
<IfModule mod_rewrite.c>
############################################
## enable rewrites
Options +FollowSymLinks
RewriteEngine on
############################################
## you can put here your magento root folder
## path relative to web root
#RewriteBase /magento/
############################################
## workaround for HTTP authorization
## in CGI environment
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
############################################
## always send 404 on missing files in these folders
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
############################################
## never rewrite for existing files, directories and links
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
############################################
## rewrite everything else to index.php
RewriteRule .* index.php [L]
</IfModule>
############################################
## Prevent character encoding issues from server overrides
## If you still have problems, use the second line instead
AddDefaultCharset Off
#AddDefaultCharset UTF-8
<IfModule mod_expires.c>
############################################
## Add default Expires header
## http://developer.yahoo.com/performance/rules.html#expires
ExpiresDefault “access plus 1 year”
</IfModule>
############################################
## By default allow all access
Order allow,deny
Allow from all
############################################
## If running in cluster environment, uncomment this
## http://developer.yahoo.com/performance/rules.html#etags
#FileETag none
It appears that the Character Collation, which is set in phpmyadmin, causes this problem. Anything ending in general_ci seems to fix almost all problems. Such as latin_general_ci or utf8_general_ci will work.
But, there is 1 user who still has some small problems after that is set. The ticket number is WIE-284351 . First, many characters were showing black boxes with question marks in them. After changing it to anything_general_ci, all of that was fixed. Anyway, atleast 1 page was showing some weird characters just a couple times in it. It was odd that some pages were showing this and not otheres. Will update blog when and if a solution is found for this.
Note that this type of problem is usually caused because of users who copy and paste information into forms or directly into phpmyadmin. Its best to just avoid this type of behaviour all toghethor.
Install Mozilla first,
Then make this thread
http://www.staff.arvixe.com/forum/index.php?topic=142.0
the homepage and login, check “remember password”. Just bring up Mozilla everytime you have to restart the server and continue.
Presetup Checks:
1) Add all assigned IP addresses to the Network Adapter
Start -> Settings -> Network Connections -> Right click on PublicNetworks -> Properties -> 1 click on “Internet Protocol Version 4 (TCP/IPv4) -> Click on Properties on bottom right -> Advanced in the bottom right -> Check if all IP addresses on the server info thread is listed there. If not, click “Add” and add them.
2) Make sure the hostname is correct
Simply right click on Computer and click Properties. Make sure both Computer Name and Full Computer Name match the name on the server’s thread.
All installers labeled with “x86 such as one of the installer mentioned at this link:
“>>> Download and install MSSQL 2008 Express @ http://www.microsoft.com/downloads/details.aspx?FamilyId=B5D1B8C3-FDA5-4508-B0D0-1311D670E336&displaylang=en
”
is 32 bit. We need the x64 installer which is 64 bit.
Ckcik on Installation:
Choose: New SQL Server stand-alone installation
Select All Features
Default Instance
Server Configuration: Create user with random password on the system
-To create a user: Right click on My Computer -> Manage -> Configuration -> Local Users and Groups -> Right click -> New User -> Uncheck “user must change password at next login” and check “Password never expires” fill out everything else and continue with sql setup…
Cick on “Use the same account for all SQL Server services” and type in the same username and password you just made.
Mixed Mode: Generate 12 character password and use. RECORD PASSWORD IN SERVER’S THREAD *IMPORTANT*
- click Add Current User in bottom left, continue…
Install Native mode. Default configuration.
Click next all the way through to installation, congratulations! continue…
Configuration:
Open SQL Server Configuration Manager: Under SQL Server Network Config -> Protocols for SQLEXPRESS -> Enable All
Under TCP/IP -> IP Addresses Tab -> Scroll down to IPAll -> TCP Dynamic Ports = ”, TCP Port = ‘1433′
Restart SQLEXPRESS by going to start - > Microsoft SQL Server 2008 -> Microsoft SQL server Management Studio -> Right click the server/SQLEXPRESS-> Restart
Install FASTCGI: said “update does not apply to your system”
To remove a dns record:
Example: ticket (YVR-863300) , domain mobile.thegreatfoodguide.com
1)login to server
2)Go to C:\BIND2\dns\etc
3)Find the file that has the domain in the filename and delete it: db.mobile.thegreatfoodguide.com (may already not exist, if it does not exist then its okay)
4)Then find named.conf in that same C:\BIND2\dns\etc directory.
5)Open it, find all instances of domain(mobile.thegreatfoodguide.com) and delete the entire function/section for that domain.
6)Save and then the error should dissappear.