Since our community Is just starting to build we will not be able to afford a price based solution.
In future when there is a need for scalability then we can go for opting price plans.
Users 10
Actually wanted to use CIVICRM but since the hodt domain.com does not enable trigger we are not able to use. Any solution to use CIVICRM is also welcome.
I expect I can get a solution in this forum.
Thank you.
]]>I’m not new to web development, but I am new to WordPress, and I am horribly confused.
I’ve read several ways to map domains to WordPress, add WP templates to FTP servers, 17$ to use a domain I already paid for, etc. When I go to my WordPress Admin Login, and follow the steps provided by Virtue Premium’s website, I am supposed to have an “Add New” button under appearance, but there is no button there. I’ve heard of www.remarpro.com but haven’t found a way to access that same menu on .org. I downloaded WordPress 4.3.1 but have no idea how to install it because I have no idea what I’m doing that needs a database..
I am used to uploading files (.php .html .css) directly to the server via WinSCP and manipulating things that way, but I bought a theme to solve my lack of CSS skills. Here are the facts:
-I have purchased a domain from Domain.com
-Domain.com is hosting the site, and provided the FTP information to me.
-I purchased Virtue Premium, a theme for WordPress.
-I have a free account with WordPress right now that is on a dummy .wordpress.com extention, I intend to change this.
-I can access my server through WinSCP (FTP)
-All I have is a home.html, and main.css in the /public_html directory.
If anyone could tell me, in as simple a way possible, exactly what I have to do to upload my theme to this server, I’d be incredibly appreciative.
]]>Anyone has had this issue?
Thanks in advance.
]]>I have installed wordpress at domain.com, blog.domain.com, ads.domain.com, article.domain.com and smf forum at forum.domain.com and pligg at domain.com/bookmarks.
My domain.com for all domain,subdomain and subdiretory is working but when i try to go www.domain.com or www.blog.domain.com these are not working.
What do i need to add or edit in .htaccess file?
My .htaccess for root domain means domain.com is as follows –
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
# BEGIN wtwp_cache
# END wtwp_cache
# BEGIN wtwp_security
# END wtwp_security
For seeing this error please visit https://aaatechnologyservices.com/ and https://www.aaatechnologyservices.com/
Please help me,
One thing i want to know more that is it not possible to make https://www.aaatechnologyservices.com/ primary and https://aaatechnologyservices.com/ secondary, it means i want to know that when user login to https://aaatechnologyservices.com/ it will redirect to https://www.aaatechnologyservices.com/?
Many Thanks In Advance !!!!
]]>ive tried the define( ‘NOBLOGREDIRECT’, ‘www.domain.com’ ); which worked but then i ran into the problem with 404’s not being called when ended.
i also tried
# Redirect non-www urls to www
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule (.*) https://www.example.com/$1 [R=301,L]
this did not work no matter where i placed this in my htaccess file…
so my only solutions has been to add this function
function ms_block_wp_signup() {
if( strpos( $_SERVER[‘SCRIPT_NAME’], ‘wp-signup.php’ ) !== false ) {
wp_redirect( get_option(‘siteurl’) );
die;
}
}
add_action(‘wp’, ‘ms_block_wp_signup’, 99);
but this add a full two seconds to page load times and im worried about this not being SEO friendly being a simple redirect rather then a 301
im kind of in need of some assistance im really banging my head on this one.
here is my htaccess file as is today.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) garagedoorsolutionstx/$1 [L]
RewriteRule ^(.*\.php)$ garagedoorsolutionstx/$1 [L]
RewriteRule . index.php [L]
</IfModule>
# END WordPress
# Redirect non-www urls to www
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule (.*) https://www.example.com/$1 [R=301,L]
# BEGIN wtwp_cache
<IfModule mod_mime.c>
# Text
AddType text/css .css
AddType application/x-javascript .js
AddType text/html .html .htm
AddType text/richtext .rtf .rtx
AddType text/plain .txt
AddType text/xml .xml
# Image
AddType image/gif .gif
AddType image/x-icon .ico
AddType image/jpeg .jpg .jpeg .jpe
AddType image/png .png
AddType image/svg+xml .svg .svgz
# Video
AddType video/asf .asf .asx .wax .wmv .wmx
AddType video/avi .avi
AddType video/quicktime .mov .qt
AddType video/mp4 .mp4 .m4v
AddType video/mpeg .mpeg .mpg .mpe
# PDF
AddType application/pdf .pdf
# Flash
AddType application/x-shockwave-flash .swf
# Font
AddType application/x-font-ttf .ttf .ttc
AddType application/vnd.ms-fontobject .eot
AddType application/x-font-otf .otf
# Audio
AddType audio/mpeg .mp3 .m4a
AddType audio/ogg .ogg
AddType audio/wav .wav
AddType audio/wma .wma
# Zip/Tar
AddType application/x-tar .tar
AddType application/x-gzip .gz .gzip
AddType application/zip .zip
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
# Text
ExpiresByType text/css A31536000
ExpiresByType application/x-javascript A31536000
ExpiresByType text/html A3600
ExpiresByType text/richtext A3600
ExpiresByType text/plain A3600
ExpiresByType text/xml A3600
# Image
ExpiresByType image/gif A31536000
ExpiresByType image/x-icon A31536000
ExpiresByType image/jpeg A31536000
ExpiresByType image/png A31536000
ExpiresByType image/svg+xml A31536000
# Video
ExpiresByType video/asf A31536000
ExpiresByType video/avi A31536000
ExpiresByType video/quicktime A31536000
ExpiresByType video/mp4 A31536000
ExpiresByType video/mpeg A31536000
# PDF
ExpiresByType application/pdf A31536000
# Flash
ExpiresByType application/x-shockwave-flash A31536000
# Font
ExpiresByType application/x-font-ttf A31536000
ExpiresByType application/vnd.ms-fontobject A31536000
ExpiresByType application/x-font-otf A31536000
# Audio
ExpiresByType audio/mpeg A31536000
ExpiresByType audio/ogg A31536000
ExpiresByType audio/wav A31536000
ExpiresByType audio/wma A31536000
# Zip/Tar
ExpiresByType application/x-tar A31536000
ExpiresByType application/x-gzip A31536000
ExpiresByType application/zip A31536000
</IfModule>
<FilesMatch "\.(?i:css|js|htm|html|rtf|rtx|txt|xml|gif|ico|jpg|jpeg|jpe|png|svg|svgz|asf|asx|wax|wmv|wmx|avi|mov|qt|mp4|m4v|mpeg|mpg|mpe|pdf|swf|ttf|ttc|eot|otf|mp3|m4a|ogg|wav|wma|tar|gz|gzip|zip)$">
<IfModule mod_headers.c>
Header set Pragma "public"
Header append Cache-Control "public, must-revalidate, proxy-revalidate"
Header unset ETag
</IfModule>
</FilesMatch>
<FilesMatch "\.(?i:css|js|gif|ico|jpg|jpeg|jpe|png|pdf|swf|ttf|ttc|eot|otf)$">
<IfModule mod_headers.c>
Header unset Set-Cookie
</IfModule>
</FilesMatch>
# END wtwp_cache
# BEGIN wtwp_security
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^wp-admin/includes/ - [F,L]
RewriteRule !^wp-includes/ - [S=3]
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L]
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L]
RewriteRule ^wp-includes/theme-compat/ - [F,L]
</IfModule>
<Files "wp-config.php">
Order allow,deny
Deny from all
</Files>
Options -Indexes
# END wtwp_security
]]>Any idea of what can I do?
]]>On the 23rd domain.com announced by email that they were undergoing a software transition to a new improved control panel. Curious that this immediately preceded the above corruption by a WP plugin. I have my doubts. Anyone?
I am still awaiting a written explanation from them.
]]>I’ve Googled around and read the documentation, it mentions virtual hosts but I see no way of setting that up in my hosting control panel. Other sites suggest htaccess edits, but my hosts don’t let me access this. I’m really lost. At the moment if I go to the https version of the login page I just get 404 file not found.
Can anyone point me in the right direction please?
]]>I am hosted by Domain.com. I am trying to install a third party theme – vostok. I have read as much documentation as I can find as well as searched various support pages, but can’tfind the answer to this question.
When I go to upload the theme in its zipped form, I browse to it and hit upload, and the browse link just dissapears and nothing happens.
I then tried to FTP into the …/wp-content/themes folder. but I can’t create a new folder or move anything into the folder – upload, create etc. greyed out/no permission.
I can install a new theme from the WP gallery and it appears in the …/wp-content/themes, so I seem to have the right directory, I just can’t get the vostok folder into it!
Any suggestions much appreciated.
Cheers
]]>