WYSIWYG CMS ( CMS php include ) ***UPDATED 15/10/2009***

In this section you can share self-made extensions with other users of WYSIWYG Web Builder.
There is a dedicated section for commercial extensions.
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

When I upload an image it is placed in the uploads folder.
But it's stil not showing up on the page.
I asume that your webbuilder page have the extension php otherwise I have no idea why it does not work for you :?
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Post by Patr100 »

Yes it is
I can edit/add text no problem but uploaded pics still just appear as placeholder with the red cross.
I'll try again later

-
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Re: Can´t see the Tiny mce editor

Post by Patr100 »

Ukra wrote:
Is there an alternative to the ftpmanager?

Ulrik

I use Filezilla (its free) jusst google it.
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

Patr100 wrote:Yes it is
I can edit/add text no problem but uploaded pics still just appear as placeholder with the red cross.
I'll try again later

-
Look in the "page html" from the page with the extension if the path to the image is correct,if yes than it can only a permission problem.

Maybe.....in the uploaded folder are more folders for the content to upload,did you give these folders permissions.
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Post by Patr100 »

Ok I sorted it.


Eddy wrote:If you have used pages in folders ( page not in the same directorie as the cms) than the path to the file is not correct.( php include in the WB page )

Do you have this structure on your server?
Look also to the read and write settings (755) or (777) from your folders.

content
jscripts
uploaded
login.php
webbuilder pages.html
webbuilder pages.html
webbuilder pages.html




Unless I was missing something the above was slightly misleading
The problem was the actual path to the image was
root/content /uploaded

when the structure was
root/uploaded

I manually moved the uploaded folder to
root/content/uploaded

and it worked.
-
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I`am happy you found the problem!
I dont know what is different on your server but it works now and thats importand. :D

But can you now upload images with the filemanager to the uploaded folder?
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Post by Patr100 »

Eddy wrote:I`am happy you found the problem!
I dont know what is different on your server but it works now and thats importand. :D

But can you now upload images with the filemanager to the uploaded folder?
Hmmm Good question just tried it doesn't like it. :(

"Unable to locate the specific folder: ../../../../uploaded/"


-
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

Its in config.base.php , if you make changes in this file than make first a copy,I have work many hours to make all files work together and i dont know if everything wil work if you make changes in this file.

\jscripts\tiny_mce\plugins\ajaxfilemanager\inc\config.base.php


CONFIG_SYS_DEFAULT_PATH is the default folder where the files would be uploaded to and it must be a folder under the CONFIG_SYS_ROOT_PATH or the same folder these two paths accept relative path only, don't use absolute path*/ define('CONFIG_SYS_DEFAULT_PATH', '../../../../uploaded/'); //accept relative path only define('CONFIG_SYS_ROOT_PATH', '../../../../uploaded/');
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Post by Patr100 »

Will have a look

While I'm in config.base.php what about the addiitional security update option?

How do I change the log in details ?

Change false to 1 - I can do that

the userrname and password are obviolsy encrypted so do we just leave that as is?

=
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

In the pdf is an example.
Change also the password and login name.
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Post by Patr100 »

Eddy wrote:In the pdf is an example.
Change also the password and login name.
yes but where? They are encrypted inthe file - The password can be changed via the extension but not the login name?
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

No,the password in the extension properties window is for the login page to the editor.

The password and login for the filemanager is in the config.base.php
I cannot make this as option in the extension properties window because these files are not in the extension.

Its not encrypted you can change the password and login in the file with notepad,or open the file in a php editor to change the names.

In a php editor the file looks like this

Code: Select all

<?php
	/**
	 * sysem base config setting
	 * @author Logan Cai (cailongqun [at] yahoo [dot] com [dot] cn)
	 * @link www.phpletter.com
	 * @since 1/August/2007
	 *
	 */
	

error_reporting(E_ALL);	
//error_reporting(E_ALL ^ E_NOTICE);	
	
	

	//Access Control Setting
	/**
	 * turn off => false
	 * by session => true
	 */
	define('CONFIG_ACCESS_CONTROL_MODE', false); 	
	define("CONFIG_LOGIN_USERNAME", 'sdfgdfgdfgdgfdgsdfsdfg3454dsfb5e');
	define('CONFIG_LOGIN_PASSWORD', 'ASDF@#%JHGSDFGasdkjfh3812764ksdjfbhkjxcf');
	define('CONFIG_LOGIN_PAGE', 'ajax_login.php'); //the url to the login page
	
	//SYSTEM MODE CONFIG
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Post by Patr100 »

