abuango
Forum Replies Created
-
Forum: Networking WordPress
In reply to: New site says pageok instead of going to loginTry edit the subdomain and specify the directory where the contents of the subdomain will be located to the root of your website or where the main WordPress installation is located.
Forum: Installing WordPress
In reply to: Object not Found during installation (using filezilla)I just visited the link and it appears to be OK.
Forum: Networking WordPress
In reply to: Want to deploy a Multi Site WordPress InstanceHello,
When asked to select the domain name you want to install to, are you only seeing the “MASTER” domain?
You need to have created the subdomain in your cPanel in the domains section before going to installing in the subdomain.
Forum: Fixing WordPress
In reply to: ADD VPN only to CMSI believe they simply want administrative access to be restricted to particular networks. You can check out : Wordfence plugin or Apache Restriction
Forum: Fixing WordPress
In reply to: Login to wp-admin get Not Found, Error 404Yes, you can contact WordPress if its hosted with wordpress.com but if its self hosted, you need to log in to your hosting control panel and check what the problem is.
Forum: Fixing WordPress
In reply to: Image URL not the same as FTP LocationNormally, the image should exist in the folder 2015/01, why you might still be seeing it despite not being on the current server is probably that its pointing to the previous server. Is the domain ‘https://www.bespokeandoak.com/’ pointing to your server or the former designer’s?
Forum: Fixing WordPress
In reply to: Login to wp-admin get Not Found, Error 404What happened before the problem started? Did you change is set anything?
Forum: Installing WordPress
In reply to: PHP versionI doubt if there will be any problem because WordPress officially says
PHP version 5.2.4 or greater (recommended: PHP 5.4 or greater)
according to the requirements page
Forum: Fixing WordPress
In reply to: Acces to WP Admin PanelCheck out This link Might be helpful
Forum: Networking WordPress
In reply to: Receiving "Page Ok" ErrorWhat did you do? Are you hosting with GoDaddy? This is common with Godaddy hosting, this might help: https://blog.brianjohnsondesign.com/pageok-hosting-error-with-godaddy/
simply login to you godaddy account, go under Hosting and access the control panel, if the WordPress was installed from the control panel, you can simply remove the app, else enter the File Manager and delete the content of the website, (If you dont intend to keep a backup).
Forum: Fixing WordPress
In reply to: bulk sms widgetJust as @catacaustic pointed out, it will be really expensive to maintain the site, I have seen a website that started with the hope of getting companies to advertise through their platform, limiting the number of characters the user can send. But the company folded up in a matter of weeks.
However, if you’ve got things covered, this link might help https://www.clickatell.com.au/blog/2010/08/welcome-the-global-village-savvy-developer-creates-bulk-sms-wordpress-plugin/
Forum: Networking WordPress
In reply to: multisite problems subdomains not workinglike i said i created a new subdomain trial.adpopper.tk /home/u645014264/public_html/trial this is the folder name but i can’t change the folder name.
I understand your english … no problem at all. I believe your main wordpress is installed at /home/u645014264/public_html/, based on my own experience with a previous multisite setup, all your subdomain should have same thing /home/u645014264/public_html/
I have tested your hosting provider and discovered they wont allow you to edit your subdomain path. I will suggest you use a better hosting that will allow you better options and flexibility. Or you can simply use the folder option for your multisite instead of subdomain. This is because your DNS entry for the subdomain must point to where the main wordpress is hosted for the .htaccess directives to work
Forum: Networking WordPress
In reply to: multisite problems subdomains not workingFirst, you shouldnt have posted the whole of your wp-config.php as it contains alot of sensitive items that shouldnt be visible to the world.
Second, When you were creating the subdomains, were you setting the folder as the name of the subdomain or You are using /? I found the use of / as you subdomain folder to work.
Third, below is a .htaccess form a similar multisite submain project that is working…
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{SERVER_PORT} !^443$ RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L] RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded ?les RewriteRule ^([_0-9a-zA-Z-]+/)??les/(.+) wp-includes/ms-?les.php??le=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] </IfModule> # END WordPress
Forum: Networking WordPress
In reply to: multisite problems subdomains not workingUsing subdomains can be tricky, it will depend on your hosting configurations and your .htaccess.
When I worked on a similar project, I had to create subdomains in the hosting control panel and specify their location as my WP root installation location which is the root. I am hosting with GoDaddy.
Lets see your .htaccess.