Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Shafire

Pages: 1 2 3 [4] 5
46
CWP API / Opencart and CWP? No need for WHMCS
« on: February 12, 2020, 02:13:06 AM »
Hi, using abantecart right now but they do not release monthly subscriptions features until maybe April 2020, has or is anyone using opencart with CWP?

47
CentOS Configuration / UPDATE: Abantecart SEO URL issues
« on: February 03, 2020, 01:44:41 PM »
Update here is my settings:

nginx.config copy below:

### Abantecart Settings ###
    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }
    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }
    # Make sure files with the following extensions do not get loaded by nginx because nginx would
    # display the source code, and these files can contain PASSWORDS!
    location ~* \.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(\..*|Entries.*|Repository|Root|Tag|Template)$|\.php_ {
        deny all;
    }
    # Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac).
    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }
    ### Retina images handler. Check cookie and looking for file with @2x at the end of name
    location ~* ^(.*)\.(jpg|jpeg|png|gif)$ {
        set $hidpi_uri $1@2x.png;
        if ($http_cookie !~ 'HTTP_IS_RETINA=1') {
          break;
        }
        try_files $hidpi_uri $uri =404;
    }

    location ~*  \.(jpg|jpeg|png|gif|css|js|ico)$ {
        expires max;
        log_not_found off;
    }
    location ~ /(system/logs|resources/download) {
      deny all;
      return 403;
    }
    location /admin/ {
        location ~ .*\.(php)?$ {
          deny all;
          return 403;
        }
    }
    #rewrite for images for retina-displays
    location ~ / {
        if (!-e $request_filename){
            rewrite ^/(.*)\?*$ /index.php?_route_=$1 last;
        }
    }


### End of AbanteCart settings ###




.htaccess copy below:

RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]

48
Addons / Re: Free billing system for CWP Septemeber 2019???
« on: September 25, 2019, 09:49:05 AM »
An update to the post, i am now using abantecart which is free and very easy to work with. No need to pay whmcs any money.

49
CentOS Configuration / Re: Abantecart SEO URL issues
« on: September 19, 2019, 09:30:47 PM »
Update, on another server i had an issue with SEO URL:

Menu option:
1. WebServer Settings -
2. Manage WebServers Configuration

You can manage domain configuration for webservers here.

Select a Username

(If a configuration exists delete it and SEO URL will work)

This solved SEO URL not working on a different server, something that can be easily overlooked.

50
Addons / Free billing system for CWP Septemeber 2019???
« on: September 10, 2019, 02:36:37 PM »
Hello, i have searched for information on a free billing system that allows you to automate hosting to clients or free hosting customers.
Options:

Boxbilling - not finding any cwp plugin/mod. Free but limited.
thehostingtool - not finding any cwp plugin/mod.
ispsystem - not finding any cwp plugin/mod. Free but limited.

More free billing sytems, well most of them: https://whmpress.com/blog/whmcs/commercial-billing-cms-software-for-hosting-providers/

Please provide any information or links to mods/plugins or is their a billing system specifically designed for CWP? Would be a good money maker if someone did that! ( Support - Add ons etc)

51
MySQL / How to disable sql strict mode?
« on: August 25, 2019, 01:02:39 PM »
Trying to install a script but it is asking to disable sql strict mode. Please advise?
Thanks

52
Updates / Re: missing Softaculous, replaced by Fantastico F3 ??? :( wtf
« on: August 24, 2019, 12:51:33 PM »
All issues resolved i can confirm the issue was: not using an SSL URL to login end-user panel. I am sure there is a setting to make the URL's SSL only somewhere in the panel.

53
Is this with manual 1 account at a time migration? If not try manually.

54
Updates / Re: missing Softaculous, replaced by Fantastico F3 ??? :( wtf
« on: August 23, 2019, 05:30:15 PM »
Trying to create a new database and user seems stuck and broken so can not even manually do anything right now.
Create New Database .. Processing... never stops loading nothing happens.

55
Updates / Re: missing Softaculous, replaced by Fantastico F3 ??? :( wtf
« on: August 23, 2019, 05:22:50 PM »
is your MySQL even loading?  that was my main problem, it kept saying "possibly another process using mysql/d", but i couldnt get it to shut down, killall mysql and killall mysqld and also ps -au |grep mysql  .. by process ID.. in the end it was manually stopping it,
mving those ibdata* files and refreshing them back, as i mentioned.. but*  in the interim, there were a *couple* of cwp_updates,
so.. cant pinpoint it, but eventually it started working.. yeah, i even rebooted my server (it *had* been online for more than 300 Days!  until this.. anyways, keep trying.. i hope they permanently_fix this.. and soon.  mysql is such a pain. :/

Cheers.
X

Rebooted just now after applying your fix, and it is not working. Well at least you tried unlike the admins lol

56
Updates / Re: missing Softaculous, replaced by Fantastico F3 ??? :( wtf
« on: August 23, 2019, 05:09:53 PM »
i think theyre working on it, although, imo it shouldnt have been this long of an issue i agree..

for me, i got my panel and db back but using this method..

i wrote it in a bash_script though.. but you can enter it line-by-line...
its also posted somewhere else in this forum.

cheers.. hope it helps.

---------------------------------------------
/etc/init.d/mysql stop
mv /var/lib/mysql/ibdata1 /var/lib/mysql/ibdata1.bak &
mv /var/lib/mysql/ib_logfile0 /var/lib/mysql/ib_logfile0.bak &
mv /var/lib/mysql/ib_logfile1 /var/lib/mysql/ib_logfile1.bak &
cp -a /var/lib/mysql/ibdata1.bak /var/lib/mysql/ibdata1 &
cp -a /var/lib/mysql/ib_logfile0.bak /var/lib/mysql/ib_logfile0 &
cp -a /var/lib/mysql/ib_logfile1.bak /var/lib/mysql/ib_logfile1 &
/etc/init.d/mysql restart


https://superuser.com/questions/603026/mysql-how-to-fix-access-denied-for-user-rootlocalhost



they 'other' suggested method for the User_panel not logging in was this:


# chattr -i -R /home/*



Tried your mehtod does not work :( Admins reading this: softaculus is needed do not remove no one wants fantastico.

57
Updates / Re: missing Softaculous, replaced by Fantastico F3 ??? :( wtf
« on: August 23, 2019, 04:33:12 PM »
Still no fix? You guys are making at least $10.000 USD per month and can not be bothered fixing this?

58
DNS / How do i: rebuild DNS completely remove dns server and add again
« on: August 23, 2019, 03:18:21 PM »
Hello, my dns messed up instead of spending too much time looking through everything i want to just delete dns or completely reinstall dns and i do not mind terminating the 2 accounts i have on the server. How can i delete CWP dns and reinstall dns?
I am considering just deleting the whole server and installing cwp again to save time but knowing how to delete DNS bind and reinstall it would be easier and good for future reference if i get the issue again.
Thanks

59
Updates / Re: missing Softaculous, replaced by Fantastico F3 ??? :( wtf
« on: August 22, 2019, 02:23:19 PM »
Sandeep, and Igor should be made the main admins as they seem to be the only ones trying to sort this major error. I do believe CWP will be better than cPanel eventually so will stick with you guys. Not everyone will have this same opinion and may choose to leave CWP as this is going to cause issues with end-users getting frustrated and moving to another host.

60
Updates / Re: missing Softaculous, replaced by Fantastico F3 ??? :( wtf
« on: August 22, 2019, 02:14:15 PM »
CWP need to fix this with an update urgently this is not acceptable.

Pages: 1 2 3 [4] 5