I know this is what I am referring to - I had it open in notepad

You mean the long random password and login - is it automatically generated ?
is it always the same unless we manually change it?

define('CONFIG_ACCESS_CONTROL_MODE', false);
define("CONFIG_LOGIN_USERNAME", 'sdfgdfgdfgdgfdgsdfsdfg3454dsfb5e');
define('CONFIG_LOGIN_PASSWORD', 'ASDF@#%JHGSDFGasdkjfh3812764ksdjfbhkjxcf');
define('CONFIG_LOGIN_PAGE', 'ajax_login.php'); //the url to the login page
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

No,its always the same unless you manually change it.

The long password and login are inserted from the developer as example.
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Post by Patr100 »

Eddy wrote:No,its always the same unless you manually change it.

The long password and login are inserted from the developer as example.
Ok but we don't ever enter it?
When is it used?
So it's best to change it to something else anyway?
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

Ok but we don't ever enter it?
When is it used?
So it's best to change it to something else anyway?
If you enable it (Change false to 1) you have to type the password and login if you need to upload a file with the filemanager.

You should enable this option so nobody else can upload files to your server!
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Post by Patr100 »

Oh I get it .


I assume the config.base.php file itself is not vulnerable to attack without some form of encrypted username/password ?
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I assume the config.base.php file itself is not vulnerable to attack without some form of encrypted username/password ?
Its a php file you cannot read the file in a browser,for more information you have to ask the developer,I asume its very secure otherwise they would have changed the login for the filemanager.
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I have not tested if this also change the editor backgroundcolor.
I have inserted a css file to make your own styles.
Go to login.php and remove the two // and make your style in:

Code: Select all

jscripts/tiny_mce/plugins/template/css/content.css
This code is in login.php.

Code: Select all

 // Example  content CSS (should be your site CSS)
 //content_css : "jscripts/tiny_mce/plugins/template/css/content.css",

Related forums.
http://tinymce.moxiecode.com/punbb/view ... hp?id=1138
http://tinymce.moxiecode.com/punbb/viewtopic.php?id=288
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

All your questions are answered in the pdf.
Read also in this topic ,i have answered almost every problem.

Make sure that all files are in the same directorie as your webbuilder pages.

You can use the build-in ftp to cmod the files/folders.( click explore in the publish window)
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I have updated the first post in this topic with the most asked questions.

This extension works almost the same as the News Writer extension from the official download page,but the News Writer is easyer to install.

-Insert the extension on the page.
-change password etc in the properties window.
-make a textlink to the login page.
-upload the wb page ( page extension = php )
-upload with ftp the jscripts folder to the same directorie.
-change the file permissions to 777

Make sure all files and WB pages are in the same directorie!

You can use the build-in ftp to cmod the files/folders.( click explore in the publish window)

I don`t know what to explain more than this to make it work for you :?
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

Maybe the server from your customer had a problem :?

I have lilcms v2 used but changed the php code to make it compatible with php5 and used not the same editor.

You can choose html , txt or php for the content pages.
I have inserted avi and flash video`s withoud any problem in one page. (together more than 5 mb.)
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

if you want do a test copy and paste some text with links repeatedly for a longggggggg scroll and see how it performs then.
If you used .txt pages how did the links than work?
Install the cms on your server and try if you have the same problem.
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

Hello Eddy,

On a page I have created 3 windows that are using the cms extension. They are working perfect. Bit moment I am adding another window of the cms extension, it is giving the following error:
Warning: include(content/adshome.html) [function.include]: failed to open stream: No such file or directory in /home2/eye/public_html/demo/index.php on line 321

Warning: include(content/adshome.html) [function.include]: failed to open stream: No such file or directory in /home2/eye/public_html/demo/index.php on line 321

Warning: include() [function.include]: Failed opening 'content/adshome.html' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home2/eye/public_html/demo/index.php on line 321

The three 'Special programs' section has the cms installed but the long column you see on the right, read the error message. I initially tried the long white part in a master page and then to put on all pages but it gave the same error (by the way this site has been updated to 6.5.1)
Last edited by me.prosenjeet on Sun Dec 13, 2009 9:05 pm, edited 1 time in total.
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

Only objects on a masterpage are included.
This code is in page html and wil not work with masterpages.

But you can with wb 6.5 include your code in all pages with:
Menu-->Page-->site html -->beginning of body.

Example:

Code: Select all

<div id="news1" style="position:absolute;overflow:auto;left:259px;top:137px;width:255px;height:87px;z-index:0;
border:1px #A52A00 solid">   
<?php include('content/news.html') ?>
</div>
Or insert the include code in HTML object on the masterpage,that maybe wil also work. :?
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

Thanks a load Eddy, I could make it work
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

First: Any reason why image upload through the script is not happening!
I tried several times. Can you help please eddy, I can give you the admin login for you to have a look.

Second: All remote hosted (tinypic) images I can use but when ever I am hyper linking them, they show a marked purple border...how we can remove that?
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

me.prosenjeet wrote:First: Any reason why image upload through the script is not happening!
Are al files/folders in the same directorie?
Did you see an error if u use the ajax file uploader?
Did you CMOD the folders to read and write.
Almost all problems with the file manager are answered in this topic.
Second: All remote hosted (tinypic) images I can use but when ever I am hyper linking them, they show a marked purple border...how we can remove that?
Insert : border="0"

Image
Last edited by Eddy on Mon Dec 14, 2009 2:14 am, edited 2 times in total.
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

Eddy wrote:
me.prosenjeet wrote:First: Any reason why image upload through the script is not happening!
Are al files/folders in the same directorie?
Did you see an error if u use the ajax file uploader?
Did you CMOD the folders to read and write.
Almost all problems with the file manager are answered in this topic.]
As far as I see all the points you have mentioned I have taken care of. If you want I can post screenshot of each step I do in picture upload...or...I can give you the link with pass to check. Please give me a contact email.
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

Here are the screenshots step by step

Image



Image



Image



Image



Image
Last image has the message ' [Object Error]'..image added was a jpeg
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I really have no idea what that error means,i found this on another forum but it was not the same error.

Maybe it helps.
Maybe your host added mod_security and recompiled Apache.
and have to white list ajaxfilemanager to get it to work properly.
I think the best is if you ask the developer team from the file manager.
http://www.phpletter.com/
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

Insert : border="0"
Thanks Eddy, that worked! :D

For the second issue I am talking to my host to see if the problem is at their end.
Still I would insist if you had a look at the thing personally. Please mail me your email id so I may send you the details of login etc
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

If the file manager could not find the folder or files than I could help you but with this error I have no idea where to search?
But I think its a server problem otherwise more users would have posted this problem.

Please send a mail to the developer team from the file manager.
http://www.phpletter.com/
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I have just downloaded the extension and the files are there.

Download WYSIWYG CMS. (Please read the pdf !!)
http://www.mediafire.com/file/atj2o2got ... nclude.zip
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

Eddy,
How can we change the background colour of a page in the "content" folder?

If the answer is try HTML instead of design view while editing, I am still unable to do.
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I have not tested if this also change the editor backgroundcolor.
I have inserted a css file to make your own styles.
Go to login.php and remove the two // and make your style in:

Code: Select all

jscripts/tiny_mce/plugins/template/css/content.css 

This code is in login.php.

Code: Select all

 // Example  content CSS (should be your site CSS) 
 //content_css : "jscripts/tiny_mce/plugins/template/css/content.css", 


Related forums.
http://tinymce.moxiecode.com/punbb/view ... hp?id=1138
http://tinymce.moxiecode.com/punbb/viewtopic.php?id=288
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

With this will it be possible to change the background of few of the pages? or will it implement on all the pages in the "content" folder?
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I realy have no idea , i have tested the css with custom settings for text to see if the links are correct but i did not test with pages and BGcolors.
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

Please read in the first posting the most asked questions.

viewtopic.php?t=22962&postdays=0&postorder=asc&start=0
when I click the Browse button in the window "edit / insert image" I get an error "HTTP Error 404 - File or directory not found",
The ajax file manager is not found,did you upload all files in binary?
Are all WB pages and the cms ( folder jscripts etc ) in the root directorie?
My customers could upload their pictures directly from their computers?
Yes, images, movies, flash, files etc.
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

The images what you upload with the ajax filemanager are in de folder 'uploaded -->images' I see you have used a folder 'News' where you inserted the folder 'jscripts' but all files and folders must in the root directorie,that`s why you get the 404 error.

You can change manual the path to the ajax filemanager in login.php

Code: Select all

function ajaxfilemanager(field_name, url, type, win) {
			var ajaxfilemanagerurl = "../../../../jscripts/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php";
			switch (type) {
				case "image":
					break;
				case "media":
					break;
				case "flash": 
					break;
				case "file":
					break;
				default:
					return false;
			}
            tinyMCE.activeEditor.windowManager.open({
                url: "../../../../jscripts/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php",

its easyer to upload the webbuilder pages and the cms in the root directorie and not into a folder ( News).
genieuk
 
 
Posts: 129
Joined: Fri Mar 06, 2009 2:10 am

Post by genieuk »

Hi Eddy,

I use TinyMCE on my admin section of my site.

Can you tell me how you made the line height normal?

Everytime i hit enter to go on a new line the TinyMCE Editor puts it in a new paragraph meaning i have like double lineheight between new lines?

Did you edit to use the <br /> instead of <p></p> tags?

If you don't mind telling me as it driving me crazy.

Thanks,
Mathew
genieuk
 
 
Posts: 129
Joined: Fri Mar 06, 2009 2:10 am

Post by genieuk »

NW Dave wrote:Mathew, don't know if it's relevant to your question, but in the HTML Edit box, you use 'Shift+ Enter' for carriage return with normal spacing between lines. Perhaps this editor works the same?
Thanks so much :) . I am using the same editor. I went through there Wiki and asked on there forums they said i needed to edit the CSS which i did but nothing changed.

That's solved. Thanks for replying with an answer.

Regards,
Mathew
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

Lett wrote:
Eddy wrote: You can change manual the path to the ajax filemanager in login.php
Ok, Now I can use the browse button. Thanks
.
its easyer to upload the webbuilder pages and the cms in the root directorie and not into a folder ( News) because its possible you have to change more file path`s to make it work.
I did build this to use in the root directorie,if you use it in a folder than its possible you need to change more links to find the files.
I have build on this more than three weeks to make these three scripts work together its not easy to change the extension to work in a folder.
However, in order to use this tool, the images must be first uploaded into the server.
No you dont have to upload images with ftp or whatever.
The ajax filemanager is inserted in the cms so that users can upload images, movies etc to the server.
If all files are in the root than a user can select upload file.

Image
Image
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

genieuk wrote:Hi Eddy,
Did you edit to use the <br /> instead of <p></p> tags?
If you don't mind telling me as it driving me crazy.
Thanks,Mathew

Look in the login.php,you see this code:

Code: Select all

force_br_newlines : true,
force_p_newlines : false,
genieuk
 
 
Posts: 129
Joined: Fri Mar 06, 2009 2:10 am

Post by genieuk »

Thanks eddy i know how to edit that.

I am not using the extension i asked as on my admin in my site (genieuk) i use TinyMCE and when i saw this extension i thought i would ask as new lines was being put in <p> tags.

Thanks,
Mathew
User avatar
Eddy
 
 
Posts: 473
Joined: Tue Nov 27, 2007 1:52 am
Location: Nederland.

Post by Eddy »

I know you not using the extension,you have to insert the code in your tinymce configuration settings to force br
genieuk
 
 
Posts: 129
Joined: Fri Mar 06, 2009 2:10 am

Post by genieuk »

Eddy wrote:I know you not using the extension,you have to insert the code in your tinymce configuration settings to force br
Yep i know lol. Thanks. It funny all the time i took looking at the Wiki and when you posted i found it on the Wiki. My eyes must be getting bad, i was looking for past several days.

Thanks
Mathew
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

b4rtjuh wrote:hee eddy,

sorry voor mijn nederlands maar hij wil niet werken hij geeft dit weer

groetjes bart
Kindly stick to English in the English section, so we can also understand the issue and its solution- please :?
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

eggman08.2008 wrote:I have tried again and again.

I cannot get them folders to upload

please help
Did you try uploading the zipped folder?
Simply zip the jscript folder using winzip....now upload the jscript.zip to the server...once uploaded, unzip the folder there on the server itself thats all. You needn't do nothing else.
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
User avatar
me.prosenjeet
 
 
Posts: 1265
Joined: Mon Dec 24, 2007 1:50 pm
Location: Lucknow
Contact:

Post by me.prosenjeet »

Eddy wrote:the ajax uploader did work.
It still isn't working for me on a site I am working on :( no complaints though, this is a great extension!
Check the new Chat GPT and Malware detect extensions at the link below

Check my WB Extensions
Check my WB Templates
---------------------------------------------------------
www.Lucknowwebs.com
Post Reply